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,1274 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"date": "2026-09-19 America/Los_Angeles",
|
|
4
|
+
"host": "Codex collaboration agents; instruction files supplied directly, not native plugin invocation",
|
|
5
|
+
"model": "Inherited calling-agent configuration; exact model identifier and effort not exposed by the collaboration tool",
|
|
6
|
+
"controls": "Fresh agent contexts; identical raw inputs for the three matched cases; same inherited model/tool configuration and task permissions; no network or external services",
|
|
7
|
+
"eccRevision": "934195f955cf0da847d59fcd6f68856bce112d8b",
|
|
8
|
+
"limits": [
|
|
9
|
+
"One trial per case/arm; no statistical superiority claim.",
|
|
10
|
+
"ECC arm supplies one matched guide, not a complete installed ECC configuration.",
|
|
11
|
+
"Report facts are automatically checked; narrative reasoning was reviewed separately.",
|
|
12
|
+
"No live deployment, database execution, browser rendering, training or native quiz interaction.",
|
|
13
|
+
"Host usage/cost/timing metrics unavailable, not inferred.",
|
|
14
|
+
"The authz source fixture was clarified after its trial to state tenantId explicitly; trial hashes preserve the original inputs."
|
|
15
|
+
],
|
|
16
|
+
"results": [
|
|
17
|
+
{
|
|
18
|
+
"case": "checkout",
|
|
19
|
+
"arm": "just-vibe",
|
|
20
|
+
"commands": [
|
|
21
|
+
"fix"
|
|
22
|
+
],
|
|
23
|
+
"status": "passed-fixture",
|
|
24
|
+
"checks": [
|
|
25
|
+
{
|
|
26
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
27
|
+
"pass": true
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "No symlink artifacts",
|
|
31
|
+
"pass": true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Independent behavioral assertions",
|
|
35
|
+
"pass": true
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"modified": [
|
|
39
|
+
"checkout.mjs"
|
|
40
|
+
],
|
|
41
|
+
"answerSha256": "f0c473c9cec7cafd69612ec3069eda582f9afa97cd34d4514e0e1210af54d28c",
|
|
42
|
+
"inputHashes": {
|
|
43
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
44
|
+
"_instructions/just-vibe/references/packs/general.md": "dee359e9b317b68f43e084e84805cfb5f812bdf9d087e4960c16c943df115ab2",
|
|
45
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
46
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
47
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
48
|
+
"_instructions/just-vibe/skills/fix/SKILL.md": "ed725b79806f168a276b5fd3badd02abb749dada61f1f038b86e397b06e7bbd9",
|
|
49
|
+
"checkout.mjs": "df939669c5adcbd4931570e11470a78b432d57115ec197897c15ee6d24d2e3b0",
|
|
50
|
+
"contract.md": "9c427fd2a52b23398a9ad18ca045417bed3ce2cb22e0442efb21a44df7a3f7a0",
|
|
51
|
+
"keep.txt": "615d0d8efec84190d5fa25cb5af8a96e73f13db359c3bc13996eb7e48a46011c",
|
|
52
|
+
"task.md": "f7e3c89b5292be5638bac99bee5e1cfe29d65554a2502bcb4f80f865ce970e2f"
|
|
53
|
+
},
|
|
54
|
+
"instructionBytes": 2723,
|
|
55
|
+
"executionSeconds": null,
|
|
56
|
+
"tokens": null,
|
|
57
|
+
"cost": null
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"case": "github-pr",
|
|
61
|
+
"arm": "just-vibe",
|
|
62
|
+
"commands": [
|
|
63
|
+
"github-pr"
|
|
64
|
+
],
|
|
65
|
+
"status": "passed-fixture",
|
|
66
|
+
"checks": [
|
|
67
|
+
{
|
|
68
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
69
|
+
"pass": true
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "No symlink artifacts",
|
|
73
|
+
"pass": true
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "existingPr",
|
|
77
|
+
"pass": true
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "headSha",
|
|
81
|
+
"pass": true
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "createNeeded",
|
|
85
|
+
"pass": true
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "unsubmittedLocalFiles",
|
|
89
|
+
"pass": true
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"modified": [],
|
|
93
|
+
"answerSha256": "48a0f835cbf30d44501a2372849723aad1b6b35d3e278b07f5b3964a4319fcd6",
|
|
94
|
+
"inputHashes": {
|
|
95
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
96
|
+
"_instructions/just-vibe/references/packs/github.md": "ba7334ec8693b7fe6ff45c5d022fe7ad7d2cc97202315a7a057df794dbbbdd0e",
|
|
97
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
98
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
99
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
100
|
+
"_instructions/just-vibe/skills/github-pr/SKILL.md": "d0ddb0c4543cb479586660da6ff3fc6c9280a193f1e25100495d13122202dcb9",
|
|
101
|
+
"prs.json": "7b680f2a15a9af5472d60969e441787f6cc6c4851e5db4b0117121bc25329aa1",
|
|
102
|
+
"request.json": "899410d7546fa75734fc94efd7df74ec218cf43b591af9b243ec0659360ec598",
|
|
103
|
+
"task.md": "a321d34a9ae99888ec39d1063247788e6ca802bbef7d63a8fbebf7e4a30532da"
|
|
104
|
+
},
|
|
105
|
+
"instructionBytes": 2747,
|
|
106
|
+
"executionSeconds": null,
|
|
107
|
+
"tokens": null,
|
|
108
|
+
"cost": null
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"case": "vercel-env",
|
|
112
|
+
"arm": "just-vibe",
|
|
113
|
+
"commands": [
|
|
114
|
+
"vercel-env"
|
|
115
|
+
],
|
|
116
|
+
"status": "passed-fixture",
|
|
117
|
+
"checks": [
|
|
118
|
+
{
|
|
119
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
120
|
+
"pass": true
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "No symlink artifacts",
|
|
124
|
+
"pass": true
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "missingPreviewNames",
|
|
128
|
+
"pass": true
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "clientExposedSensitiveNames",
|
|
132
|
+
"pass": true
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "currentDeploymentHasNewValues",
|
|
136
|
+
"pass": true
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"modified": [],
|
|
140
|
+
"answerSha256": "e06904e99713cf09d00c09e9d08c95cf07de9ad33848ec21d436ca4f71edd375",
|
|
141
|
+
"inputHashes": {
|
|
142
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
143
|
+
"_instructions/just-vibe/references/packs/vercel.md": "0906debadec3018cd62f550e773f9cae8a3b108bccdd70b1041a26e08f42e1ba",
|
|
144
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
145
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
146
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
147
|
+
"_instructions/just-vibe/skills/vercel-env/SKILL.md": "09d1883ed33c6ee9c3a40a7ca96e3100c1bf7340cf475a3f8ca1f57510ca600c",
|
|
148
|
+
"consumers.json": "e373e5fca1b56f84a8199bb98a9114d16aca7a33b5b60271d07a865c35b804da",
|
|
149
|
+
"metadata.json": "0a5571cb9c1becd0df626d06b06ba453102763d6b5d6d86bb2f6ab068d7df65c",
|
|
150
|
+
"task.md": "7f115537351afda62227a6b5c3ea8cba30f1eeb5c8021e73cf7944a298a43f2a"
|
|
151
|
+
},
|
|
152
|
+
"instructionBytes": 2900,
|
|
153
|
+
"executionSeconds": null,
|
|
154
|
+
"tokens": null,
|
|
155
|
+
"cost": null
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"case": "vite-assets",
|
|
159
|
+
"arm": "just-vibe",
|
|
160
|
+
"commands": [
|
|
161
|
+
"vite-assets"
|
|
162
|
+
],
|
|
163
|
+
"status": "passed-fixture",
|
|
164
|
+
"checks": [
|
|
165
|
+
{
|
|
166
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
167
|
+
"pass": true
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "No symlink artifacts",
|
|
171
|
+
"pass": true
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "deployedPrefix",
|
|
175
|
+
"pass": true
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "brokenRequestedPath",
|
|
179
|
+
"pass": true
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "expectedAssetPath",
|
|
183
|
+
"pass": true
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "browserVerified",
|
|
187
|
+
"pass": true
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"modified": [],
|
|
191
|
+
"answerSha256": "c74aad72ebd0260cee22dc5375d1ca6e44b0c120ecf9a83e0742827157eca02c",
|
|
192
|
+
"inputHashes": {
|
|
193
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
194
|
+
"_instructions/just-vibe/references/packs/vite.md": "240d7e4baf6b56792eba651864c67ec0d1e6047361ef7696d74c1a5dc540185c",
|
|
195
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
196
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
197
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
198
|
+
"_instructions/just-vibe/skills/vite-assets/SKILL.md": "f4a848dcf33fa66e62c2d2cea76776c944aff38e865bfa71ad6090f887b521ca",
|
|
199
|
+
"deployment.json": "7974d8fe05125d8b97998c46f8660314089d382745b69f565d4253c621213baf",
|
|
200
|
+
"render.mjs": "dbbba2309f55f7914ed3005e125dcc32f8085b909cf8d56fb05804a3cb76f156",
|
|
201
|
+
"task.md": "b9ba11dd5bdb0f15ab692e7962c6954210fcfcfd636ac0fe96bf2883eeda422b",
|
|
202
|
+
"vite.config.mjs": "4e4a98c4adae54bc4f31131dbf3e28c9e39621537339e4c8c3c507cc144d84c3"
|
|
203
|
+
},
|
|
204
|
+
"instructionBytes": 2758,
|
|
205
|
+
"executionSeconds": null,
|
|
206
|
+
"tokens": null,
|
|
207
|
+
"cost": null
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"case": "react-race",
|
|
211
|
+
"arm": "just-vibe",
|
|
212
|
+
"commands": [
|
|
213
|
+
"react-async"
|
|
214
|
+
],
|
|
215
|
+
"status": "passed-fixture",
|
|
216
|
+
"checks": [
|
|
217
|
+
{
|
|
218
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
219
|
+
"pass": true
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "No symlink artifacts",
|
|
223
|
+
"pass": true
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "Independent behavioral assertions",
|
|
227
|
+
"pass": true
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"modified": [
|
|
231
|
+
"loader.mjs"
|
|
232
|
+
],
|
|
233
|
+
"answerSha256": "643c62332c9dc3ad96e605c1b35f37265a1da5bd21456ed662cda14693deba91",
|
|
234
|
+
"inputHashes": {
|
|
235
|
+
"AccountPanel.jsx": "9fcc4cae8acb195efe933cc3a4546d69617083283f70869d810b21680007f501",
|
|
236
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
237
|
+
"_instructions/just-vibe/references/packs/react.md": "45e8b1f086771903328998d08c3bebec3213c12bc97658a086bea70e857d647e",
|
|
238
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
239
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
240
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
241
|
+
"_instructions/just-vibe/skills/react-async/SKILL.md": "9874c35a4f52c74b286983e2fd16cae1b50f30ed59a6f1e6e70f645af01476c9",
|
|
242
|
+
"loader.mjs": "e4f1f803a82f271288c5babafcc5e8bd889d13f8efa486a9e7ce023e75ce324b",
|
|
243
|
+
"task.md": "dd20a2a1c1fd9c8c4de431874ac521423e78a17217332e9566fe64ebdcea3699"
|
|
244
|
+
},
|
|
245
|
+
"instructionBytes": 2854,
|
|
246
|
+
"executionSeconds": null,
|
|
247
|
+
"tokens": null,
|
|
248
|
+
"cost": null
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"case": "ui-accessibility",
|
|
252
|
+
"arm": "just-vibe",
|
|
253
|
+
"commands": [
|
|
254
|
+
"ui-accessibility"
|
|
255
|
+
],
|
|
256
|
+
"status": "passed-fixture",
|
|
257
|
+
"checks": [
|
|
258
|
+
{
|
|
259
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
260
|
+
"pass": true
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "No symlink artifacts",
|
|
264
|
+
"pass": true
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"name": "keyboardEscapeWorks",
|
|
268
|
+
"pass": true
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "focusReturnsToTrigger",
|
|
272
|
+
"pass": true
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "screenReaderVerified",
|
|
276
|
+
"pass": true
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "automatedScanProvesConformance",
|
|
280
|
+
"pass": true
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"modified": [],
|
|
284
|
+
"answerSha256": "5705e1d312eca5e87ad081a488564938e4ba855b0ef7b1837558b6b3bd425c3d",
|
|
285
|
+
"inputHashes": {
|
|
286
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
287
|
+
"_instructions/just-vibe/references/packs/ui.md": "22a2fd1dfe911599e9bcda04009d2a8ada8131e209e2b8d95bf61a8ab760b15f",
|
|
288
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
289
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
290
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
291
|
+
"_instructions/just-vibe/skills/ui-accessibility/SKILL.md": "461255c56ea4ff875c6e762fe5404813f0c4829b2de7e00277bed1a2e52ae621",
|
|
292
|
+
"observations.json": "eb3a9eafe8e1f12c7da318047abfcb40c453f272825ca74984f758c436a8fa35",
|
|
293
|
+
"task.md": "14c6fb2b4a1cc8ee11e00314bdb69dbc504537172c0d949e5ad370ec48040282"
|
|
294
|
+
},
|
|
295
|
+
"instructionBytes": 2815,
|
|
296
|
+
"executionSeconds": null,
|
|
297
|
+
"tokens": null,
|
|
298
|
+
"cost": null
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"case": "idempotency",
|
|
302
|
+
"arm": "just-vibe",
|
|
303
|
+
"commands": [
|
|
304
|
+
"backend-idempotency"
|
|
305
|
+
],
|
|
306
|
+
"status": "passed-fixture",
|
|
307
|
+
"checks": [
|
|
308
|
+
{
|
|
309
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
310
|
+
"pass": true
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "No symlink artifacts",
|
|
314
|
+
"pass": true
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "durableAcrossProcesses",
|
|
318
|
+
"pass": true
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "Independent behavioral assertions",
|
|
322
|
+
"pass": true
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
"modified": [
|
|
326
|
+
"orders.mjs"
|
|
327
|
+
],
|
|
328
|
+
"answerSha256": "d4a9661546bc441c7cddcdbbf7df9c7c71fa42f05548fbaf77b8d6201fe7b9c1",
|
|
329
|
+
"inputHashes": {
|
|
330
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
331
|
+
"_instructions/just-vibe/references/packs/backend.md": "d14b8d3890c046641ef943e4239bc595cd163049e404c7cf201022597e18cc06",
|
|
332
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
333
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
334
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
335
|
+
"_instructions/just-vibe/skills/backend-idempotency/SKILL.md": "5e3a17df25bb641d48d17eb1df557c8391d0d1995e024931466926bbc52bbd96",
|
|
336
|
+
"contract.md": "fdaf08d7f64404cd3d1ab7d4218bed61c39364d7b94b6e62e393aa620279b3ea",
|
|
337
|
+
"orders.mjs": "f06a2f8ae3a6bf26f7984f49d5557d215476d4202f4e9330fbc9887b7e30c2b5",
|
|
338
|
+
"task.md": "9463a6d5b6e06a9cb661f31f47c975a8c5ca8d2aed48afccbc96dd7c31b77c36"
|
|
339
|
+
},
|
|
340
|
+
"instructionBytes": 2943,
|
|
341
|
+
"executionSeconds": null,
|
|
342
|
+
"tokens": null,
|
|
343
|
+
"cost": null
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"case": "db-migrate",
|
|
347
|
+
"arm": "just-vibe",
|
|
348
|
+
"commands": [
|
|
349
|
+
"db-migrate"
|
|
350
|
+
],
|
|
351
|
+
"status": "passed-fixture",
|
|
352
|
+
"checks": [
|
|
353
|
+
{
|
|
354
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
355
|
+
"pass": true
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"name": "No symlink artifacts",
|
|
359
|
+
"pass": true
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "transactionCompatible",
|
|
363
|
+
"pass": true
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "readyToApply",
|
|
367
|
+
"pass": true
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "existingIndexProvesReady",
|
|
371
|
+
"pass": true
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"modified": [],
|
|
375
|
+
"answerSha256": "097c338c6ded804651f3b3fa7a52fb3eda2ed462e38c0858491902cec8499f05",
|
|
376
|
+
"inputHashes": {
|
|
377
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
378
|
+
"_instructions/just-vibe/references/packs/database.md": "cc6a16e90ea1730d2fe970c25a4f868e7bfb86997e0257c29060c5fe143a18dd",
|
|
379
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
380
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
381
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
382
|
+
"_instructions/just-vibe/skills/db-migrate/SKILL.md": "7d5fff7b52c228c6474e95c5b2a56661b3cb1f9ac49aa0236167d57fa8f88b8b",
|
|
383
|
+
"context.json": "9337b1ee45e4c4bda80b96afdd4e6e0ce96d37028dba923ab2a09bc55118f049",
|
|
384
|
+
"migration.sql": "f9d8a7e7877f9871c9ec97f9243bb0fa00590ec01c3fcdf08cc98a21ceddb996",
|
|
385
|
+
"task.md": "f4a493f09cefa42b8c8aae91465f22a1c7fd9ab56bcc63e2ccd6f4b8f6b9f0ab"
|
|
386
|
+
},
|
|
387
|
+
"instructionBytes": 3032,
|
|
388
|
+
"executionSeconds": null,
|
|
389
|
+
"tokens": null,
|
|
390
|
+
"cost": null
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"case": "db-query",
|
|
394
|
+
"arm": "just-vibe",
|
|
395
|
+
"commands": [
|
|
396
|
+
"db-query"
|
|
397
|
+
],
|
|
398
|
+
"status": "passed-fixture",
|
|
399
|
+
"checks": [
|
|
400
|
+
{
|
|
401
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
402
|
+
"pass": true
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "No symlink artifacts",
|
|
406
|
+
"pass": true
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"name": "correctTotal",
|
|
410
|
+
"pass": true
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "naiveJoinedTotal",
|
|
414
|
+
"pass": true
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "joinInflatesRevenue",
|
|
418
|
+
"pass": true
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
"modified": [],
|
|
422
|
+
"answerSha256": "a79570b8b65e85a3b23fec516fc20d2b63599f82e92eb8b0a0317dfc3cc2006e",
|
|
423
|
+
"inputHashes": {
|
|
424
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
425
|
+
"_instructions/just-vibe/references/packs/database.md": "cc6a16e90ea1730d2fe970c25a4f868e7bfb86997e0257c29060c5fe143a18dd",
|
|
426
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
427
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
428
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
429
|
+
"_instructions/just-vibe/skills/db-query/SKILL.md": "00ef30b2aeb6596e71247444e845eead2a86388793acf6cf17a72f65455938a0",
|
|
430
|
+
"query.sql": "a59d7a519f7a7c1f75852f3fc2f26078ed83c48b9ea6617d86ac8b29aa625c72",
|
|
431
|
+
"rows.json": "0e1935171a2b67dabe3bd8025f7248a8fd0fbf8b9bbce671f0ba946ecd24759b",
|
|
432
|
+
"task.md": "76a8edc1dcf380d714d1a9c47c9b9a5761bb9a7a5d7a8bfebf5b5434092723ca"
|
|
433
|
+
},
|
|
434
|
+
"instructionBytes": 2861,
|
|
435
|
+
"executionSeconds": null,
|
|
436
|
+
"tokens": null,
|
|
437
|
+
"cost": null
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"case": "data-reconcile",
|
|
441
|
+
"arm": "just-vibe",
|
|
442
|
+
"commands": [
|
|
443
|
+
"data-reconcile"
|
|
444
|
+
],
|
|
445
|
+
"status": "passed-fixture",
|
|
446
|
+
"checks": [
|
|
447
|
+
{
|
|
448
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
449
|
+
"pass": true
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "No symlink artifacts",
|
|
453
|
+
"pass": true
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "missingIds",
|
|
457
|
+
"pass": true
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "unexpectedIds",
|
|
461
|
+
"pass": true
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "changedIds",
|
|
465
|
+
"pass": true
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"name": "equalCountsProveParity",
|
|
469
|
+
"pass": true
|
|
470
|
+
}
|
|
471
|
+
],
|
|
472
|
+
"modified": [],
|
|
473
|
+
"answerSha256": "722ad2e44a5309d3242331fa0827c93c5da0e26515a91d18bf60fbbabc391ea4",
|
|
474
|
+
"inputHashes": {
|
|
475
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
476
|
+
"_instructions/just-vibe/references/packs/data.md": "9d0fffd4ada9584a292b3183bd2d9b49a988a01f54f72168d763539af9dfcc13",
|
|
477
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
478
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
479
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
480
|
+
"_instructions/just-vibe/skills/data-reconcile/SKILL.md": "a0d1e47e42372be8ed30aaf5c2cfc4ff2c16b854b60355bce05768efd1af5760",
|
|
481
|
+
"source.json": "01e86de291a88187ececdbd113f23f5998fe514e1397607733771d8a530d77d8",
|
|
482
|
+
"target.json": "7dbc2a126ce1b38244c0839ff7265a7ef0343868f325b69efd0a5a19bfde1a84",
|
|
483
|
+
"task.md": "6a38f9fdef232b707f4ac0ed2132f53232877ebd3f89d17ea0ba08fc33395b95"
|
|
484
|
+
},
|
|
485
|
+
"instructionBytes": 2751,
|
|
486
|
+
"executionSeconds": null,
|
|
487
|
+
"tokens": null,
|
|
488
|
+
"cost": null
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"case": "ml-split",
|
|
492
|
+
"arm": "just-vibe",
|
|
493
|
+
"commands": [
|
|
494
|
+
"ml-split"
|
|
495
|
+
],
|
|
496
|
+
"status": "passed-fixture",
|
|
497
|
+
"checks": [
|
|
498
|
+
{
|
|
499
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
500
|
+
"pass": true
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "No symlink artifacts",
|
|
504
|
+
"pass": true
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "randomRowSplitSupportsFutureClaim",
|
|
508
|
+
"pass": true
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"name": "holdingOutEntitiesAnswersSameQuestion",
|
|
512
|
+
"pass": true
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "universalGapHours",
|
|
516
|
+
"pass": true
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"modified": [],
|
|
520
|
+
"answerSha256": "5d909f3da3b810011372a40839eafde9f25e9f311777c17b8ff7b1492e838fb8",
|
|
521
|
+
"inputHashes": {
|
|
522
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
523
|
+
"_instructions/just-vibe/references/packs/ml-data.md": "bd026503949ec31e41f49b163bd1c18cb3020eb4abe68c0ec59149414556520a",
|
|
524
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
525
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
526
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
527
|
+
"_instructions/just-vibe/skills/ml-split/SKILL.md": "9eab20821ece5a534f0fdb93e733690cf8c3381388634fbd684dbeffd83e0833",
|
|
528
|
+
"task.json": "3e73d6bca849602756b105ccb67627feab27b4dca6c1961d2a0a97f36d5c946e",
|
|
529
|
+
"task.md": "04086c8878a52cc7b2c432d5f1575aae3a477ffbf4cba2fd2c10f3b41efb8118"
|
|
530
|
+
},
|
|
531
|
+
"instructionBytes": 2931,
|
|
532
|
+
"executionSeconds": null,
|
|
533
|
+
"tokens": null,
|
|
534
|
+
"cost": null
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"case": "ml-leakage",
|
|
538
|
+
"arm": "just-vibe",
|
|
539
|
+
"commands": [
|
|
540
|
+
"ml-leakage"
|
|
541
|
+
],
|
|
542
|
+
"status": "passed-fixture",
|
|
543
|
+
"checks": [
|
|
544
|
+
{
|
|
545
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
546
|
+
"pass": true
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "No symlink artifacts",
|
|
550
|
+
"pass": true
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "futureFeatureConfirmed",
|
|
554
|
+
"pass": true
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "sharedOutcomeEventConfirmed",
|
|
558
|
+
"pass": true
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"name": "mandatoryGapHours",
|
|
562
|
+
"pass": true
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"name": "preprocessingLeakageConfirmed",
|
|
566
|
+
"pass": true
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"name": "missingLabelsAreNegative",
|
|
570
|
+
"pass": true
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"modified": [],
|
|
574
|
+
"answerSha256": "32ade296b020057709885f4869abfc28227dc11f0fbfcc0f0c57afedde603930",
|
|
575
|
+
"inputHashes": {
|
|
576
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
577
|
+
"_instructions/just-vibe/references/packs/ml-data.md": "bd026503949ec31e41f49b163bd1c18cb3020eb4abe68c0ec59149414556520a",
|
|
578
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
579
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
580
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
581
|
+
"_instructions/just-vibe/skills/ml-leakage/SKILL.md": "74ddb34c49d6048d3daa0d943077d6ec0e78d480a2147e5ae5646b35a0705f55",
|
|
582
|
+
"task.json": "803817eb6264964714c4d8ac79bff2bc488a6e018098659432729248aad9ecd2",
|
|
583
|
+
"task.md": "8ca885d2794b9fbaa32668f4e50b3b1513df511e45cead9d813bb4468b069815"
|
|
584
|
+
},
|
|
585
|
+
"instructionBytes": 5007,
|
|
586
|
+
"executionSeconds": null,
|
|
587
|
+
"tokens": null,
|
|
588
|
+
"cost": null
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"case": "ml-checkpoint",
|
|
592
|
+
"arm": "just-vibe",
|
|
593
|
+
"commands": [
|
|
594
|
+
"ml-train"
|
|
595
|
+
],
|
|
596
|
+
"status": "passed-fixture",
|
|
597
|
+
"checks": [
|
|
598
|
+
{
|
|
599
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
600
|
+
"pass": true
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"name": "No symlink artifacts",
|
|
604
|
+
"pass": true
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "exactResumeEstablished",
|
|
608
|
+
"pass": true
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "missingRequiredState",
|
|
612
|
+
"pass": true
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "safeClaim",
|
|
616
|
+
"pass": true
|
|
617
|
+
}
|
|
618
|
+
],
|
|
619
|
+
"modified": [],
|
|
620
|
+
"answerSha256": "1979d0f874d4e211a90418f3ce0b704493e3558de24926c7497d1c5d01e1904c",
|
|
621
|
+
"inputHashes": {
|
|
622
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
623
|
+
"_instructions/just-vibe/references/packs/ml-experiments.md": "33b98dc924a6be7ab8bf33ac5f0a704b5a4b27b6811326148a9dc7d4ca2095c8",
|
|
624
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
625
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
626
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
627
|
+
"_instructions/just-vibe/skills/ml-train/SKILL.md": "fdf70daa5f46442207b4e3e9557948f86307d3cae42c0fe87ab17b82d4b11d68",
|
|
628
|
+
"checkpoint.json": "e4781ccd399a3dbfc39977385d2ddcc975e6bdab2448b925f302d3c83b140544",
|
|
629
|
+
"task.md": "b9c64a39c9e79da80e48fe46cfd69685ef1cddea591e3c45c2611156f6415506",
|
|
630
|
+
"training.json": "9ab0131a1c73c1fcf90f5b6fb07b06d05167dc75b545aff48fef2616032e7446"
|
|
631
|
+
},
|
|
632
|
+
"instructionBytes": 3050,
|
|
633
|
+
"executionSeconds": null,
|
|
634
|
+
"tokens": null,
|
|
635
|
+
"cost": null
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"case": "ml-evaluate",
|
|
639
|
+
"arm": "just-vibe",
|
|
640
|
+
"commands": [
|
|
641
|
+
"ml-evaluate"
|
|
642
|
+
],
|
|
643
|
+
"status": "passed-fixture",
|
|
644
|
+
"checks": [
|
|
645
|
+
{
|
|
646
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
647
|
+
"pass": true
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"name": "No symlink artifacts",
|
|
651
|
+
"pass": true
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"name": "tp",
|
|
655
|
+
"pass": true
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "tn",
|
|
659
|
+
"pass": true
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"name": "fp",
|
|
663
|
+
"pass": true
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"name": "fn",
|
|
667
|
+
"pass": true
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "missingPredictionIds",
|
|
671
|
+
"pass": true
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"name": "unknownLabelIds",
|
|
675
|
+
"pass": true
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "scoredCount",
|
|
679
|
+
"pass": true
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"modified": [],
|
|
683
|
+
"answerSha256": "c7939f72bbd41da8788789c87166a551158d3e072d1472d2b172bd379331c056",
|
|
684
|
+
"inputHashes": {
|
|
685
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
686
|
+
"_instructions/just-vibe/references/packs/ml-evaluation.md": "5eaec4eb4675fc4b691ea55f7d84e6d6ee4b6505e4950e452d08d20faa71dbf3",
|
|
687
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
688
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
689
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
690
|
+
"_instructions/just-vibe/skills/ml-evaluate/SKILL.md": "529a595585cc3b66d4dfbc9a283b35ba0f49dc25e6fca16874cc57baed996336",
|
|
691
|
+
"labels.json": "d492d78d589b9294f1ceef3147042af9c654c5e349c1018965f1eab6bfa4c06d",
|
|
692
|
+
"predictions.json": "af72f4af2275aa7457fad684b59fd612fbf4a0c59c1b9887ff2a9f80ae3dd05e",
|
|
693
|
+
"task.md": "bcc9c207871dad55698e1529bd08abe8b3af0a5e02d128cc861bd7aef534566e"
|
|
694
|
+
},
|
|
695
|
+
"instructionBytes": 2911,
|
|
696
|
+
"executionSeconds": null,
|
|
697
|
+
"tokens": null,
|
|
698
|
+
"cost": null
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"case": "ml-parity",
|
|
702
|
+
"arm": "just-vibe",
|
|
703
|
+
"commands": [
|
|
704
|
+
"ml-parity"
|
|
705
|
+
],
|
|
706
|
+
"status": "passed-fixture",
|
|
707
|
+
"checks": [
|
|
708
|
+
{
|
|
709
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
710
|
+
"pass": true
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"name": "No symlink artifacts",
|
|
714
|
+
"pass": true
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "sameModel",
|
|
718
|
+
"pass": true
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"name": "firstDivergence",
|
|
722
|
+
"pass": true
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "pureNumericalToleranceIssue",
|
|
726
|
+
"pass": true
|
|
727
|
+
}
|
|
728
|
+
],
|
|
729
|
+
"modified": [],
|
|
730
|
+
"answerSha256": "6b7223b22c8de1977edc609b996fb555e4c95451b315f6ef1e798ddca2d89b78",
|
|
731
|
+
"inputHashes": {
|
|
732
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
733
|
+
"_instructions/just-vibe/references/packs/ml-deployment.md": "5c574626fcb48aea18aac64d858aef0d95b1e2134b9afe9dff9f45f5bca4977b",
|
|
734
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
735
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
736
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
737
|
+
"_instructions/just-vibe/skills/ml-parity/SKILL.md": "9e1e76a318d743f97c44f8c297955c30e59d3d728ae944320f5d4b70ec119caf",
|
|
738
|
+
"serving.json": "656d5bbeffbfdbadf71784eab3bb8efae4bf1504abaf1d9d5a1343d507b5654a",
|
|
739
|
+
"task.md": "686d3fe34eefa4022b753a3c364a5f3571e5d8b3a9a532f9e749a5b6b8f80335",
|
|
740
|
+
"training.json": "d8e000b478751160f18624c430e30348d62a40bfc320aecad61b03c3e02ae8c4"
|
|
741
|
+
},
|
|
742
|
+
"instructionBytes": 2824,
|
|
743
|
+
"executionSeconds": null,
|
|
744
|
+
"tokens": null,
|
|
745
|
+
"cost": null
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"case": "rag-boundary",
|
|
749
|
+
"arm": "just-vibe",
|
|
750
|
+
"commands": [
|
|
751
|
+
"llm-rag",
|
|
752
|
+
"llm-injection"
|
|
753
|
+
],
|
|
754
|
+
"status": "passed-fixture",
|
|
755
|
+
"checks": [
|
|
756
|
+
{
|
|
757
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
758
|
+
"pass": true
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"name": "No symlink artifacts",
|
|
762
|
+
"pass": true
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "refundDays",
|
|
766
|
+
"pass": true
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"name": "citationId",
|
|
770
|
+
"pass": true
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "instructionFromDocumentFollowed",
|
|
774
|
+
"pass": true
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"name": "unsupportedQuestionAnswer",
|
|
778
|
+
"pass": true
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"modified": [],
|
|
782
|
+
"answerSha256": "edf54449ad20a7c74d5909d1e8e337b0e1f2aba1aa6ea231d1656aa94d2bab79",
|
|
783
|
+
"inputHashes": {
|
|
784
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
785
|
+
"_instructions/just-vibe/references/packs/llm.md": "c9ff63693c69ffbe5c18a8c6c87517b742168244d761f080a1e9122099027fc3",
|
|
786
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
787
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
788
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
789
|
+
"_instructions/just-vibe/skills/llm-injection/SKILL.md": "33fd329800bb31a47960b3e12fabe95cd9d923d3bac4734479384cdd4ef75bf5",
|
|
790
|
+
"_instructions/just-vibe/skills/llm-rag/SKILL.md": "b9de8f745f64001a0ee054f1c3f5035213d2cb8f510029a05f2d3e112e2ede10",
|
|
791
|
+
"documents.json": "edfcfbc22549ae54f57e8fa63ca4376f8f345f1ff94a62c2026a482a1f3c8bf3",
|
|
792
|
+
"query.json": "6cbd92286ff6e40fd4463f99ce97df003ebec1c9cab189ca1a4756dc4d536db8",
|
|
793
|
+
"task.md": "99086984a3fbc8bd9ff8fd4aa955e1651c60b8a7641094084c90987f0795abef"
|
|
794
|
+
},
|
|
795
|
+
"instructionBytes": 5712,
|
|
796
|
+
"executionSeconds": null,
|
|
797
|
+
"tokens": null,
|
|
798
|
+
"cost": null
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"case": "regression-test",
|
|
802
|
+
"arm": "just-vibe",
|
|
803
|
+
"commands": [
|
|
804
|
+
"test-regression"
|
|
805
|
+
],
|
|
806
|
+
"status": "passed-fixture",
|
|
807
|
+
"checks": [
|
|
808
|
+
{
|
|
809
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
810
|
+
"pass": true
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"name": "No symlink artifacts",
|
|
814
|
+
"pass": true
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"name": "Independent behavioral assertions",
|
|
818
|
+
"pass": true
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"modified": [
|
|
822
|
+
"regression.test.mjs"
|
|
823
|
+
],
|
|
824
|
+
"answerSha256": "8dd8fc6a6f48e22d5c5cace92e7bea7b463ff08591c41158b81dc6c90c15bc56",
|
|
825
|
+
"inputHashes": {
|
|
826
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
827
|
+
"_instructions/just-vibe/references/packs/testing.md": "2b12aa062505e99c812d9e8b4e11b068504761551c469bea152b07a17f1cdf4f",
|
|
828
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
829
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
830
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
831
|
+
"_instructions/just-vibe/skills/test-regression/SKILL.md": "249b6c659df959b9fd9f6e22da42952bf60e1c7c6386c3b3682ec72fb7c37497",
|
|
832
|
+
"checkout.mjs": "f726072f168242f16fc1dfae5c630c24401f5d581312a7e2f71a51b0de3bcecc",
|
|
833
|
+
"contract.md": "04efef281238f5088c4312f1f5847a04532526efc8dba4131123fc03f6b661ea",
|
|
834
|
+
"task.md": "eb5745a922ce5737c637b30384c11ce5ee6fcc8259e07f0cbdf571e92579301c"
|
|
835
|
+
},
|
|
836
|
+
"instructionBytes": 2752,
|
|
837
|
+
"executionSeconds": null,
|
|
838
|
+
"tokens": null,
|
|
839
|
+
"cost": null
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"case": "authz",
|
|
843
|
+
"arm": "just-vibe",
|
|
844
|
+
"commands": [
|
|
845
|
+
"security-authz",
|
|
846
|
+
"security-fix"
|
|
847
|
+
],
|
|
848
|
+
"status": "passed-fixture",
|
|
849
|
+
"checks": [
|
|
850
|
+
{
|
|
851
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
852
|
+
"pass": true
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"name": "No symlink artifacts",
|
|
856
|
+
"pass": true
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"name": "Independent behavioral assertions",
|
|
860
|
+
"pass": true
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"modified": [
|
|
864
|
+
"access.mjs"
|
|
865
|
+
],
|
|
866
|
+
"answerSha256": "8a884e0f0771cdbef320342bb25eb4388009692f9b8a019ac25ea451d4e3cb5c",
|
|
867
|
+
"inputHashes": {
|
|
868
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
869
|
+
"_instructions/just-vibe/references/packs/security.md": "22c0d6586ae83efd12ad92f68676c7c20b3d4ee0bd75ceec90c7df85f5467b62",
|
|
870
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
871
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
872
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
873
|
+
"_instructions/just-vibe/skills/security-authz/SKILL.md": "203a1881b47481cf80c251c6f880487a2a66de9282da27486ae503403601edf0",
|
|
874
|
+
"_instructions/just-vibe/skills/security-fix/SKILL.md": "3d78f0bb50294006af2ecdf3aa6799b8e30198b78fd25b1c487b09b52a960a99",
|
|
875
|
+
"access.mjs": "203614400dd1748daee4b6bc90c1f2057c7f6f3b3e827d55909883965ac12ae8",
|
|
876
|
+
"task.md": "86cf53f4772879ac89e64dc1c97f59b2219eb344beb3c0848c48c9f5b1dd8c56"
|
|
877
|
+
},
|
|
878
|
+
"instructionBytes": 5781,
|
|
879
|
+
"executionSeconds": null,
|
|
880
|
+
"tokens": null,
|
|
881
|
+
"cost": null
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"case": "ops-logs",
|
|
885
|
+
"arm": "just-vibe",
|
|
886
|
+
"commands": [
|
|
887
|
+
"ops-logs"
|
|
888
|
+
],
|
|
889
|
+
"status": "passed-fixture",
|
|
890
|
+
"checks": [
|
|
891
|
+
{
|
|
892
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
893
|
+
"pass": true
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"name": "No symlink artifacts",
|
|
897
|
+
"pass": true
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"name": "eventOrder",
|
|
901
|
+
"pass": true
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"name": "deploymentProvenRootCause",
|
|
905
|
+
"pass": true
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"name": "missingWorkerLogProvesNoWork",
|
|
909
|
+
"pass": true
|
|
910
|
+
}
|
|
911
|
+
],
|
|
912
|
+
"modified": [],
|
|
913
|
+
"answerSha256": "d33462d1afea1e90641edaab44ab503c92b2e8f9c061459c895114b4f2c29891",
|
|
914
|
+
"inputHashes": {
|
|
915
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
916
|
+
"_instructions/just-vibe/references/packs/operations.md": "9b3ebc18e9099d2a4f78bc03967e30774edcab4f2e11fb455d83dadc6c148885",
|
|
917
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
918
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
919
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
920
|
+
"_instructions/just-vibe/skills/ops-logs/SKILL.md": "918edde9e8893a98e88e99293ff51c67286b27f8320a4a506d8df4f3953b5a35",
|
|
921
|
+
"context.json": "6889cfb3b56956bfa23b89826b94afe2c39f6ef5a5a638cf7242ad28f92f66b5",
|
|
922
|
+
"events.json": "8b819ab7f48b80162692a1d310576eccfb3a40d9ec173b7c2d3d8dbee951a7be",
|
|
923
|
+
"task.md": "145855ae026aad7f139a1b0d1effb25ad2f105ed275facfc11cffa31bb06ebc2"
|
|
924
|
+
},
|
|
925
|
+
"instructionBytes": 2735,
|
|
926
|
+
"executionSeconds": null,
|
|
927
|
+
"tokens": null,
|
|
928
|
+
"cost": null
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"case": "arch-events",
|
|
932
|
+
"arm": "just-vibe",
|
|
933
|
+
"commands": [
|
|
934
|
+
"arch-event-flow"
|
|
935
|
+
],
|
|
936
|
+
"status": "passed-fixture",
|
|
937
|
+
"checks": [
|
|
938
|
+
{
|
|
939
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
940
|
+
"pass": true
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "No symlink artifacts",
|
|
944
|
+
"pass": true
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"name": "lostEventPossible",
|
|
948
|
+
"pass": true
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"name": "duplicateEffectPossible",
|
|
952
|
+
"pass": true
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"name": "exactlyOnceEstablished",
|
|
956
|
+
"pass": true
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"modified": [],
|
|
960
|
+
"answerSha256": "f24b1482c930e57b11c0fef9d9ada21b8ed99c14233c4bef45676513daeea8ce",
|
|
961
|
+
"inputHashes": {
|
|
962
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
963
|
+
"_instructions/just-vibe/references/packs/architecture.md": "4ea7deb8d7d9d69d3654b2d9082218a49d5452f20a23b776c79a4819390a1988",
|
|
964
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
965
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
966
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
967
|
+
"_instructions/just-vibe/skills/arch-event-flow/SKILL.md": "df6f959688271acb0ced6a53ec9cf44e4ee4820579a6ae28248baa621f8dd1e1",
|
|
968
|
+
"flow.json": "3818c53d8c6ba7267b0e6f85702880a19be71e01a6081eb91d50346ef2047883",
|
|
969
|
+
"task.md": "8df1bf32597c93f1fb6d4b2722a5f5ef582e9ca1dcf6fb5f19dc5c2bcfb34a20"
|
|
970
|
+
},
|
|
971
|
+
"instructionBytes": 2770,
|
|
972
|
+
"executionSeconds": null,
|
|
973
|
+
"tokens": null,
|
|
974
|
+
"cost": null
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"case": "decision-matrix",
|
|
978
|
+
"arm": "just-vibe",
|
|
979
|
+
"commands": [
|
|
980
|
+
"decision-matrix"
|
|
981
|
+
],
|
|
982
|
+
"status": "passed-fixture",
|
|
983
|
+
"checks": [
|
|
984
|
+
{
|
|
985
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
986
|
+
"pass": true
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "No symlink artifacts",
|
|
990
|
+
"pass": true
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"name": "feasibleOptions",
|
|
994
|
+
"pass": true
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"name": "unknownOptions",
|
|
998
|
+
"pass": true
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"name": "recommendedOption",
|
|
1002
|
+
"pass": true
|
|
1003
|
+
}
|
|
1004
|
+
],
|
|
1005
|
+
"modified": [],
|
|
1006
|
+
"answerSha256": "330fd61770739d4e3ea1cefe8e39b8104619020cc93ca0eedcafa11613646ea9",
|
|
1007
|
+
"inputHashes": {
|
|
1008
|
+
"_instructions/just-vibe/references/execution.md": "b34788418643c8e2fb967466977066e531d93113070558cbc85d6234b22770f9",
|
|
1009
|
+
"_instructions/just-vibe/references/packs/decisions.md": "ea3121f3e1d3404da6a27c6b2cb1623a5845639e9d7bd29c287b7829c9d2ca21",
|
|
1010
|
+
"_instructions/just-vibe/references/runtime.md": "2a181bd0973efedc2f3131974f4b4665d898977a30c0ca410d199b2f50df8ff1",
|
|
1011
|
+
"_instructions/just-vibe/references/teach-test.md": "a5bad292ac5933da1b284b48c4ab62f295b33303133640c1b5dd0a2a0b92da1c",
|
|
1012
|
+
"_instructions/just-vibe/references/teaching.md": "59404e72b26aada3d10c4c914552ae407550ae401d2bec9dc9dc15c06b2fac0a",
|
|
1013
|
+
"_instructions/just-vibe/skills/decision-matrix/SKILL.md": "ec1a376922f18bdd59692ea0eae2d9f9e4f0ae89e978bbf2999384196a839b87",
|
|
1014
|
+
"decision.json": "f2bccdbbb7f3de5fe6eaac49a1b8a0f731a4a0067f1805914a39844b7d19b946",
|
|
1015
|
+
"task.md": "829d938ea21939eb397c29493299437ae4fca4e499e4db3fb1599a7fdf7fd34a"
|
|
1016
|
+
},
|
|
1017
|
+
"instructionBytes": 2684,
|
|
1018
|
+
"executionSeconds": null,
|
|
1019
|
+
"tokens": null,
|
|
1020
|
+
"cost": null
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"case": "react-race",
|
|
1024
|
+
"arm": "baseline",
|
|
1025
|
+
"commands": [
|
|
1026
|
+
"react-async"
|
|
1027
|
+
],
|
|
1028
|
+
"status": "passed-fixture",
|
|
1029
|
+
"checks": [
|
|
1030
|
+
{
|
|
1031
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1032
|
+
"pass": true
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"name": "No symlink artifacts",
|
|
1036
|
+
"pass": true
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"name": "Independent behavioral assertions",
|
|
1040
|
+
"pass": true
|
|
1041
|
+
}
|
|
1042
|
+
],
|
|
1043
|
+
"modified": [
|
|
1044
|
+
"loader.mjs"
|
|
1045
|
+
],
|
|
1046
|
+
"answerSha256": "2a6dd7a2307ad0f227ee8cbcadda865035c1d80fb202a8c9b48068d62df1568b",
|
|
1047
|
+
"inputHashes": {
|
|
1048
|
+
"AccountPanel.jsx": "9fcc4cae8acb195efe933cc3a4546d69617083283f70869d810b21680007f501",
|
|
1049
|
+
"loader.mjs": "e4f1f803a82f271288c5babafcc5e8bd889d13f8efa486a9e7ce023e75ce324b",
|
|
1050
|
+
"task.md": "dd20a2a1c1fd9c8c4de431874ac521423e78a17217332e9566fe64ebdcea3699"
|
|
1051
|
+
},
|
|
1052
|
+
"instructionBytes": 0,
|
|
1053
|
+
"executionSeconds": null,
|
|
1054
|
+
"tokens": null,
|
|
1055
|
+
"cost": null
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"case": "db-migrate",
|
|
1059
|
+
"arm": "baseline",
|
|
1060
|
+
"commands": [
|
|
1061
|
+
"db-migrate"
|
|
1062
|
+
],
|
|
1063
|
+
"status": "passed-fixture",
|
|
1064
|
+
"checks": [
|
|
1065
|
+
{
|
|
1066
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1067
|
+
"pass": true
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"name": "No symlink artifacts",
|
|
1071
|
+
"pass": true
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"name": "transactionCompatible",
|
|
1075
|
+
"pass": true
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"name": "readyToApply",
|
|
1079
|
+
"pass": true
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"name": "existingIndexProvesReady",
|
|
1083
|
+
"pass": true
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"modified": [],
|
|
1087
|
+
"answerSha256": "fac51a49ebf6818e09de2d49ceeb55323d6c95b393915f21f972a301318af6f6",
|
|
1088
|
+
"inputHashes": {
|
|
1089
|
+
"context.json": "9337b1ee45e4c4bda80b96afdd4e6e0ce96d37028dba923ab2a09bc55118f049",
|
|
1090
|
+
"migration.sql": "f9d8a7e7877f9871c9ec97f9243bb0fa00590ec01c3fcdf08cc98a21ceddb996",
|
|
1091
|
+
"task.md": "f4a493f09cefa42b8c8aae91465f22a1c7fd9ab56bcc63e2ccd6f4b8f6b9f0ab"
|
|
1092
|
+
},
|
|
1093
|
+
"instructionBytes": 0,
|
|
1094
|
+
"executionSeconds": null,
|
|
1095
|
+
"tokens": null,
|
|
1096
|
+
"cost": null
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"case": "ml-leakage",
|
|
1100
|
+
"arm": "baseline",
|
|
1101
|
+
"commands": [
|
|
1102
|
+
"ml-leakage"
|
|
1103
|
+
],
|
|
1104
|
+
"status": "passed-fixture",
|
|
1105
|
+
"checks": [
|
|
1106
|
+
{
|
|
1107
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1108
|
+
"pass": true
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"name": "No symlink artifacts",
|
|
1112
|
+
"pass": true
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"name": "futureFeatureConfirmed",
|
|
1116
|
+
"pass": true
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "sharedOutcomeEventConfirmed",
|
|
1120
|
+
"pass": true
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"name": "mandatoryGapHours",
|
|
1124
|
+
"pass": true
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "preprocessingLeakageConfirmed",
|
|
1128
|
+
"pass": true
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "missingLabelsAreNegative",
|
|
1132
|
+
"pass": true
|
|
1133
|
+
}
|
|
1134
|
+
],
|
|
1135
|
+
"modified": [],
|
|
1136
|
+
"answerSha256": "2e909357ccabe9d0e8eb4ba441304ceaaad7e4a0d2f7672b97b32c52e4f320d1",
|
|
1137
|
+
"inputHashes": {
|
|
1138
|
+
"task.json": "803817eb6264964714c4d8ac79bff2bc488a6e018098659432729248aad9ecd2",
|
|
1139
|
+
"task.md": "8ca885d2794b9fbaa32668f4e50b3b1513df511e45cead9d813bb4468b069815"
|
|
1140
|
+
},
|
|
1141
|
+
"instructionBytes": 0,
|
|
1142
|
+
"executionSeconds": null,
|
|
1143
|
+
"tokens": null,
|
|
1144
|
+
"cost": null
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"case": "react-race",
|
|
1148
|
+
"arm": "ecc",
|
|
1149
|
+
"commands": [
|
|
1150
|
+
"react-async"
|
|
1151
|
+
],
|
|
1152
|
+
"status": "passed-fixture",
|
|
1153
|
+
"checks": [
|
|
1154
|
+
{
|
|
1155
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1156
|
+
"pass": true
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"name": "No symlink artifacts",
|
|
1160
|
+
"pass": true
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"name": "Independent behavioral assertions",
|
|
1164
|
+
"pass": true
|
|
1165
|
+
}
|
|
1166
|
+
],
|
|
1167
|
+
"modified": [
|
|
1168
|
+
"loader.mjs"
|
|
1169
|
+
],
|
|
1170
|
+
"answerSha256": "e1f06754c475f926612bcd7b2a72f91dba48343a99c3b9cfa55471a0c6156544",
|
|
1171
|
+
"inputHashes": {
|
|
1172
|
+
"AccountPanel.jsx": "9fcc4cae8acb195efe933cc3a4546d69617083283f70869d810b21680007f501",
|
|
1173
|
+
"_instructions/ecc.md": "f3208d44a5d553038c42e046cec4dc16e4a3d90a9dbf931f883a2e21919a64a9",
|
|
1174
|
+
"loader.mjs": "e4f1f803a82f271288c5babafcc5e8bd889d13f8efa486a9e7ce023e75ce324b",
|
|
1175
|
+
"task.md": "dd20a2a1c1fd9c8c4de431874ac521423e78a17217332e9566fe64ebdcea3699"
|
|
1176
|
+
},
|
|
1177
|
+
"instructionBytes": 11466,
|
|
1178
|
+
"executionSeconds": null,
|
|
1179
|
+
"tokens": null,
|
|
1180
|
+
"cost": null
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"case": "db-migrate",
|
|
1184
|
+
"arm": "ecc",
|
|
1185
|
+
"commands": [
|
|
1186
|
+
"db-migrate"
|
|
1187
|
+
],
|
|
1188
|
+
"status": "passed-fixture",
|
|
1189
|
+
"checks": [
|
|
1190
|
+
{
|
|
1191
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1192
|
+
"pass": true
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"name": "No symlink artifacts",
|
|
1196
|
+
"pass": true
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"name": "transactionCompatible",
|
|
1200
|
+
"pass": true
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"name": "readyToApply",
|
|
1204
|
+
"pass": true
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "existingIndexProvesReady",
|
|
1208
|
+
"pass": true
|
|
1209
|
+
}
|
|
1210
|
+
],
|
|
1211
|
+
"modified": [],
|
|
1212
|
+
"answerSha256": "652012f8dba94bfc7faa744fa904b4637f9a66631d141282ca12ce76bd18acad",
|
|
1213
|
+
"inputHashes": {
|
|
1214
|
+
"_instructions/ecc.md": "ad7f2f04ca03e592a16e2a539d8c6e90bf4e08892408820ce99a53e9d07775de",
|
|
1215
|
+
"context.json": "9337b1ee45e4c4bda80b96afdd4e6e0ce96d37028dba923ab2a09bc55118f049",
|
|
1216
|
+
"migration.sql": "f9d8a7e7877f9871c9ec97f9243bb0fa00590ec01c3fcdf08cc98a21ceddb996",
|
|
1217
|
+
"task.md": "f4a493f09cefa42b8c8aae91465f22a1c7fd9ab56bcc63e2ccd6f4b8f6b9f0ab"
|
|
1218
|
+
},
|
|
1219
|
+
"instructionBytes": 11957,
|
|
1220
|
+
"executionSeconds": null,
|
|
1221
|
+
"tokens": null,
|
|
1222
|
+
"cost": null
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"case": "ml-leakage",
|
|
1226
|
+
"arm": "ecc",
|
|
1227
|
+
"commands": [
|
|
1228
|
+
"ml-leakage"
|
|
1229
|
+
],
|
|
1230
|
+
"status": "passed-fixture",
|
|
1231
|
+
"checks": [
|
|
1232
|
+
{
|
|
1233
|
+
"name": "Preserve input and instruction files outside allowed writes",
|
|
1234
|
+
"pass": true
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"name": "No symlink artifacts",
|
|
1238
|
+
"pass": true
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "futureFeatureConfirmed",
|
|
1242
|
+
"pass": true
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"name": "sharedOutcomeEventConfirmed",
|
|
1246
|
+
"pass": true
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"name": "mandatoryGapHours",
|
|
1250
|
+
"pass": true
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"name": "preprocessingLeakageConfirmed",
|
|
1254
|
+
"pass": true
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"name": "missingLabelsAreNegative",
|
|
1258
|
+
"pass": true
|
|
1259
|
+
}
|
|
1260
|
+
],
|
|
1261
|
+
"modified": [],
|
|
1262
|
+
"answerSha256": "e1f3f53bc8efa2588ee38fa7f6cc9ccec64c7c85c259c375df586fd0c831c6ff",
|
|
1263
|
+
"inputHashes": {
|
|
1264
|
+
"_instructions/ecc.md": "c505be5fccea9d067775b86fed76bc4b84e63e17090855ac135694adbc83a7f8",
|
|
1265
|
+
"task.json": "803817eb6264964714c4d8ac79bff2bc488a6e018098659432729248aad9ecd2",
|
|
1266
|
+
"task.md": "8ca885d2794b9fbaa32668f4e50b3b1513df511e45cead9d813bb4468b069815"
|
|
1267
|
+
},
|
|
1268
|
+
"instructionBytes": 10253,
|
|
1269
|
+
"executionSeconds": null,
|
|
1270
|
+
"tokens": null,
|
|
1271
|
+
"cost": null
|
|
1272
|
+
}
|
|
1273
|
+
]
|
|
1274
|
+
}
|