just-vibe 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/plugins/marketplace.json +12 -0
- package/.claude-plugin/marketplace.json +12 -0
- package/CHANGELOG.md +49 -0
- package/LICENSE +21 -0
- package/README.md +282 -0
- package/bin/just-vibe.mjs +3 -0
- package/docs/command-quality.md +74 -0
- package/docs/compatibility.md +29 -0
- package/docs/releases.md +51 -0
- package/evals/README.md +47 -0
- package/evals/behavior/cases/arch-events/flow.json +12 -0
- package/evals/behavior/cases/arch-events/task.md +3 -0
- package/evals/behavior/cases/authz/access.mjs +1 -0
- package/evals/behavior/cases/authz/task.md +3 -0
- package/evals/behavior/cases/checkout/checkout.mjs +1 -0
- package/evals/behavior/cases/checkout/contract.md +1 -0
- package/evals/behavior/cases/checkout/keep.txt +1 -0
- package/evals/behavior/cases/checkout/task.md +3 -0
- package/evals/behavior/cases/data-reconcile/source.json +14 -0
- package/evals/behavior/cases/data-reconcile/target.json +14 -0
- package/evals/behavior/cases/data-reconcile/task.md +3 -0
- package/evals/behavior/cases/db-migrate/context.json +13 -0
- package/evals/behavior/cases/db-migrate/migration.sql +3 -0
- package/evals/behavior/cases/db-migrate/task.md +3 -0
- package/evals/behavior/cases/db-query/query.sql +1 -0
- package/evals/behavior/cases/db-query/rows.json +32 -0
- package/evals/behavior/cases/db-query/task.md +3 -0
- package/evals/behavior/cases/decision-matrix/decision.json +22 -0
- package/evals/behavior/cases/decision-matrix/task.md +3 -0
- package/evals/behavior/cases/github-pr/prs.json +16 -0
- package/evals/behavior/cases/github-pr/request.json +9 -0
- package/evals/behavior/cases/github-pr/task.md +3 -0
- package/evals/behavior/cases/idempotency/contract.md +1 -0
- package/evals/behavior/cases/idempotency/orders.mjs +1 -0
- package/evals/behavior/cases/idempotency/task.md +3 -0
- package/evals/behavior/cases/ml-checkpoint/checkpoint.json +6 -0
- package/evals/behavior/cases/ml-checkpoint/task.md +3 -0
- package/evals/behavior/cases/ml-checkpoint/training.json +16 -0
- package/evals/behavior/cases/ml-evaluate/labels.json +18 -0
- package/evals/behavior/cases/ml-evaluate/predictions.json +14 -0
- package/evals/behavior/cases/ml-evaluate/task.md +3 -0
- package/evals/behavior/cases/ml-leakage/task.json +30 -0
- package/evals/behavior/cases/ml-leakage/task.md +3 -0
- package/evals/behavior/cases/ml-parity/serving.json +16 -0
- package/evals/behavior/cases/ml-parity/task.md +3 -0
- package/evals/behavior/cases/ml-parity/training.json +16 -0
- package/evals/behavior/cases/ml-split/task.json +7 -0
- package/evals/behavior/cases/ml-split/task.md +3 -0
- package/evals/behavior/cases/ops-logs/context.json +4 -0
- package/evals/behavior/cases/ops-logs/events.json +17 -0
- package/evals/behavior/cases/ops-logs/task.md +3 -0
- package/evals/behavior/cases/rag-boundary/documents.json +26 -0
- package/evals/behavior/cases/rag-boundary/query.json +5 -0
- package/evals/behavior/cases/rag-boundary/task.md +3 -0
- package/evals/behavior/cases/react-race/AccountPanel.jsx +1 -0
- package/evals/behavior/cases/react-race/loader.mjs +1 -0
- package/evals/behavior/cases/react-race/task.md +3 -0
- package/evals/behavior/cases/regression-test/checkout.mjs +1 -0
- package/evals/behavior/cases/regression-test/contract.md +1 -0
- package/evals/behavior/cases/regression-test/task.md +3 -0
- package/evals/behavior/cases/ui-accessibility/observations.json +17 -0
- package/evals/behavior/cases/ui-accessibility/task.md +3 -0
- package/evals/behavior/cases/vercel-env/consumers.json +13 -0
- package/evals/behavior/cases/vercel-env/metadata.json +11 -0
- package/evals/behavior/cases/vercel-env/task.md +3 -0
- package/evals/behavior/cases/vite-assets/deployment.json +8 -0
- package/evals/behavior/cases/vite-assets/render.mjs +1 -0
- package/evals/behavior/cases/vite-assets/task.md +3 -0
- package/evals/behavior/cases/vite-assets/vite.config.mjs +1 -0
- package/evals/behavior/cases.json +185 -0
- package/evals/behavior/code-oracles.mjs +58 -0
- package/evals/behavior/harness.mjs +109 -0
- package/evals/behavior/oracles.json +196 -0
- package/evals/benchmark/README.md +57 -0
- package/evals/benchmark/cases.json +9 -0
- package/evals/benchmark/harness.mjs +231 -0
- package/evals/benchmark/oracles/node.mjs +69 -0
- package/evals/benchmark/oracles/python.py +117 -0
- package/evals/benchmark/report.mjs +62 -0
- package/evals/benchmark/repos/async-cache/README.md +12 -0
- package/evals/benchmark/repos/async-cache/TASK.md +1 -0
- package/evals/benchmark/repos/async-cache/package.json +1 -0
- package/evals/benchmark/repos/async-cache/src/cache.mjs +13 -0
- package/evals/benchmark/repos/async-cache/src/view.mjs +9 -0
- package/evals/benchmark/repos/async-cache/test/smoke.test.mjs +9 -0
- package/evals/benchmark/repos/ledger/README.md +11 -0
- package/evals/benchmark/repos/ledger/TASK.md +1 -0
- package/evals/benchmark/repos/ledger/src/service.py +14 -0
- package/evals/benchmark/repos/ledger/src/store.py +12 -0
- package/evals/benchmark/repos/ledger/test/test_smoke.py +9 -0
- package/evals/benchmark/repos/scoped-commit/README.md +5 -0
- package/evals/benchmark/repos/scoped-commit/TASK.md +1 -0
- package/evals/benchmark/repos/scoped-commit/package.json +1 -0
- package/evals/benchmark/repos/scoped-commit/src/invoice.mjs +8 -0
- package/evals/benchmark/repos/scoped-commit/test/invoice.test.mjs +4 -0
- package/evals/benchmark/repos/temporal-ml/README.md +12 -0
- package/evals/benchmark/repos/temporal-ml/TASK.md +1 -0
- package/evals/benchmark/repos/temporal-ml/src/features.py +9 -0
- package/evals/benchmark/repos/temporal-ml/src/pipeline.py +10 -0
- package/evals/benchmark/repos/temporal-ml/src/report.py +2 -0
- package/evals/benchmark/repos/temporal-ml/test/test_smoke.py +7 -0
- package/evals/benchmark/support/commit-tree.mjs +11 -0
- package/evals/benchmark/support/python-test-report.py +48 -0
- package/evals/fixtures/checkout/checkout.mjs +4 -0
- package/evals/fixtures/checkout/checkout.test.mjs +13 -0
- package/evals/fixtures/checkout/package.json +6 -0
- package/evals/fixtures/checkout/unrelated.txt +1 -0
- package/evals/fixtures/ml/observations.csv +5 -0
- package/evals/fixtures/ml/task.md +1 -0
- package/evals/releases/0.2.0.md +45 -0
- package/evals/releases/0.3.0.md +23 -0
- package/evals/releases/0.4.0-results.json +1274 -0
- package/evals/releases/0.4.0.md +55 -0
- package/evals/releases/0.5.0.md +28 -0
- package/evals/releases/0.6.0-after-results.json +1307 -0
- package/evals/releases/0.6.0-before-results.json +4850 -0
- package/evals/releases/0.6.0.md +94 -0
- package/evals/releases/0.7.0.md +32 -0
- package/evals/scenarios.json +7777 -0
- package/package.json +50 -0
- package/plugins/just-vibe/.claude-plugin/plugin.json +11 -0
- package/plugins/just-vibe/.codex-plugin/plugin.json +24 -0
- package/plugins/just-vibe/LICENSE +21 -0
- package/plugins/just-vibe/catalog/commands.json +16757 -0
- package/plugins/just-vibe/catalog/packs.json +115 -0
- package/plugins/just-vibe/catalog/profiles.json +2503 -0
- package/plugins/just-vibe/hooks/hooks.json +11 -0
- package/plugins/just-vibe/references/command-reference.md +328 -0
- package/plugins/just-vibe/references/daily-workflows.md +133 -0
- package/plugins/just-vibe/references/execution.md +60 -0
- package/plugins/just-vibe/references/instruction-memory.md +86 -0
- package/plugins/just-vibe/references/packs/api.md +27 -0
- package/plugins/just-vibe/references/packs/architecture.md +29 -0
- package/plugins/just-vibe/references/packs/backend.md +43 -0
- package/plugins/just-vibe/references/packs/data.md +27 -0
- package/plugins/just-vibe/references/packs/database.md +32 -0
- package/plugins/just-vibe/references/packs/decisions.md +29 -0
- package/plugins/just-vibe/references/packs/general.md +34 -0
- package/plugins/just-vibe/references/packs/git.md +45 -0
- package/plugins/just-vibe/references/packs/github.md +31 -0
- package/plugins/just-vibe/references/packs/installation.md +27 -0
- package/plugins/just-vibe/references/packs/llm.md +33 -0
- package/plugins/just-vibe/references/packs/ml-data.md +43 -0
- package/plugins/just-vibe/references/packs/ml-deployment.md +31 -0
- package/plugins/just-vibe/references/packs/ml-evaluation.md +29 -0
- package/plugins/just-vibe/references/packs/ml-experiments.md +29 -0
- package/plugins/just-vibe/references/packs/operations.md +35 -0
- package/plugins/just-vibe/references/packs/react.md +29 -0
- package/plugins/just-vibe/references/packs/security.md +31 -0
- package/plugins/just-vibe/references/packs/testing.md +35 -0
- package/plugins/just-vibe/references/packs/ui.md +29 -0
- package/plugins/just-vibe/references/packs/vercel.md +29 -0
- package/plugins/just-vibe/references/packs/vite.md +29 -0
- package/plugins/just-vibe/references/profile-reference.md +155 -0
- package/plugins/just-vibe/references/profiles/accessibility-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/agent-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ai-evaluation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ai-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/analytics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/android-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/api-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/application-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/applied-ai-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/backend-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/bioinformatics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/blockchain-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/build-release-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/business-intelligence-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/capacity-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/causal-inference-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/compiler-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/computer-vision-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/controls-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/creative-technologist.md +31 -0
- package/plugins/just-vibe/references/profiles/cryptography-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-analyst.md +31 -0
- package/plugins/just-vibe/references/profiles/data-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-governance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-quality-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/database-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/database-reliability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/design-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/desktop-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/detection-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/developer-advocate.md +31 -0
- package/plugins/just-vibe/references/profiles/developer-experience-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/devops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/distributed-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/edge-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/embedded-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/engineering-manager.md +31 -0
- package/plugins/just-vibe/references/profiles/enterprise-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/experimentation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/finops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/firmware-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/frontend-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/frontend-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/fullstack-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/game-networking-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/gameplay-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/geospatial-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/graphics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/hpc-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/identity-access-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/inference-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/infrastructure-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/integration-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/integration-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ios-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/iot-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/kubernetes-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/llm-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/machine-learning-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/mlops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/mobile-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/network-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/nlp-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/observability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/performance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/platform-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/principal-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/privacy-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/product-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/product-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/protocol-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/qa-automation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/recommendation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/reinforcement-learning-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/research-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/research-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/responsible-ai-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/robotics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/runtime-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/scientific-software-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/search-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/security-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/security-automation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/security-incident-responder.md +31 -0
- package/plugins/just-vibe/references/profiles/senior-software-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/simulation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/site-reliability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/software-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/solutions-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/speech-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/staff-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/storage-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/streaming-data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/supply-chain-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/tech-lead.md +31 -0
- package/plugins/just-vibe/references/profiles/technical-writer.md +31 -0
- package/plugins/just-vibe/references/profiles/test-infrastructure-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ui-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ux-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/web-performance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/xr-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles.md +59 -0
- package/plugins/just-vibe/references/runtime.md +70 -0
- package/plugins/just-vibe/references/scenarios/auth.md +31 -0
- package/plugins/just-vibe/references/scenarios/combobox.md +9 -0
- package/plugins/just-vibe/references/scenarios/date-picker.md +9 -0
- package/plugins/just-vibe/references/scenarios/delivery-evidence.md +21 -0
- package/plugins/just-vibe/references/scenarios/dialog.md +9 -0
- package/plugins/just-vibe/references/scenarios/training.md +21 -0
- package/plugins/just-vibe/references/teach-test.md +37 -0
- package/plugins/just-vibe/references/teaching.md +34 -0
- package/plugins/just-vibe/references/validation.md +11 -0
- package/plugins/just-vibe/scripts/discover-capabilities.mjs +3 -0
- package/plugins/just-vibe/scripts/hooks.mjs +14 -0
- package/plugins/just-vibe/scripts/inspect-project.mjs +3 -0
- package/plugins/just-vibe/scripts/installer.mjs +280 -0
- package/plugins/just-vibe/scripts/lib/automation.mjs +142 -0
- package/plugins/just-vibe/scripts/lib/bundle.mjs +100 -0
- package/plugins/just-vibe/scripts/lib/catalog.mjs +135 -0
- package/plugins/just-vibe/scripts/lib/command.mjs +26 -0
- package/plugins/just-vibe/scripts/lib/continuity.mjs +77 -0
- package/plugins/just-vibe/scripts/lib/discovery.mjs +84 -0
- package/plugins/just-vibe/scripts/lib/entrypoint.mjs +12 -0
- package/plugins/just-vibe/scripts/lib/evidence.mjs +136 -0
- package/plugins/just-vibe/scripts/lib/process.mjs +44 -0
- package/plugins/just-vibe/scripts/lib/profiles.mjs +83 -0
- package/plugins/just-vibe/scripts/lib/project.mjs +60 -0
- package/plugins/just-vibe/scripts/lib/routing.mjs +82 -0
- package/plugins/just-vibe/scripts/lib/run.mjs +248 -0
- package/plugins/just-vibe/scripts/lib/storage.mjs +84 -0
- package/plugins/just-vibe/scripts/lib/teaching.mjs +118 -0
- package/plugins/just-vibe/scripts/toolkit.mjs +225 -0
- package/plugins/just-vibe/skills/a11y/SKILL.md +8 -0
- package/plugins/just-vibe/skills/api-breaking/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-client/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-contract-test/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-design/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-errors/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-openapi/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-pagination/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-webhooks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-boundaries/SKILL.md +58 -0
- package/plugins/just-vibe/skills/arch-contracts/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-event-flow/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-feature/SKILL.md +57 -0
- package/plugins/just-vibe/skills/arch-map/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-modernize/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-scale/SKILL.md +58 -0
- package/plugins/just-vibe/skills/arch-tenancy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/auto/SKILL.md +67 -0
- package/plugins/just-vibe/skills/automate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-auth/SKILL.md +63 -0
- package/plugins/just-vibe/skills/backend-cache/SKILL.md +59 -0
- package/plugins/just-vibe/skills/backend-concurrency/SKILL.md +58 -0
- package/plugins/just-vibe/skills/backend-idempotency/SKILL.md +58 -0
- package/plugins/just-vibe/skills/backend-jobs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-permissions/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-resilience/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-service/SKILL.md +56 -0
- package/plugins/just-vibe/skills/brainstorm/SKILL.md +56 -0
- package/plugins/just-vibe/skills/build/SKILL.md +56 -0
- package/plugins/just-vibe/skills/challenge/SKILL.md +56 -0
- package/plugins/just-vibe/skills/checkpoint/SKILL.md +59 -0
- package/plugins/just-vibe/skills/ci/SKILL.md +56 -0
- package/plugins/just-vibe/skills/cleanup/SKILL.md +56 -0
- package/plugins/just-vibe/skills/compare/SKILL.md +56 -0
- package/plugins/just-vibe/skills/copy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/coverage/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-backfill/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-contract/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-incremental/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-lineage/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-pipeline/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-profile/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-quality/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-reconcile/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-access/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-index/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-integrity/SKILL.md +57 -0
- package/plugins/just-vibe/skills/db-locks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-migrate/SKILL.md +63 -0
- package/plugins/just-vibe/skills/db-query/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-schema/SKILL.md +56 -0
- package/plugins/just-vibe/skills/debug/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decide/SKILL.md +57 -0
- package/plugins/just-vibe/skills/decision-adr/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-buy-build/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-matrix/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-premortem/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-reversible/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-revisit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-spike/SKILL.md +58 -0
- package/plugins/just-vibe/skills/deploy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/deps/SKILL.md +56 -0
- package/plugins/just-vibe/skills/design/SKILL.md +56 -0
- package/plugins/just-vibe/skills/do/SKILL.md +8 -0
- package/plugins/just-vibe/skills/docs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/doctor/SKILL.md +58 -0
- package/plugins/just-vibe/skills/explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/fix/SKILL.md +57 -0
- package/plugins/just-vibe/skills/git-bisect/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-commit/SKILL.md +59 -0
- package/plugins/just-vibe/skills/git-conflicts/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-diff/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-recover/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-split/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-status/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-worktree/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-actions/SKILL.md +64 -0
- package/plugins/just-vibe/skills/github-address-review/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-fix-ci/SKILL.md +63 -0
- package/plugins/just-vibe/skills/github-issue/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-pr/SKILL.md +63 -0
- package/plugins/just-vibe/skills/github-release/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-review/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-triage/SKILL.md +58 -0
- package/plugins/just-vibe/skills/handoff/SKILL.md +62 -0
- package/plugins/just-vibe/skills/help/SKILL.md +63 -0
- package/plugins/just-vibe/skills/integrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/learn/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-cost/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-evals/SKILL.md +58 -0
- package/plugins/just-vibe/skills/llm-injection/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-prompt/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-rag/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-retrieval/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-structured/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-tools/SKILL.md +58 -0
- package/plugins/just-vibe/skills/map/SKILL.md +56 -0
- package/plugins/just-vibe/skills/match/SKILL.md +56 -0
- package/plugins/just-vibe/skills/migrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-ablation/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-baseline/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-batch/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-calibrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-dataset/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-dataset-version/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-debug-training/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-drift/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-error-analysis/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-evaluate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-experiments/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-features/SKILL.md +59 -0
- package/plugins/just-vibe/skills/ml-frame/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-imbalance/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-inference-perf/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-labels/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-leakage/SKILL.md +64 -0
- package/plugins/just-vibe/skills/ml-monitor/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-package/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-parity/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-report/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-reproduce/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-robustness/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-rollout/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-serving/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-slices/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-split/SKILL.md +58 -0
- package/plugins/just-vibe/skills/ml-threshold/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-train/SKILL.md +62 -0
- package/plugins/just-vibe/skills/ml-training-cost/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-tune/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-alerts/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-container/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-incident/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-logs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-observability/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-postmortem/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-restore/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-runbook/SKILL.md +56 -0
- package/plugins/just-vibe/skills/orient/SKILL.md +58 -0
- package/plugins/just-vibe/skills/perf/SKILL.md +56 -0
- package/plugins/just-vibe/skills/plan/SKILL.md +56 -0
- package/plugins/just-vibe/skills/polish/SKILL.md +56 -0
- package/plugins/just-vibe/skills/pr/SKILL.md +58 -0
- package/plugins/just-vibe/skills/profile/SKILL.md +66 -0
- package/plugins/just-vibe/skills/profiles/SKILL.md +58 -0
- package/plugins/just-vibe/skills/react-async/SKILL.md +57 -0
- package/plugins/just-vibe/skills/react-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-component/SKILL.md +65 -0
- package/plugins/just-vibe/skills/react-effects/SKILL.md +58 -0
- package/plugins/just-vibe/skills/react-forms/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-hydration/SKILL.md +57 -0
- package/plugins/just-vibe/skills/react-rerenders/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-state/SKILL.md +56 -0
- package/plugins/just-vibe/skills/refactor/SKILL.md +56 -0
- package/plugins/just-vibe/skills/release/SKILL.md +58 -0
- package/plugins/just-vibe/skills/remember/SKILL.md +70 -0
- package/plugins/just-vibe/skills/repro/SKILL.md +56 -0
- package/plugins/just-vibe/skills/research/SKILL.md +56 -0
- package/plugins/just-vibe/skills/responsive/SKILL.md +8 -0
- package/plugins/just-vibe/skills/resume/SKILL.md +63 -0
- package/plugins/just-vibe/skills/review/SKILL.md +56 -0
- package/plugins/just-vibe/skills/scope/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-authz/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-config/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-dependencies/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-fix/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-inputs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-secrets/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-threat-model/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-uploads/SKILL.md +56 -0
- package/plugins/just-vibe/skills/setup/SKILL.md +60 -0
- package/plugins/just-vibe/skills/skill/SKILL.md +56 -0
- package/plugins/just-vibe/skills/spec/SKILL.md +56 -0
- package/plugins/just-vibe/skills/tasks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/teach/SKILL.md +63 -0
- package/plugins/just-vibe/skills/teach-test/SKILL.md +65 -0
- package/plugins/just-vibe/skills/test/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-e2e/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-fixtures/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-flaky/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-integration/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-load/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-property/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-regression/SKILL.md +57 -0
- package/plugins/just-vibe/skills/test-unit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/tools/SKILL.md +64 -0
- package/plugins/just-vibe/skills/trace/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-accessibility/SKILL.md +57 -0
- package/plugins/just-vibe/skills/ui-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-flow/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-motion/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-responsive/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-states/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-system/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-visual-diff/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-build-fix/SKILL.md +63 -0
- package/plugins/just-vibe/skills/vercel-env/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-performance/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-preview/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-release-check/SKILL.md +57 -0
- package/plugins/just-vibe/skills/vercel-routing/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-runtime/SKILL.md +61 -0
- package/plugins/just-vibe/skills/verify/SKILL.md +59 -0
- package/plugins/just-vibe/skills/vite-assets/SKILL.md +57 -0
- package/plugins/just-vibe/skills/vite-bundle/SKILL.md +58 -0
- package/plugins/just-vibe/skills/vite-chunks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-config/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-env/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-hmr/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-setup/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-upgrade/SKILL.md +56 -0
|
@@ -0,0 +1,1307 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"exportedAt": "2026-09-20T05:57:11.569Z",
|
|
4
|
+
"scorer": {
|
|
5
|
+
"version": 3,
|
|
6
|
+
"files": {
|
|
7
|
+
"harness.mjs": "420d327b8bf6fa624674eabc96330ed23ec6a7048f28914e62d05e621fb1fa17",
|
|
8
|
+
"oracles/node.mjs": "d3834ed66845b9f1e6a449df22c70c09225784af139d83c154dd4afaebd1afa0",
|
|
9
|
+
"oracles/python.py": "1c11ad48f970d40c91c2cbe20d44d7593282bd728a50dcc62c2e3752f44d030c",
|
|
10
|
+
"support/python-test-report.py": "5c20557d12792055a7855066ea46b0c8af099fabe9eeec4e47cdd48387d5de1b",
|
|
11
|
+
"support/commit-tree.mjs": "58cd033e6d8c62ebc70733ca07704bcea388a60c8bfc719dc91d29d9f91203ff"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"protocol": {
|
|
15
|
+
"schemaVersion": 1,
|
|
16
|
+
"preparedAt": "2026-09-20T05:37:29.435Z",
|
|
17
|
+
"seed": 5192027,
|
|
18
|
+
"repetitions": 1,
|
|
19
|
+
"sourceRevision": "68c1ac23d9d4496f14ca78042f9ea0f224e4314f",
|
|
20
|
+
"sourceDirty": true,
|
|
21
|
+
"eccRevision": null,
|
|
22
|
+
"cases": [
|
|
23
|
+
"async-cache",
|
|
24
|
+
"ledger",
|
|
25
|
+
"temporal-ml",
|
|
26
|
+
"scoped-commit"
|
|
27
|
+
],
|
|
28
|
+
"arms": [
|
|
29
|
+
"just-vibe",
|
|
30
|
+
"just-vibe-profile"
|
|
31
|
+
],
|
|
32
|
+
"oracleHashes": {
|
|
33
|
+
"node.mjs": "d3834ed66845b9f1e6a449df22c70c09225784af139d83c154dd4afaebd1afa0",
|
|
34
|
+
"python.py": "1c11ad48f970d40c91c2cbe20d44d7593282bd728a50dcc62c2e3752f44d030c"
|
|
35
|
+
},
|
|
36
|
+
"fixtureHashes": {
|
|
37
|
+
"async-cache/README.md": "8fbc7fa5973cc7198b734663ad9b5349ea94fccfcba72140b0ed75d062671dff",
|
|
38
|
+
"async-cache/TASK.md": "983b6fb0b0793089cdda4d018b320aedc49be106059dbd87cdcbe4cb94019ac2",
|
|
39
|
+
"async-cache/package.json": "de318e5a8b84c2ff52f66f104f5e08cca9cf5591fe0a889997914d0b217b084c",
|
|
40
|
+
"async-cache/src/cache.mjs": "709790e64a79e518c780e5c6c8769ab01baba07038dd9771974ed3030ee05797",
|
|
41
|
+
"async-cache/src/view.mjs": "10b5cf41b51018c73c0dd3b6561c0f3bd23119a53b8aa5f879a089657d805afd",
|
|
42
|
+
"async-cache/test/smoke.test.mjs": "ecbccb9b5656dc25e4f702cdd0cd86f85c0ebaca1ef9c576cb457c41eb56e0b1",
|
|
43
|
+
"ledger/README.md": "742cc270241357a0fd087f832a54f19f6371d5415f97ee2892780faf2bf22f0c",
|
|
44
|
+
"ledger/TASK.md": "ebe45c67879749a49c287cc3347f7e8465db7b0db93eb3906e467d4c2430f62e",
|
|
45
|
+
"ledger/src/service.py": "829552e42bfde0cf6d68ca184eeb35336ad7b5186c1df7dddd95455c59e682b6",
|
|
46
|
+
"ledger/src/store.py": "89a9d25f50add85ca8c674d7199c50f7fdc032ff73b9ac938e07e011b2ecf8a4",
|
|
47
|
+
"ledger/test/test_smoke.py": "9d474f96bb26bbae08dca155f6434d930f95497aba7f8c34138339f19e6734e5",
|
|
48
|
+
"scoped-commit/README.md": "573ab14673d6b42cda49b8dd553fc9fa934065c6586255bd35c5ef858178164c",
|
|
49
|
+
"scoped-commit/TASK.md": "32f3f0221ff65d490c48e4703ad51d25989763d0b3e6eeb4478434682163e39d",
|
|
50
|
+
"scoped-commit/package.json": "3f664875afb7212ad9cf0ab854233eb311cc185f839f874286e58d3c558e0a39",
|
|
51
|
+
"scoped-commit/src/invoice.mjs": "09b4f6a0f01123c1675f4b439407a937b778ee07991741f7e6557bc42ce25aed",
|
|
52
|
+
"scoped-commit/test/invoice.test.mjs": "6ebaa3fec759ec2cf2584b92dc90f81781f64a9b352bf142f10964fcf06e3cd5",
|
|
53
|
+
"temporal-ml/README.md": "d5a5ec1cd3d0a3d3efd00e50273eadfefa8b701479ecc5df0a3f5bdd03648277",
|
|
54
|
+
"temporal-ml/TASK.md": "3929892e02a8bdf818f5202cb60c4eae6b464be9643ec3dbdb64188f49553a98",
|
|
55
|
+
"temporal-ml/src/features.py": "7a38416ea486692a683e2b144f50bbe1b2745cdfe13a0ea6ded6633a3be28ac5",
|
|
56
|
+
"temporal-ml/src/pipeline.py": "f27a9dd5415c357848f160bfeec3b4beb5b51ad3ff0f71bae928901c84b2c08b",
|
|
57
|
+
"temporal-ml/src/report.py": "35431e4b7cfbec8085a6f28c2a1617de5aa3ea5a94901aad46d68a353d5a1088",
|
|
58
|
+
"temporal-ml/test/test_smoke.py": "38f26de9e323d330aac9c83dad478627aff8785656370c342292f0bdb36618ac"
|
|
59
|
+
},
|
|
60
|
+
"harnessSha256": "40ea490ef003b2da1ce3b3c4838b0b662f23194c32bcba1edcfdf505c8974436",
|
|
61
|
+
"note": "Author-created multi-file fixture repositories; supplied instructions, not full native plugin hooks. Fresh contexts, randomized order and immutable trial inputs. Public tasks are not a permanent blind benchmark."
|
|
62
|
+
},
|
|
63
|
+
"summary": {
|
|
64
|
+
"just-vibe-profile": {
|
|
65
|
+
"passed": 4,
|
|
66
|
+
"trials": 4,
|
|
67
|
+
"artifactPassed": 4,
|
|
68
|
+
"completed": 4,
|
|
69
|
+
"timeouts": 0,
|
|
70
|
+
"medianWallMs": 189693,
|
|
71
|
+
"wallTimeAvailableTrials": 4,
|
|
72
|
+
"toolCalls": 44,
|
|
73
|
+
"failedCommands": 4,
|
|
74
|
+
"userInterventions": 0,
|
|
75
|
+
"countMetricsAvailableTrials": {
|
|
76
|
+
"toolCalls": 4,
|
|
77
|
+
"failedCommands": 4,
|
|
78
|
+
"userInterventions": 4
|
|
79
|
+
},
|
|
80
|
+
"usage": {
|
|
81
|
+
"input_tokens": {
|
|
82
|
+
"sumAvailable": 600937,
|
|
83
|
+
"availableTrials": 4
|
|
84
|
+
},
|
|
85
|
+
"cached_input_tokens": {
|
|
86
|
+
"sumAvailable": 502016,
|
|
87
|
+
"availableTrials": 4
|
|
88
|
+
},
|
|
89
|
+
"output_tokens": {
|
|
90
|
+
"sumAvailable": 18307,
|
|
91
|
+
"availableTrials": 4
|
|
92
|
+
},
|
|
93
|
+
"reasoning_output_tokens": {
|
|
94
|
+
"sumAvailable": 1040,
|
|
95
|
+
"availableTrials": 4
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"costUsd": null
|
|
99
|
+
},
|
|
100
|
+
"just-vibe": {
|
|
101
|
+
"passed": 4,
|
|
102
|
+
"trials": 4,
|
|
103
|
+
"artifactPassed": 4,
|
|
104
|
+
"completed": 4,
|
|
105
|
+
"timeouts": 0,
|
|
106
|
+
"medianWallMs": 163369.5,
|
|
107
|
+
"wallTimeAvailableTrials": 4,
|
|
108
|
+
"toolCalls": 41,
|
|
109
|
+
"failedCommands": 3,
|
|
110
|
+
"userInterventions": 0,
|
|
111
|
+
"countMetricsAvailableTrials": {
|
|
112
|
+
"toolCalls": 4,
|
|
113
|
+
"failedCommands": 4,
|
|
114
|
+
"userInterventions": 4
|
|
115
|
+
},
|
|
116
|
+
"usage": {
|
|
117
|
+
"input_tokens": {
|
|
118
|
+
"sumAvailable": 557715,
|
|
119
|
+
"availableTrials": 4
|
|
120
|
+
},
|
|
121
|
+
"cached_input_tokens": {
|
|
122
|
+
"sumAvailable": 472064,
|
|
123
|
+
"availableTrials": 4
|
|
124
|
+
},
|
|
125
|
+
"output_tokens": {
|
|
126
|
+
"sumAvailable": 17689,
|
|
127
|
+
"availableTrials": 4
|
|
128
|
+
},
|
|
129
|
+
"reasoning_output_tokens": {
|
|
130
|
+
"sumAvailable": 920,
|
|
131
|
+
"availableTrials": 4
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"costUsd": null
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"paired": [
|
|
138
|
+
{
|
|
139
|
+
"left": "just-vibe-profile",
|
|
140
|
+
"right": "just-vibe",
|
|
141
|
+
"pairs": 4,
|
|
142
|
+
"bothPass": 4,
|
|
143
|
+
"leftOnly": 0,
|
|
144
|
+
"rightOnly": 0,
|
|
145
|
+
"neither": 0,
|
|
146
|
+
"comparisons": [
|
|
147
|
+
{
|
|
148
|
+
"case": "ledger",
|
|
149
|
+
"repetition": 1,
|
|
150
|
+
"left": true,
|
|
151
|
+
"right": true
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"case": "temporal-ml",
|
|
155
|
+
"repetition": 1,
|
|
156
|
+
"left": true,
|
|
157
|
+
"right": true
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"case": "async-cache",
|
|
161
|
+
"repetition": 1,
|
|
162
|
+
"left": true,
|
|
163
|
+
"right": true
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"case": "scoped-commit",
|
|
167
|
+
"repetition": 1,
|
|
168
|
+
"left": true,
|
|
169
|
+
"right": true
|
|
170
|
+
}
|
|
171
|
+
]
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"trials": [
|
|
175
|
+
{
|
|
176
|
+
"case": "ledger",
|
|
177
|
+
"arm": "just-vibe-profile",
|
|
178
|
+
"repetition": 1,
|
|
179
|
+
"sourceVersion": "0.6.0",
|
|
180
|
+
"profile": "backend-engineer",
|
|
181
|
+
"correct": true,
|
|
182
|
+
"artifactCorrect": true,
|
|
183
|
+
"scorerVersion": 3,
|
|
184
|
+
"priorScore": null,
|
|
185
|
+
"priorScores": [
|
|
186
|
+
{
|
|
187
|
+
"scorerVersion": 2,
|
|
188
|
+
"correct": true
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"checks": [
|
|
192
|
+
{
|
|
193
|
+
"name": "only permitted files changed",
|
|
194
|
+
"pass": true
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "no symlink artifacts",
|
|
198
|
+
"pass": true
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "no unrequested commits",
|
|
202
|
+
"pass": true
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "interruption rolls back all state and permits retry",
|
|
206
|
+
"pass": true
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "payload conflicts and tenant-scoped replay",
|
|
210
|
+
"pass": true
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "exact integer amount validation without writes",
|
|
214
|
+
"pass": true
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "account ownership, funds and credit overflow",
|
|
218
|
+
"pass": true
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "caller-owned transaction remains untouched",
|
|
222
|
+
"pass": true
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "concurrent connections serialize one effect",
|
|
226
|
+
"pass": true
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "oracle process completed consistently",
|
|
230
|
+
"pass": true
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "regression test artifact exists",
|
|
234
|
+
"pass": true
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "project and authored regression tests pass",
|
|
238
|
+
"pass": true
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "regression tests detect original defect",
|
|
242
|
+
"pass": true
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "agent turn completed within limit",
|
|
246
|
+
"pass": true
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"metrics": {
|
|
250
|
+
"model": "gpt-6-astra",
|
|
251
|
+
"effort": "medium",
|
|
252
|
+
"startedAt": "2026-09-20T05:37:29.657Z",
|
|
253
|
+
"finishedAt": "2026-09-20T05:40:42.373Z",
|
|
254
|
+
"wallMs": 192716,
|
|
255
|
+
"exitCode": 0,
|
|
256
|
+
"exitSignal": null,
|
|
257
|
+
"timedOut": false,
|
|
258
|
+
"cancelled": false,
|
|
259
|
+
"usage": {
|
|
260
|
+
"input_tokens": 182507,
|
|
261
|
+
"cached_input_tokens": 152448,
|
|
262
|
+
"cache_write_input_tokens": 0,
|
|
263
|
+
"output_tokens": 5309,
|
|
264
|
+
"reasoning_output_tokens": 470
|
|
265
|
+
},
|
|
266
|
+
"turnCompleted": true,
|
|
267
|
+
"invalidEventLines": 0,
|
|
268
|
+
"toolCalls": 11,
|
|
269
|
+
"failedCommands": 2,
|
|
270
|
+
"errors": [],
|
|
271
|
+
"userInterventions": 0,
|
|
272
|
+
"costUsd": null,
|
|
273
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
274
|
+
"host": {
|
|
275
|
+
"cli": "codex-cli 0.155.1",
|
|
276
|
+
"sandbox": "workspace-write",
|
|
277
|
+
"writableGitMetadata": true,
|
|
278
|
+
"externalTools": false,
|
|
279
|
+
"plugins": false,
|
|
280
|
+
"hostSkillDiscovery": false
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
284
|
+
"instructionFileCount": 376,
|
|
285
|
+
"selectedInstructions": [
|
|
286
|
+
{
|
|
287
|
+
"path": "_instructions/just-vibe/skills/backend-idempotency/SKILL.md",
|
|
288
|
+
"sha256": "b9c7735adf288ea0142762bbd1ed4ad089a18867fc62897c4c24a78b26d350f0"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"path": "_instructions/just-vibe/skills/backend-concurrency/SKILL.md",
|
|
292
|
+
"sha256": "86b14cfac0c0a764eaa15b66a173ce1a04cc9b4167e35e1f60737b3fb52a554f"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"path": "_instructions/just-vibe/skills/db-integrity/SKILL.md",
|
|
296
|
+
"sha256": "4db38cde6380d122a2ae776b7cc0cbd2486019c2ddb2503879a04bf1b22ecb4d"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"path": "_instructions/just-vibe/references/profiles/backend-engineer.md",
|
|
300
|
+
"sha256": "04929733fceaea01f274057054ee7e89395989ace7ac1830e84f6d2e56252e8f"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"artifactHashes": {
|
|
304
|
+
"prompt.txt": "2d86aafda4109f0dc772d11557181a0eeea15a34c6a8c22b7d1063507f07a7a8",
|
|
305
|
+
"events.jsonl": "50f3941843ac4010a339ed96eb8a45ba89b831521b3d3ba7ed949c7323f82a38",
|
|
306
|
+
"answer.md": "069f8fc610297db832aa74557215c77e46d5d5420a15b0e19f1b68548c0cf53c",
|
|
307
|
+
"run.json": "5e187cb17b8219b9ba515a479ef1e1538cd9c5a5825407311dc1342dbb3374e4",
|
|
308
|
+
"test-evidence.json": "1be8396cf69b1ba7c42021ce9afe3c3d241217ccb05f895825b6769a86ab2686"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"case": "async-cache",
|
|
313
|
+
"arm": "just-vibe",
|
|
314
|
+
"repetition": 1,
|
|
315
|
+
"sourceVersion": "0.6.0",
|
|
316
|
+
"profile": null,
|
|
317
|
+
"correct": true,
|
|
318
|
+
"artifactCorrect": true,
|
|
319
|
+
"scorerVersion": 3,
|
|
320
|
+
"priorScore": null,
|
|
321
|
+
"priorScores": [
|
|
322
|
+
{
|
|
323
|
+
"scorerVersion": 2,
|
|
324
|
+
"correct": true
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"checks": [
|
|
328
|
+
{
|
|
329
|
+
"name": "only permitted files changed",
|
|
330
|
+
"pass": true
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "no symlink artifacts",
|
|
334
|
+
"pass": true
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "no unrequested commits",
|
|
338
|
+
"pass": true
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "tenant identity, delimiter collisions and falsey values",
|
|
342
|
+
"pass": true
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "pending coalescing and expiry measured from completion",
|
|
346
|
+
"pass": true
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "one waiter cancellation cannot poison shared work",
|
|
350
|
+
"pass": true
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "pre-abort and listener cleanup on settlement",
|
|
354
|
+
"pass": true
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "detached old success cannot overwrite or delete new generation",
|
|
358
|
+
"pass": true
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"name": "detached old failure cannot clear newer pending work",
|
|
362
|
+
"pass": true
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "synchronous failures and asynchronous failures are retryable",
|
|
366
|
+
"pass": true
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "latest view result, stale failure and permanent disposal",
|
|
370
|
+
"pass": true
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"name": "oracle process completed consistently",
|
|
374
|
+
"pass": true
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "regression test artifact exists",
|
|
378
|
+
"pass": true
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "project and authored regression tests pass",
|
|
382
|
+
"pass": true
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "regression tests detect original defect",
|
|
386
|
+
"pass": true
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "agent turn completed within limit",
|
|
390
|
+
"pass": true
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"metrics": {
|
|
394
|
+
"model": "gpt-6-astra",
|
|
395
|
+
"effort": "medium",
|
|
396
|
+
"startedAt": "2026-09-20T05:37:29.733Z",
|
|
397
|
+
"finishedAt": "2026-09-20T05:40:26.155Z",
|
|
398
|
+
"wallMs": 176422,
|
|
399
|
+
"exitCode": 0,
|
|
400
|
+
"exitSignal": null,
|
|
401
|
+
"timedOut": false,
|
|
402
|
+
"cancelled": false,
|
|
403
|
+
"usage": {
|
|
404
|
+
"input_tokens": 115840,
|
|
405
|
+
"cached_input_tokens": 89600,
|
|
406
|
+
"cache_write_input_tokens": 0,
|
|
407
|
+
"output_tokens": 4945,
|
|
408
|
+
"reasoning_output_tokens": 170
|
|
409
|
+
},
|
|
410
|
+
"turnCompleted": true,
|
|
411
|
+
"invalidEventLines": 0,
|
|
412
|
+
"toolCalls": 8,
|
|
413
|
+
"failedCommands": 0,
|
|
414
|
+
"errors": [],
|
|
415
|
+
"userInterventions": 0,
|
|
416
|
+
"costUsd": null,
|
|
417
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
418
|
+
"host": {
|
|
419
|
+
"cli": "codex-cli 0.155.1",
|
|
420
|
+
"sandbox": "workspace-write",
|
|
421
|
+
"writableGitMetadata": true,
|
|
422
|
+
"externalTools": false,
|
|
423
|
+
"plugins": false,
|
|
424
|
+
"hostSkillDiscovery": false
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
428
|
+
"instructionFileCount": 376,
|
|
429
|
+
"selectedInstructions": [
|
|
430
|
+
{
|
|
431
|
+
"path": "_instructions/just-vibe/skills/backend-cache/SKILL.md",
|
|
432
|
+
"sha256": "4086e504a0eefcdc260425fea45302d0fc6ab4172952e47c6710fb5ff14fbc5c"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"path": "_instructions/just-vibe/skills/backend-concurrency/SKILL.md",
|
|
436
|
+
"sha256": "86b14cfac0c0a764eaa15b66a173ce1a04cc9b4167e35e1f60737b3fb52a554f"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"path": "_instructions/just-vibe/skills/react-async/SKILL.md",
|
|
440
|
+
"sha256": "c388f3f827d0d921b53abaf1d2da5bbc0b9d9bca3e66f6117afa6483ed1abf7d"
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"artifactHashes": {
|
|
444
|
+
"prompt.txt": "228ea303d42c00676bb64d5e3d665a5dff97d8ebc73cefd2940c55b74cd493eb",
|
|
445
|
+
"events.jsonl": "32f32baef1dcb63468624fa9706475c8a2623da04882c0ff6b44cee44f923f9e",
|
|
446
|
+
"answer.md": "abb8acaaf8e51031c8d0fcf1a23e0861a4cbb0e4ba11c9e9642676a19174074f",
|
|
447
|
+
"run.json": "d7b3ec1a755096c74de38d36021d5b4c97f49deb0ab4d135ec666851d1029a07",
|
|
448
|
+
"test-evidence.json": "337d46297890237818d83933e354391bec541d04f73920078c16452a8d6667de"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"case": "temporal-ml",
|
|
453
|
+
"arm": "just-vibe",
|
|
454
|
+
"repetition": 1,
|
|
455
|
+
"sourceVersion": "0.6.0",
|
|
456
|
+
"profile": null,
|
|
457
|
+
"correct": true,
|
|
458
|
+
"artifactCorrect": true,
|
|
459
|
+
"scorerVersion": 3,
|
|
460
|
+
"priorScore": null,
|
|
461
|
+
"priorScores": [
|
|
462
|
+
{
|
|
463
|
+
"scorerVersion": 2,
|
|
464
|
+
"correct": true
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"checks": [
|
|
468
|
+
{
|
|
469
|
+
"name": "only permitted files changed",
|
|
470
|
+
"pass": true
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "no symlink artifacts",
|
|
474
|
+
"pass": true
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "no unrequested commits",
|
|
478
|
+
"pass": true
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "window bounds and event availability",
|
|
482
|
+
"pass": true
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "revision selection before window filtering and deduplication",
|
|
486
|
+
"pass": true
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "offset-aware instant comparisons and naive rejection",
|
|
490
|
+
"pass": true
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "mature training membership and train-only scaler",
|
|
494
|
+
"pass": true
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "zero labels, unknown labels and future examples",
|
|
498
|
+
"pass": true
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "input order and immutability",
|
|
502
|
+
"pass": true
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "empty and constant training fallback",
|
|
506
|
+
"pass": true
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "oracle process completed consistently",
|
|
510
|
+
"pass": true
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "regression test artifact exists",
|
|
514
|
+
"pass": true
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "project and authored regression tests pass",
|
|
518
|
+
"pass": true
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "regression tests detect original defect",
|
|
522
|
+
"pass": true
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "agent turn completed within limit",
|
|
526
|
+
"pass": true
|
|
527
|
+
}
|
|
528
|
+
],
|
|
529
|
+
"metrics": {
|
|
530
|
+
"model": "gpt-6-astra",
|
|
531
|
+
"effort": "medium",
|
|
532
|
+
"startedAt": "2026-09-20T05:40:42.371Z",
|
|
533
|
+
"finishedAt": "2026-09-20T05:43:12.688Z",
|
|
534
|
+
"wallMs": 150317,
|
|
535
|
+
"exitCode": 0,
|
|
536
|
+
"exitSignal": null,
|
|
537
|
+
"timedOut": false,
|
|
538
|
+
"cancelled": false,
|
|
539
|
+
"usage": {
|
|
540
|
+
"input_tokens": 114775,
|
|
541
|
+
"cached_input_tokens": 97280,
|
|
542
|
+
"cache_write_input_tokens": 0,
|
|
543
|
+
"output_tokens": 4410,
|
|
544
|
+
"reasoning_output_tokens": 119
|
|
545
|
+
},
|
|
546
|
+
"turnCompleted": true,
|
|
547
|
+
"invalidEventLines": 0,
|
|
548
|
+
"toolCalls": 9,
|
|
549
|
+
"failedCommands": 0,
|
|
550
|
+
"errors": [],
|
|
551
|
+
"userInterventions": 0,
|
|
552
|
+
"costUsd": null,
|
|
553
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
554
|
+
"host": {
|
|
555
|
+
"cli": "codex-cli 0.155.1",
|
|
556
|
+
"sandbox": "workspace-write",
|
|
557
|
+
"writableGitMetadata": true,
|
|
558
|
+
"externalTools": false,
|
|
559
|
+
"plugins": false,
|
|
560
|
+
"hostSkillDiscovery": false
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
564
|
+
"instructionFileCount": 376,
|
|
565
|
+
"selectedInstructions": [
|
|
566
|
+
{
|
|
567
|
+
"path": "_instructions/just-vibe/skills/ml-features/SKILL.md",
|
|
568
|
+
"sha256": "0fc1c6628d5525cd377d9920cb11d99c27a0205a9dd45c86a6071f11f8bf7b37"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"path": "_instructions/just-vibe/skills/ml-leakage/SKILL.md",
|
|
572
|
+
"sha256": "40e953aabc397101c39d85f5a76441a8f84bb1303ad0bceba8be614b7ac15bb3"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"path": "_instructions/just-vibe/skills/ml-split/SKILL.md",
|
|
576
|
+
"sha256": "796a50f3f7d6b69fb30392a536d883c3a550fa25cc1ad632b6a7205cd1c70ba5"
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"artifactHashes": {
|
|
580
|
+
"prompt.txt": "84b5675d13d2122254370a304887e3c0175c7def02f76302f5842e671959d0d8",
|
|
581
|
+
"events.jsonl": "1ad743ffadb270048c2289349707684e47bc2209e380e2c66b870b441051e805",
|
|
582
|
+
"answer.md": "b42e6cd1996250a1fbd2705fc43b60946738e879f694b8ccd1dec2f9be18d8f4",
|
|
583
|
+
"run.json": "63137b1bfbaec4220687d35c411fb570db285f54eab4fba15461a328d07458b8",
|
|
584
|
+
"test-evidence.json": "e487555abb303281c2f227c85903f0b3b573b6a35fa065759124be50735a553f"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"case": "temporal-ml",
|
|
589
|
+
"arm": "just-vibe-profile",
|
|
590
|
+
"repetition": 1,
|
|
591
|
+
"sourceVersion": "0.6.0",
|
|
592
|
+
"profile": "machine-learning-engineer",
|
|
593
|
+
"correct": true,
|
|
594
|
+
"artifactCorrect": true,
|
|
595
|
+
"scorerVersion": 3,
|
|
596
|
+
"priorScore": null,
|
|
597
|
+
"priorScores": [
|
|
598
|
+
{
|
|
599
|
+
"scorerVersion": 2,
|
|
600
|
+
"correct": true
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"checks": [
|
|
604
|
+
{
|
|
605
|
+
"name": "only permitted files changed",
|
|
606
|
+
"pass": true
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"name": "no symlink artifacts",
|
|
610
|
+
"pass": true
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"name": "no unrequested commits",
|
|
614
|
+
"pass": true
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "window bounds and event availability",
|
|
618
|
+
"pass": true
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"name": "revision selection before window filtering and deduplication",
|
|
622
|
+
"pass": true
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "offset-aware instant comparisons and naive rejection",
|
|
626
|
+
"pass": true
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"name": "mature training membership and train-only scaler",
|
|
630
|
+
"pass": true
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "zero labels, unknown labels and future examples",
|
|
634
|
+
"pass": true
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"name": "input order and immutability",
|
|
638
|
+
"pass": true
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"name": "empty and constant training fallback",
|
|
642
|
+
"pass": true
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"name": "oracle process completed consistently",
|
|
646
|
+
"pass": true
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"name": "regression test artifact exists",
|
|
650
|
+
"pass": true
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "project and authored regression tests pass",
|
|
654
|
+
"pass": true
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"name": "regression tests detect original defect",
|
|
658
|
+
"pass": true
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"name": "agent turn completed within limit",
|
|
662
|
+
"pass": true
|
|
663
|
+
}
|
|
664
|
+
],
|
|
665
|
+
"metrics": {
|
|
666
|
+
"model": "gpt-6-astra",
|
|
667
|
+
"effort": "medium",
|
|
668
|
+
"startedAt": "2026-09-20T05:40:42.863Z",
|
|
669
|
+
"finishedAt": "2026-09-20T05:43:49.532Z",
|
|
670
|
+
"wallMs": 186670,
|
|
671
|
+
"exitCode": 0,
|
|
672
|
+
"exitSignal": null,
|
|
673
|
+
"timedOut": false,
|
|
674
|
+
"cancelled": false,
|
|
675
|
+
"usage": {
|
|
676
|
+
"input_tokens": 122328,
|
|
677
|
+
"cached_input_tokens": 102528,
|
|
678
|
+
"cache_write_input_tokens": 0,
|
|
679
|
+
"output_tokens": 5330,
|
|
680
|
+
"reasoning_output_tokens": 175
|
|
681
|
+
},
|
|
682
|
+
"turnCompleted": true,
|
|
683
|
+
"invalidEventLines": 0,
|
|
684
|
+
"toolCalls": 9,
|
|
685
|
+
"failedCommands": 1,
|
|
686
|
+
"errors": [],
|
|
687
|
+
"userInterventions": 0,
|
|
688
|
+
"costUsd": null,
|
|
689
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
690
|
+
"host": {
|
|
691
|
+
"cli": "codex-cli 0.155.1",
|
|
692
|
+
"sandbox": "workspace-write",
|
|
693
|
+
"writableGitMetadata": true,
|
|
694
|
+
"externalTools": false,
|
|
695
|
+
"plugins": false,
|
|
696
|
+
"hostSkillDiscovery": false
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
700
|
+
"instructionFileCount": 376,
|
|
701
|
+
"selectedInstructions": [
|
|
702
|
+
{
|
|
703
|
+
"path": "_instructions/just-vibe/skills/ml-features/SKILL.md",
|
|
704
|
+
"sha256": "0fc1c6628d5525cd377d9920cb11d99c27a0205a9dd45c86a6071f11f8bf7b37"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"path": "_instructions/just-vibe/skills/ml-leakage/SKILL.md",
|
|
708
|
+
"sha256": "40e953aabc397101c39d85f5a76441a8f84bb1303ad0bceba8be614b7ac15bb3"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"path": "_instructions/just-vibe/skills/ml-split/SKILL.md",
|
|
712
|
+
"sha256": "796a50f3f7d6b69fb30392a536d883c3a550fa25cc1ad632b6a7205cd1c70ba5"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"path": "_instructions/just-vibe/references/profiles/machine-learning-engineer.md",
|
|
716
|
+
"sha256": "f25512789561ba743e670153bdc62fd742d22ab541955a99927f734c4cd17076"
|
|
717
|
+
}
|
|
718
|
+
],
|
|
719
|
+
"artifactHashes": {
|
|
720
|
+
"prompt.txt": "ee5a8437b2ad70ed0919c7accde8ee173606475f81a6a931eb2b2a76495bc8e5",
|
|
721
|
+
"events.jsonl": "85883012bdc63ba964c2483f2d64ed5b489cdf71d1863b1d0590e39bbeab24d8",
|
|
722
|
+
"answer.md": "a0a36703e5d989b51a9aa151c0826d458037ecdbf027757c16ea15a92e7deb97",
|
|
723
|
+
"run.json": "2a1ccbe805bf80454a567bbec1c3be0bb2b187eba62e774eeb42be1549b5df3c",
|
|
724
|
+
"test-evidence.json": "3d033d5cd8d189541ae875e6292160ac7289ef46cbf4374aa7a029425e08fcff"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"case": "async-cache",
|
|
729
|
+
"arm": "just-vibe-profile",
|
|
730
|
+
"repetition": 1,
|
|
731
|
+
"sourceVersion": "0.6.0",
|
|
732
|
+
"profile": "frontend-engineer",
|
|
733
|
+
"correct": true,
|
|
734
|
+
"artifactCorrect": true,
|
|
735
|
+
"scorerVersion": 3,
|
|
736
|
+
"priorScore": null,
|
|
737
|
+
"priorScores": [
|
|
738
|
+
{
|
|
739
|
+
"scorerVersion": 2,
|
|
740
|
+
"correct": true
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
"checks": [
|
|
744
|
+
{
|
|
745
|
+
"name": "only permitted files changed",
|
|
746
|
+
"pass": true
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "no symlink artifacts",
|
|
750
|
+
"pass": true
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"name": "no unrequested commits",
|
|
754
|
+
"pass": true
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"name": "tenant identity, delimiter collisions and falsey values",
|
|
758
|
+
"pass": true
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"name": "pending coalescing and expiry measured from completion",
|
|
762
|
+
"pass": true
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "one waiter cancellation cannot poison shared work",
|
|
766
|
+
"pass": true
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"name": "pre-abort and listener cleanup on settlement",
|
|
770
|
+
"pass": true
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "detached old success cannot overwrite or delete new generation",
|
|
774
|
+
"pass": true
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"name": "detached old failure cannot clear newer pending work",
|
|
778
|
+
"pass": true
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "synchronous failures and asynchronous failures are retryable",
|
|
782
|
+
"pass": true
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"name": "latest view result, stale failure and permanent disposal",
|
|
786
|
+
"pass": true
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"name": "oracle process completed consistently",
|
|
790
|
+
"pass": true
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "regression test artifact exists",
|
|
794
|
+
"pass": true
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"name": "project and authored regression tests pass",
|
|
798
|
+
"pass": true
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"name": "regression tests detect original defect",
|
|
802
|
+
"pass": true
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"name": "agent turn completed within limit",
|
|
806
|
+
"pass": true
|
|
807
|
+
}
|
|
808
|
+
],
|
|
809
|
+
"metrics": {
|
|
810
|
+
"model": "gpt-6-astra",
|
|
811
|
+
"effort": "medium",
|
|
812
|
+
"startedAt": "2026-09-20T05:43:13.087Z",
|
|
813
|
+
"finishedAt": "2026-09-20T05:47:00.530Z",
|
|
814
|
+
"wallMs": 227443,
|
|
815
|
+
"exitCode": 0,
|
|
816
|
+
"exitSignal": null,
|
|
817
|
+
"timedOut": false,
|
|
818
|
+
"cancelled": false,
|
|
819
|
+
"usage": {
|
|
820
|
+
"input_tokens": 148400,
|
|
821
|
+
"cached_input_tokens": 119808,
|
|
822
|
+
"cache_write_input_tokens": 0,
|
|
823
|
+
"output_tokens": 4989,
|
|
824
|
+
"reasoning_output_tokens": 187
|
|
825
|
+
},
|
|
826
|
+
"turnCompleted": true,
|
|
827
|
+
"invalidEventLines": 0,
|
|
828
|
+
"toolCalls": 11,
|
|
829
|
+
"failedCommands": 0,
|
|
830
|
+
"errors": [],
|
|
831
|
+
"userInterventions": 0,
|
|
832
|
+
"costUsd": null,
|
|
833
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
834
|
+
"host": {
|
|
835
|
+
"cli": "codex-cli 0.155.1",
|
|
836
|
+
"sandbox": "workspace-write",
|
|
837
|
+
"writableGitMetadata": true,
|
|
838
|
+
"externalTools": false,
|
|
839
|
+
"plugins": false,
|
|
840
|
+
"hostSkillDiscovery": false
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
844
|
+
"instructionFileCount": 376,
|
|
845
|
+
"selectedInstructions": [
|
|
846
|
+
{
|
|
847
|
+
"path": "_instructions/just-vibe/skills/backend-cache/SKILL.md",
|
|
848
|
+
"sha256": "4086e504a0eefcdc260425fea45302d0fc6ab4172952e47c6710fb5ff14fbc5c"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"path": "_instructions/just-vibe/skills/backend-concurrency/SKILL.md",
|
|
852
|
+
"sha256": "86b14cfac0c0a764eaa15b66a173ce1a04cc9b4167e35e1f60737b3fb52a554f"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"path": "_instructions/just-vibe/skills/react-async/SKILL.md",
|
|
856
|
+
"sha256": "c388f3f827d0d921b53abaf1d2da5bbc0b9d9bca3e66f6117afa6483ed1abf7d"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"path": "_instructions/just-vibe/references/profiles/frontend-engineer.md",
|
|
860
|
+
"sha256": "38b28beccead214256c4118a62130aaec227c7480fbe6256a9c1cb1bddad9cc0"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"artifactHashes": {
|
|
864
|
+
"prompt.txt": "2b7c6130c6826d656b1fad0b7bfdfb14ba0524e39cc16edfb92276e7cdbfdceb",
|
|
865
|
+
"events.jsonl": "760dce448c898b7a7b8995cb4bff461a954425e1dc891094eb4414c14f6f98ce",
|
|
866
|
+
"answer.md": "ae81c1b300920393ed09431ed9724081cc0917d957fc63cf90e5ada8d951f207",
|
|
867
|
+
"run.json": "ed0b4381e0f92a66d8bf47d07db74ab3ab78c89188aa5f09b5f8d0ef1594cc0f",
|
|
868
|
+
"test-evidence.json": "fb972709910b480b73ab28f07381a15f84dccf3c063375c84d117aafc0cde139"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"case": "scoped-commit",
|
|
873
|
+
"arm": "just-vibe-profile",
|
|
874
|
+
"repetition": 1,
|
|
875
|
+
"sourceVersion": "0.6.0",
|
|
876
|
+
"profile": "senior-software-engineer",
|
|
877
|
+
"correct": true,
|
|
878
|
+
"artifactCorrect": true,
|
|
879
|
+
"scorerVersion": 3,
|
|
880
|
+
"priorScore": null,
|
|
881
|
+
"priorScores": [
|
|
882
|
+
{
|
|
883
|
+
"scorerVersion": 2,
|
|
884
|
+
"correct": true
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"checks": [
|
|
888
|
+
{
|
|
889
|
+
"name": "only permitted files changed",
|
|
890
|
+
"pass": true
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "no symlink artifacts",
|
|
894
|
+
"pass": true
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"name": "missing and zero adjustment",
|
|
898
|
+
"pass": true
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "negative surcharge and no-clamp compatibility",
|
|
902
|
+
"pass": true
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "unrelated worktree behavior preserved",
|
|
906
|
+
"pass": true
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"name": "oracle process completed consistently",
|
|
910
|
+
"pass": true
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "regression test artifact exists",
|
|
914
|
+
"pass": true
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "project and authored regression tests pass",
|
|
918
|
+
"pass": true
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "regression tests detect original defect",
|
|
922
|
+
"pass": true
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"name": "exactly one requested commit",
|
|
926
|
+
"pass": true
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"name": "commit includes only requested fix and new test",
|
|
930
|
+
"pass": true
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "same-file staged and unstaged distinctions survive",
|
|
934
|
+
"pass": true
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"name": "committed implementation satisfies the contract independently",
|
|
938
|
+
"pass": true
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"name": "committed tests pass without unrelated worktree edits",
|
|
942
|
+
"pass": true
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"name": "user identity and no agent attribution",
|
|
946
|
+
"pass": true
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"name": "unrelated staged note and untracked file remain",
|
|
950
|
+
"pass": true
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"name": "agent turn completed within limit",
|
|
954
|
+
"pass": true
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"metrics": {
|
|
958
|
+
"model": "gpt-6-astra",
|
|
959
|
+
"effort": "medium",
|
|
960
|
+
"startedAt": "2026-09-20T05:43:49.992Z",
|
|
961
|
+
"finishedAt": "2026-09-20T05:45:33.194Z",
|
|
962
|
+
"wallMs": 103202,
|
|
963
|
+
"exitCode": 0,
|
|
964
|
+
"exitSignal": null,
|
|
965
|
+
"timedOut": false,
|
|
966
|
+
"cancelled": false,
|
|
967
|
+
"usage": {
|
|
968
|
+
"input_tokens": 147702,
|
|
969
|
+
"cached_input_tokens": 127232,
|
|
970
|
+
"cache_write_input_tokens": 0,
|
|
971
|
+
"output_tokens": 2679,
|
|
972
|
+
"reasoning_output_tokens": 208
|
|
973
|
+
},
|
|
974
|
+
"turnCompleted": true,
|
|
975
|
+
"invalidEventLines": 0,
|
|
976
|
+
"toolCalls": 13,
|
|
977
|
+
"failedCommands": 1,
|
|
978
|
+
"errors": [],
|
|
979
|
+
"userInterventions": 0,
|
|
980
|
+
"costUsd": null,
|
|
981
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
982
|
+
"host": {
|
|
983
|
+
"cli": "codex-cli 0.155.1",
|
|
984
|
+
"sandbox": "workspace-write",
|
|
985
|
+
"writableGitMetadata": true,
|
|
986
|
+
"externalTools": false,
|
|
987
|
+
"plugins": false,
|
|
988
|
+
"hostSkillDiscovery": false
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
992
|
+
"instructionFileCount": 376,
|
|
993
|
+
"selectedInstructions": [
|
|
994
|
+
{
|
|
995
|
+
"path": "_instructions/just-vibe/skills/fix/SKILL.md",
|
|
996
|
+
"sha256": "afa0f3a2a9b21e18973d3f1c4b34fe7fc2d6f36db6e50a08d7171ef19e44a5c7"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"path": "_instructions/just-vibe/skills/git-commit/SKILL.md",
|
|
1000
|
+
"sha256": "690d69589ec00d5153684c47bc1e9b02696976e8387674f4b29d824178ca7ca3"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"path": "_instructions/just-vibe/skills/test-regression/SKILL.md",
|
|
1004
|
+
"sha256": "a4e992a261834c07754ef70f4c06e85f49b0226dc9cf03c0e201941bf4311328"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"path": "_instructions/just-vibe/references/profiles/senior-software-engineer.md",
|
|
1008
|
+
"sha256": "783a3ed0bfe8926ae42a964afca66acac2f406d45685b3b0a8b3282b83f46551"
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"artifactHashes": {
|
|
1012
|
+
"prompt.txt": "4efee43857ab61916dd15f982baacc65b48de2d189bc08eb5814c0dd5d5aadea",
|
|
1013
|
+
"events.jsonl": "8c7861f0d6038732d4f148bb5e523eabcd5984fe5e2c57ac5c0766f66cc6f854",
|
|
1014
|
+
"answer.md": "9908080dc36720c2c35e35cec78e0c71e91d0000ee5f9790419406ad68fb63d6",
|
|
1015
|
+
"run.json": "17423c3bd3427995f2823eb6a9d7ecc77ea51a5d4d69c9e8e638d9944ae94265",
|
|
1016
|
+
"test-evidence.json": "6c7197b02c40238b6ec20ffd16bd08243b48ab74ea12582443b59d8a3eb1ff6d"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"case": "ledger",
|
|
1021
|
+
"arm": "just-vibe",
|
|
1022
|
+
"repetition": 1,
|
|
1023
|
+
"sourceVersion": "0.6.0",
|
|
1024
|
+
"profile": null,
|
|
1025
|
+
"correct": true,
|
|
1026
|
+
"artifactCorrect": true,
|
|
1027
|
+
"scorerVersion": 3,
|
|
1028
|
+
"priorScore": null,
|
|
1029
|
+
"priorScores": [
|
|
1030
|
+
{
|
|
1031
|
+
"scorerVersion": 2,
|
|
1032
|
+
"correct": true
|
|
1033
|
+
}
|
|
1034
|
+
],
|
|
1035
|
+
"checks": [
|
|
1036
|
+
{
|
|
1037
|
+
"name": "only permitted files changed",
|
|
1038
|
+
"pass": true
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"name": "no symlink artifacts",
|
|
1042
|
+
"pass": true
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"name": "no unrequested commits",
|
|
1046
|
+
"pass": true
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"name": "interruption rolls back all state and permits retry",
|
|
1050
|
+
"pass": true
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"name": "payload conflicts and tenant-scoped replay",
|
|
1054
|
+
"pass": true
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "exact integer amount validation without writes",
|
|
1058
|
+
"pass": true
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"name": "account ownership, funds and credit overflow",
|
|
1062
|
+
"pass": true
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"name": "caller-owned transaction remains untouched",
|
|
1066
|
+
"pass": true
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"name": "concurrent connections serialize one effect",
|
|
1070
|
+
"pass": true
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"name": "oracle process completed consistently",
|
|
1074
|
+
"pass": true
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"name": "regression test artifact exists",
|
|
1078
|
+
"pass": true
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"name": "project and authored regression tests pass",
|
|
1082
|
+
"pass": true
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"name": "regression tests detect original defect",
|
|
1086
|
+
"pass": true
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"name": "agent turn completed within limit",
|
|
1090
|
+
"pass": true
|
|
1091
|
+
}
|
|
1092
|
+
],
|
|
1093
|
+
"metrics": {
|
|
1094
|
+
"model": "gpt-6-astra",
|
|
1095
|
+
"effort": "medium",
|
|
1096
|
+
"startedAt": "2026-09-20T05:45:33.914Z",
|
|
1097
|
+
"finishedAt": "2026-09-20T05:48:52.710Z",
|
|
1098
|
+
"wallMs": 198796,
|
|
1099
|
+
"exitCode": 0,
|
|
1100
|
+
"exitSignal": null,
|
|
1101
|
+
"timedOut": false,
|
|
1102
|
+
"cancelled": false,
|
|
1103
|
+
"usage": {
|
|
1104
|
+
"input_tokens": 140426,
|
|
1105
|
+
"cached_input_tokens": 116992,
|
|
1106
|
+
"cache_write_input_tokens": 0,
|
|
1107
|
+
"output_tokens": 5811,
|
|
1108
|
+
"reasoning_output_tokens": 461
|
|
1109
|
+
},
|
|
1110
|
+
"turnCompleted": true,
|
|
1111
|
+
"invalidEventLines": 0,
|
|
1112
|
+
"toolCalls": 12,
|
|
1113
|
+
"failedCommands": 1,
|
|
1114
|
+
"errors": [],
|
|
1115
|
+
"userInterventions": 0,
|
|
1116
|
+
"costUsd": null,
|
|
1117
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
1118
|
+
"host": {
|
|
1119
|
+
"cli": "codex-cli 0.155.1",
|
|
1120
|
+
"sandbox": "workspace-write",
|
|
1121
|
+
"writableGitMetadata": true,
|
|
1122
|
+
"externalTools": false,
|
|
1123
|
+
"plugins": false,
|
|
1124
|
+
"hostSkillDiscovery": false
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
1128
|
+
"instructionFileCount": 376,
|
|
1129
|
+
"selectedInstructions": [
|
|
1130
|
+
{
|
|
1131
|
+
"path": "_instructions/just-vibe/skills/backend-idempotency/SKILL.md",
|
|
1132
|
+
"sha256": "b9c7735adf288ea0142762bbd1ed4ad089a18867fc62897c4c24a78b26d350f0"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"path": "_instructions/just-vibe/skills/backend-concurrency/SKILL.md",
|
|
1136
|
+
"sha256": "86b14cfac0c0a764eaa15b66a173ce1a04cc9b4167e35e1f60737b3fb52a554f"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"path": "_instructions/just-vibe/skills/db-integrity/SKILL.md",
|
|
1140
|
+
"sha256": "4db38cde6380d122a2ae776b7cc0cbd2486019c2ddb2503879a04bf1b22ecb4d"
|
|
1141
|
+
}
|
|
1142
|
+
],
|
|
1143
|
+
"artifactHashes": {
|
|
1144
|
+
"prompt.txt": "0b9a0edc17bb7c53e4b304747a8795c0ec3624f7b6aa637c0820b4f8ee78b5bc",
|
|
1145
|
+
"events.jsonl": "3cd50cc36470f069b2a97e3dc3e4de87a02d2ffdfbe14bb64e9596b07b86b8fd",
|
|
1146
|
+
"answer.md": "ee350c2f1a68be20bc407180e585c4657dacdf80f0e8b65ed0365396b6502a31",
|
|
1147
|
+
"run.json": "5bcb13de554c04f9f01de21a6b0d467a4ffe3d73061cf04d6661bebf4b231079",
|
|
1148
|
+
"test-evidence.json": "57c58f6f3ef091dcee43ae727301b68ae21f310dfdf0da505bb28eb0a35ac5be"
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"case": "scoped-commit",
|
|
1153
|
+
"arm": "just-vibe",
|
|
1154
|
+
"repetition": 1,
|
|
1155
|
+
"sourceVersion": "0.6.0",
|
|
1156
|
+
"profile": null,
|
|
1157
|
+
"correct": true,
|
|
1158
|
+
"artifactCorrect": true,
|
|
1159
|
+
"scorerVersion": 3,
|
|
1160
|
+
"priorScore": null,
|
|
1161
|
+
"priorScores": [
|
|
1162
|
+
{
|
|
1163
|
+
"scorerVersion": 2,
|
|
1164
|
+
"correct": true
|
|
1165
|
+
}
|
|
1166
|
+
],
|
|
1167
|
+
"checks": [
|
|
1168
|
+
{
|
|
1169
|
+
"name": "only permitted files changed",
|
|
1170
|
+
"pass": true
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "no symlink artifacts",
|
|
1174
|
+
"pass": true
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"name": "missing and zero adjustment",
|
|
1178
|
+
"pass": true
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"name": "negative surcharge and no-clamp compatibility",
|
|
1182
|
+
"pass": true
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"name": "unrelated worktree behavior preserved",
|
|
1186
|
+
"pass": true
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"name": "oracle process completed consistently",
|
|
1190
|
+
"pass": true
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"name": "regression test artifact exists",
|
|
1194
|
+
"pass": true
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"name": "project and authored regression tests pass",
|
|
1198
|
+
"pass": true
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"name": "regression tests detect original defect",
|
|
1202
|
+
"pass": true
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"name": "exactly one requested commit",
|
|
1206
|
+
"pass": true
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"name": "commit includes only requested fix and new test",
|
|
1210
|
+
"pass": true
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"name": "same-file staged and unstaged distinctions survive",
|
|
1214
|
+
"pass": true
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "committed implementation satisfies the contract independently",
|
|
1218
|
+
"pass": true
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"name": "committed tests pass without unrelated worktree edits",
|
|
1222
|
+
"pass": true
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"name": "user identity and no agent attribution",
|
|
1226
|
+
"pass": true
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"name": "unrelated staged note and untracked file remain",
|
|
1230
|
+
"pass": true
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"name": "agent turn completed within limit",
|
|
1234
|
+
"pass": true
|
|
1235
|
+
}
|
|
1236
|
+
],
|
|
1237
|
+
"metrics": {
|
|
1238
|
+
"model": "gpt-6-astra",
|
|
1239
|
+
"effort": "medium",
|
|
1240
|
+
"startedAt": "2026-09-20T05:47:16.198Z",
|
|
1241
|
+
"finishedAt": "2026-09-20T05:49:11.883Z",
|
|
1242
|
+
"wallMs": 115685,
|
|
1243
|
+
"exitCode": 0,
|
|
1244
|
+
"exitSignal": null,
|
|
1245
|
+
"timedOut": false,
|
|
1246
|
+
"cancelled": false,
|
|
1247
|
+
"usage": {
|
|
1248
|
+
"input_tokens": 186674,
|
|
1249
|
+
"cached_input_tokens": 168192,
|
|
1250
|
+
"cache_write_input_tokens": 0,
|
|
1251
|
+
"output_tokens": 2523,
|
|
1252
|
+
"reasoning_output_tokens": 170
|
|
1253
|
+
},
|
|
1254
|
+
"turnCompleted": true,
|
|
1255
|
+
"invalidEventLines": 0,
|
|
1256
|
+
"toolCalls": 12,
|
|
1257
|
+
"failedCommands": 2,
|
|
1258
|
+
"errors": [],
|
|
1259
|
+
"userInterventions": 0,
|
|
1260
|
+
"costUsd": null,
|
|
1261
|
+
"costReason": "CLI reports tokens, not a verified per-run monetary charge.",
|
|
1262
|
+
"host": {
|
|
1263
|
+
"cli": "codex-cli 0.155.1",
|
|
1264
|
+
"sandbox": "workspace-write",
|
|
1265
|
+
"writableGitMetadata": true,
|
|
1266
|
+
"externalTools": false,
|
|
1267
|
+
"plugins": false,
|
|
1268
|
+
"hostSkillDiscovery": false
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"instructionBundleSha256": "0cfa5fdcac13c6d6c2103c110fb11b36d33e10ad26e54006e38d1444dd538a12",
|
|
1272
|
+
"instructionFileCount": 376,
|
|
1273
|
+
"selectedInstructions": [
|
|
1274
|
+
{
|
|
1275
|
+
"path": "_instructions/just-vibe/skills/fix/SKILL.md",
|
|
1276
|
+
"sha256": "afa0f3a2a9b21e18973d3f1c4b34fe7fc2d6f36db6e50a08d7171ef19e44a5c7"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"path": "_instructions/just-vibe/skills/git-commit/SKILL.md",
|
|
1280
|
+
"sha256": "690d69589ec00d5153684c47bc1e9b02696976e8387674f4b29d824178ca7ca3"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"path": "_instructions/just-vibe/skills/test-regression/SKILL.md",
|
|
1284
|
+
"sha256": "a4e992a261834c07754ef70f4c06e85f49b0226dc9cf03c0e201941bf4311328"
|
|
1285
|
+
}
|
|
1286
|
+
],
|
|
1287
|
+
"artifactHashes": {
|
|
1288
|
+
"prompt.txt": "277fe99fe2ace4c42519605096cc0fee77083a4610decd0e11cd9338065f8ab9",
|
|
1289
|
+
"events.jsonl": "d73063e5712772df542f7559581213ce0d0a7f61ad587d9c67892f629be723a4",
|
|
1290
|
+
"answer.md": "75254adc9617e554662b7392f93f3a84b5253ac028fd29b2ae2743d50fa9b98d",
|
|
1291
|
+
"run.json": "8a09eed10a564ef04c9da7f451363e1943b156393c2dd2632f4c6c73e1a462cd",
|
|
1292
|
+
"test-evidence.json": "f420ba42f2629077b35ea58b28658f9f4e5dd92d4d741bb757bfdc0f9af8b4f4"
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
],
|
|
1296
|
+
"limitations": [
|
|
1297
|
+
"Newly authored bounded fixture repositories, not third-party production repositories.",
|
|
1298
|
+
"Complete written contracts remove much of the context and discovery burden; user convenience and preference were not measured.",
|
|
1299
|
+
"Bounded correctness checks do not rank overall output quality; equal pass counts do not establish equal products.",
|
|
1300
|
+
"Matched supplied ECC instructions at a pinned snapshot; native hooks/memory integrations are excluded.",
|
|
1301
|
+
"Two repeats per original case/arm are insufficient to establish general superiority.",
|
|
1302
|
+
"Token and timing metrics are supporting operational observations, not quality scores. Zero interventions means none were supplied under the protocol.",
|
|
1303
|
+
"No monetary charge is reported by this authenticated CLI; cached input is a subset of input.",
|
|
1304
|
+
"A stable model name does not guarantee an immutable service backend.",
|
|
1305
|
+
"See the protocol for pilots and the uniform scorer correction; original scores are retained."
|
|
1306
|
+
]
|
|
1307
|
+
}
|