The AGI Jobs v0 (v2) platform you are piloting is the superintelligent machine already fielding our labour lattice. This one-pager keeps non-technical operators on the happy path: open the project, trigger the Day-One Utility demo, verify the ✅ verdict, and review the cinematic evidence.
Codespaces (recommended)
- Visit https://github.com/MontrealAI/AGIJobsv0.
- Select Code → Codespaces → Create codespace on main.
- Allow the environment to initialise (Python 3.10+, Node.js, Make, and Git arrive preinstalled).
Local clone (optional)
git clone https://github.com/MontrealAI/AGIJobsv0
cd AGIJobsv0Ensure Python 3.10+ is on your PATH. The green path command installs the remaining Python dependencies automatically.
From the repository root run:
make operator:greenThe root Makefile wires this target directly into the Day-One Utility demo (demo/AGIJobs-Day-One-Utility-Benchmark/):
- Upgrades
pipand installsrequirements.txtfor the demo (fallback:pyyaml+matplotlib). - Executes
python3 run_demo.py; on any non-zero exit it retries withpython3 run_demo.py simulate --strategy e2e. - Writes artefacts into
demo/AGIJobs-Day-One-Utility-Benchmark/out/:report_<strategy>.json— canonical telemetry and guardrail verdicts.dashboard_<strategy>.html— mermaid-driven hyperdashboard.snapshot_<strategy>.png— Baseline vs Candidate chart (rendered when Matplotlib is available).owner_controls_snapshot.json— live sovereign control snapshot.
- Invokes
tools/operator_banner.py out, which parses the freshest JSON and prints✅ Day-One Utility +X.XX%(falls back to✅ Day-One run completeif uplift cannot be derived). - Echoes absolute paths to the newest snapshot (PNG preferred, HTML fallback) and latest JSON artefact so you can open them immediately.
Typical terminal result:
✅ Day-One Utility +10.94%
Snapshot: /workspaces/AGIJobsv0/demo/AGIJobs-Day-One-Utility-Benchmark/out/snapshot_e2e.png
Telemetry: /workspaces/AGIJobsv0/demo/AGIJobs-Day-One-Utility-Benchmark/out/report_e2e.json
(The telemetry line always prints the most recent JSON — either the strategy report or the owner snapshot. Both live beside each other in out/.)
- Banner — The terminal banner must begin with
✅ Day-One Utility. The default guardrail requires at least +5.00% uplift, enforced bydemo/AGIJobs-Day-One-Utility-Benchmark/config/rules.yaml. - Snapshot — Open the surfaced
snapshot_*.png. Review Baseline vs Candidate acceptance, cost, latency, and treasury deltas. If no PNG is available the Make target prints the HTML dashboard path instead — open it for the same narrative. - Telemetry JSON — Inspect the latest
report_e2e.json(or the JSON path surfaced in step 1):guardrail_pass.utility_uplift,guardrail_pass.latency_delta, andguardrail_pass.reliability_scoreshould all betrue.metrics.candidate.utilitymust exceedmetrics.baseline.utility;metrics.utility_upliftexpresses the same delta.owner_controls.latency_threshold_activeandowner_controls.utility_threshold_activeconfirm the live guardrail values. Archive this JSON alongsideowner_controls_snapshot.jsonfor compliance.
- Artefact location — All generated files live under
demo/AGIJobs-Day-One-Utility-Benchmark/out/. Subsequent runs overwrite or append with fresh timestamps — the Make target always reports the latest files so you never hunt manually.
- Run
make operator:green. - Read the uplift banner and skim the surfaced JSON for
guardrail_passverdicts plus treasury metrics (metrics.candidate.treasury_bonus,metrics.owner_treasury). - Open the snapshot (PNG or HTML) to validate the Baseline vs Candidate story.
- When uplift and guardrails are green, capture the snapshot,
report_*.json, andowner_controls_snapshot.jsonin your decision log. - (Optional) Tune sovereign controls between runs without touching code:
Every command validates input types and addresses before saving, keeping the pipeline safe for non-technical operators.
cd demo/AGIJobs-Day-One-Utility-Benchmark make owner-show make owner-set KEY=platform_fee_bps VALUE=220 make owner-set KEY=utility_threshold_override_bps VALUE=900 make owner-toggle # Pause or resume instantly make owner-reset # Restore defaults from owner_controls.defaults.yaml
Stay in demo/AGIJobs-Day-One-Utility-Benchmark/ to compare other sovereign launch profiles that reuse the same dataset, guardrails, and renderer:
make alphaevolve
make hgm
make trm
make omniGenerate the full scoreboard briefing whenever you need a multi-strategy comparison:
make scoreboard
# or
python3 run_demo.py scoreboardThis produces out/scoreboard.json plus a mermaid-rich executive dashboard at out/scoreboard.html, highlighting leaders in utility uplift, latency, treasury impact, reliability, and guardrail status. Consult demo/AGIJobs-Day-One-Utility-Benchmark/README.md for deeper storyline context and advanced CLI usage.
| Symptom | Action |
|---|---|
python3: command not found |
Install Python 3.10+ locally or relaunch in Codespaces where it ships ready to use. |
| Pip install warnings | Re-run make operator:green; dependency installation is idempotent and recreates out/ automatically. |
Banner prints ✅ Day-One run complete |
Open the surfaced JSON and confirm it contains metrics.utility_uplift; share the artefact with engineering if uplift is missing. |
| No PNG snapshot reported | The HTML dashboard path is printed instead — open it in a browser and export a screenshot if stakeholders need imagery. |
| Demo reports "paused" | Run cd demo/AGIJobs-Day-One-Utility-Benchmark && make owner-toggle to resume, or make owner-reset to restore the sovereign defaults. |
| ENS attestation compromise detected | Freeze delegated access: npx hardhat --network <network> console → const att = await ethers.getContractAt('AttestationRegistry', '<address>'); await att.pause();. After rotation/remediation, run await att.unpause(); to restore attestations. |
| Path | Purpose |
|---|---|
Makefile (repo root) |
Hosts the production-ready operator:green orchestration target. |
tools/operator_banner.py |
Parses the newest out/*.json and prints the ✅ uplift banner. |
demo/AGIJobs-Day-One-Utility-Benchmark/run_demo.py |
CLI entrypoint into the Day-One Utility orchestrator. |
demo/AGIJobs-Day-One-Utility-Benchmark/demo_runner.py |
Simulation engine: strategy logic, guardrail enforcement, dashboards, snapshots, scoreboard. |
demo/AGIJobs-Day-One-Utility-Benchmark/config/ |
Microset dataset, strategy profiles, guardrail rules, and owner control snapshots. |
demo/AGIJobs-Day-One-Utility-Benchmark/out/ |
Latest JSON telemetry, dashboards, chart snapshots, and scoreboard exports. |
demo/AGIJobs-Day-One-Utility-Benchmark/tests/ |
Pytest suite covering guardrails, pausing, artefact creation, and owner control safety. |
docs/non-technical-deployment-guide.md |
Step-by-step playbook for launching, monitoring, and rolling back the production stack without touching code. |
Stay on this cadence and every operator will verify Day-One Utility uplift, capture the artefacts, and steer AGI Jobs v0 (v2) with production-grade confidence.