substrate-kernel 0.0.1__tar.gz → 1.0.0__tar.gz
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.
- substrate_kernel-1.0.0/.github/ISSUE_TEMPLATE/bug_report.yml +17 -0
- substrate_kernel-1.0.0/.github/ISSUE_TEMPLATE/config.yml +1 -0
- substrate_kernel-1.0.0/.github/ISSUE_TEMPLATE/feature.yml +10 -0
- substrate_kernel-1.0.0/.github/PULL_REQUEST_TEMPLATE.md +7 -0
- substrate_kernel-1.0.0/.github/workflows/ci.yml +48 -0
- substrate_kernel-1.0.0/.gitignore +41 -0
- substrate_kernel-1.0.0/CHANGELOG.md +14 -0
- substrate_kernel-1.0.0/CONTRIBUTING.md +83 -0
- substrate_kernel-1.0.0/Dockerfile.arena +31 -0
- substrate_kernel-1.0.0/LICENSE +202 -0
- substrate_kernel-1.0.0/PKG-INFO +211 -0
- substrate_kernel-1.0.0/README.md +170 -0
- substrate_kernel-1.0.0/SECURITY.md +11 -0
- substrate_kernel-1.0.0/conftest.py +23 -0
- substrate_kernel-1.0.0/demo.sh +38 -0
- substrate_kernel-1.0.0/docs/README.md +30 -0
- substrate_kernel-1.0.0/docs/adding-a-topology.md +161 -0
- substrate_kernel-1.0.0/docs/api.md +708 -0
- substrate_kernel-1.0.0/docs/application-catalogue.md +72 -0
- substrate_kernel-1.0.0/docs/benchmarking-design-round1.md +134 -0
- substrate_kernel-1.0.0/docs/benchmarking-design-round2.md +118 -0
- substrate_kernel-1.0.0/docs/benchmarking-glossary.md +50 -0
- substrate_kernel-1.0.0/docs/benchmarking-preregistration-template.md +87 -0
- substrate_kernel-1.0.0/docs/cockpit-design-round1.md +94 -0
- substrate_kernel-1.0.0/docs/demo.md +252 -0
- substrate_kernel-1.0.0/docs/director-framing-round1.md +99 -0
- substrate_kernel-1.0.0/docs/interactive-agent.md +113 -0
- substrate_kernel-1.0.0/docs/precursor-application-ideas.md +121 -0
- substrate_kernel-1.0.0/docs/proof/substrate_proof.py +282 -0
- substrate_kernel-1.0.0/docs/replay.md +27 -0
- substrate_kernel-1.0.0/docs/schema-evolution.md +40 -0
- substrate_kernel-1.0.0/docs/specs/design_spec/draft1.md +1587 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/history/README.md +3 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/history/v14_revision.md +112 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/history/v8.md +344 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/substrate_v14_kernel.py +246 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/v15.md +1067 -0
- substrate_kernel-1.0.0/docs/specs/kernel_spec/v16_reconciliation_note.md +40 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/draft7.md +854 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/draft7_amendment_A1_replay_3b.md +64 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/draft7_amendment_A2_nperf1.md +38 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/draft7_amendment_A3.md +54 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/README.md +3 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft1_critique.md +336 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft2.md +240 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft3.md +320 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft4.md +347 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft5.md +353 -0
- substrate_kernel-1.0.0/docs/specs/product_spec/history/draft6.md +363 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/draft5.md +1120 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/draft5_amendment_A1.md +30 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/history/README.md +3 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/history/draft1.md +231 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/history/draft2.md +566 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/history/draft3.md +630 -0
- substrate_kernel-1.0.0/docs/specs/technical_spec/history/draft4.md +661 -0
- substrate_kernel-1.0.0/docs/substrate-as-a-tool.md +229 -0
- substrate_kernel-1.0.0/docs/swebench-assay-roadmap.md +72 -0
- substrate_kernel-1.0.0/docs/swebench-bridge-mapping.md +336 -0
- substrate_kernel-1.0.0/docs/swebench-solver-design.md +271 -0
- substrate_kernel-1.0.0/docs/tool-loop-agent.md +235 -0
- substrate_kernel-1.0.0/docs/tool-loop-futures.md +174 -0
- substrate_kernel-1.0.0/docs/tool-loop-tool-suite.md +88 -0
- substrate_kernel-1.0.0/docs/tool-suite-audit-round1.md +84 -0
- substrate_kernel-1.0.0/docs/tutorial.md +265 -0
- substrate_kernel-1.0.0/docs/ui-design-handoff.md +413 -0
- substrate_kernel-1.0.0/docs/walkthroughs/README.md +166 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/README.md +18 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r1/events-000001.open.jsonl +27 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r1/manifest.json +1 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r2/events-000001.open.jsonl +43 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r2/manifest.json +1 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r3/events-000001.open.jsonl +7 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r3/manifest.json +1 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r3-inner/events-000001.open.jsonl +29 -0
- substrate_kernel-1.0.0/docs/walkthroughs/records/r3-inner/manifest.json +1 -0
- substrate_kernel-1.0.0/process/BLACKBOARD.md +456 -0
- substrate_kernel-1.0.0/process/KIT_DIARY.md +510 -0
- substrate_kernel-1.0.0/process/PHASE2.md +92 -0
- substrate_kernel-1.0.0/process/RESEARCH.md +723 -0
- substrate_kernel-1.0.0/process/WORKING_AGREEMENT.md +181 -0
- substrate_kernel-1.0.0/process/agency_results/agency-20260722-211105.jsonl +2 -0
- substrate_kernel-1.0.0/process/agency_results/records/llama3.2-1b__default__t0.record/events-000001.open.jsonl +6 -0
- substrate_kernel-1.0.0/process/agency_results/records/llama3.2-1b__default__t0.record/manifest.json +1 -0
- substrate_kernel-1.0.0/process/archive/README.md +33 -0
- substrate_kernel-1.0.0/process/assay_container/django__django-10914/preds_assay-django__django-10914-9085171bc8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_container/matplotlib__matplotlib-18869/preds_assay-matplotlib__matplotlib-18869-2917ce359d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_container/pallets__flask-4045/preds_assay-pallets__flask-4045-5389372d6f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/README.md +18 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-12907/preds_assay-astropy__astropy-12907-ff5c053367.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-14182/preds_assay-astropy__astropy-14182-3849ca694a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-14365/preds_assay-astropy__astropy-14365-36101ed8d2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-14365/preds_assay-astropy__astropy-14365-4cb4f3e49e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-14995/preds_assay-astropy__astropy-14995-8931242d50.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-6938/preds_assay-astropy__astropy-6938-3d25f79286.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-7746/preds_assay-astropy__astropy-7746-69e3e27c3d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/astropy__astropy-7746/preds_assay-astropy__astropy-7746-7fd51bf7cb.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-10914/preds_assay-django__django-10914-9085171bc8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-10924/preds_assay-django__django-10924-e953f3efea.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11001/preds_assay-django__django-11001-0bc4997a61.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11019/preds_assay-django__django-11019-bc0b8858d7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11039/preds_assay-django__django-11039-e4ee930b21.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11049/preds_assay-django__django-11049-603347cc29.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11099/preds_assay-django__django-11099-02fa07182a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11133/preds_assay-django__django-11133-9c8114eb04.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11179/preds_assay-django__django-11179-788c9a0714.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11283/preds_assay-django__django-11283-79a2564276.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11422/preds_assay-django__django-11422-5ba7b1a969.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11564/preds_assay-django__django-11564-1f6a02ff2d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11583/preds_assay-django__django-11583-de5336da47.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11620/preds_assay-django__django-11620-c44c5c8dec.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11630/preds_assay-django__django-11630-047d7ef448.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11742/preds_assay-django__django-11742-33587d664c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11797/preds_assay-django__django-11797-43f1dc6971.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11815/preds_assay-django__django-11815-e530a357a6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11848/preds_assay-django__django-11848-0ed9a787ff.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11905/preds_assay-django__django-11905-b0c6954bf5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11910/preds_assay-django__django-11910-a10d24116f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-11999/preds_assay-django__django-11999-b6be8a724b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12113/preds_assay-django__django-12113-364679c3f3.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12125/preds_assay-django__django-12125-19700c0f49.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12184/preds_assay-django__django-12184-e7db095cba.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12284/preds_assay-django__django-12284-5c6355ec2f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12286/preds_assay-django__django-12286-a71220fe61.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12308/preds_assay-django__django-12308-783b572132.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12453/preds_assay-django__django-12453-433f72194d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12470/preds_assay-django__django-12470-32d5092a8a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12497/preds_assay-django__django-12497-3f81816ad2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12589/preds_assay-django__django-12589-adf8946c6a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12700/preds_assay-django__django-12700-18ca58f9d9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12708/preds_assay-django__django-12708-5a7af57409.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12747/preds_assay-django__django-12747-9f84b8a4d5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12856/preds_assay-django__django-12856-0462619c18.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12908/preds_assay-django__django-12908-c855eb218c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12915/preds_assay-django__django-12915-52ccdf22f9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-12983/preds_assay-django__django-12983-033aec504f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13028/preds_assay-django__django-13028-e5e1d72324.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13033/preds_assay-django__django-13033-d60d0b9c0d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13158/preds_assay-django__django-13158-96e0da19e9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13220/preds_assay-django__django-13220-5881d71101.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13230/preds_assay-django__django-13230-759c912a41.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13265/preds_assay-django__django-13265-217c6cd9a1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13315/preds_assay-django__django-13315-bfaa0f1d85.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13321/preds_assay-django__django-13321-2d82e2397b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13401/preds_assay-django__django-13401-35f966b5e5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13447/preds_assay-django__django-13447-4a9af1eab0.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13448/preds_assay-django__django-13448-998771ed3d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13551/preds_assay-django__django-13551-03d4969e3c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13590/preds_assay-django__django-13590-7334a901a3.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13658/preds_assay-django__django-13658-6f01e93ddf.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13660/preds_assay-django__django-13660-077bb6cc99.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13710/preds_assay-django__django-13710-6362a586d8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13757/preds_assay-django__django-13757-5a9932cb18.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13768/preds_assay-django__django-13768-3bc2c37ec2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13925/preds_assay-django__django-13925-24f36b408c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13933/preds_assay-django__django-13933-1b8674eb3a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-13964/preds_assay-django__django-13964-ac59e7f41e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14016/preds_assay-django__django-14016-4a7c6e5e98.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14017/preds_assay-django__django-14017-07a4797739.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14155/preds_assay-django__django-14155-cf2be8c0e2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14238/preds_assay-django__django-14238-12f7642faf.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14382/preds_assay-django__django-14382-a81b350061.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14534/preds_assay-django__django-14534-436c444fb6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14580/preds_assay-django__django-14580-d9e6625837.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14608/preds_assay-django__django-14608-53d9cd7d4d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14667/preds_assay-django__django-14667-e93b55f4b5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14672/preds_assay-django__django-14672-fe795532e5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14730/preds_assay-django__django-14730-1d255e3b99.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14752/preds_assay-django__django-14752-7469ffaf42.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14787/preds_assay-django__django-14787-439c671fee.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14855/preds_assay-django__django-14855-05bab04031.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14915/preds_assay-django__django-14915-d003c2f983.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14997/preds_assay-django__django-14997-20708c7848.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-14999/preds_assay-django__django-14999-a2da9071f1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15061/preds_assay-django__django-15061-f8d98b2e04.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15202/preds_assay-django__django-15202-028405161e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15213/preds_assay-django__django-15213-7fe74b72d9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15252/preds_assay-django__django-15252-48e44e96e1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15320/preds_assay-django__django-15320-2d123cd04a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15347/preds_assay-django__django-15347-44b7fc38d5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15388/preds_assay-django__django-15388-53a93654ca.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15400/preds_assay-django__django-15400-5cfc5eca6f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15498/preds_assay-django__django-15498-06fbdb85c4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15695/preds_assay-django__django-15695-f8bbf416d4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15738/preds_assay-django__django-15738-3cc2854f01.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15781/preds_assay-django__django-15781-26884b3223.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15789/preds_assay-django__django-15789-24bf84ff33.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15790/preds_assay-django__django-15790-d36587edaf.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15814/preds_assay-django__django-15814-7a5b45b892.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15819/preds_assay-django__django-15819-040b759ce6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15851/preds_assay-django__django-15851-0961ac1c41.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15902/preds_assay-django__django-15902-b710e49887.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-15996/preds_assay-django__django-15996-23624d172c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16041/preds_assay-django__django-16041-68a9197d78.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16046/preds_assay-django__django-16046-b3b94f9d9d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16139/preds_assay-django__django-16139-a642aa293a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16229/preds_assay-django__django-16229-3207ad48cd.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16255/preds_assay-django__django-16255-88cd9c2a30.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16379/preds_assay-django__django-16379-8c68449215.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16408/preds_assay-django__django-16408-b7589918a8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16527/preds_assay-django__django-16527-05c08f16f7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16595/preds_assay-django__django-16595-35933124fe.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16816/preds_assay-django__django-16816-c78dc7879f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16820/preds_assay-django__django-16820-b7e631d8aa.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16873/preds_assay-django__django-16873-4bcb8f9693.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-16910/preds_assay-django__django-16910-1efd357929.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-17051/preds_assay-django__django-17051-06a6d5a57b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/django__django-17087/preds_assay-django__django-17087-3b023a3615.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-18869/preds_assay-matplotlib__matplotlib-18869-ade7b7aa80.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-22711/preds_assay-matplotlib__matplotlib-22711-2afc649d3c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-22835/preds_assay-matplotlib__matplotlib-22835-77a3c4ded5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23299/preds_assay-matplotlib__matplotlib-23299-c45e0b4ad8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23314/preds_assay-matplotlib__matplotlib-23314-60ca5a9b46.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23476/preds_assay-matplotlib__matplotlib-23476-1b79c3e65d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23562/preds_assay-matplotlib__matplotlib-23562-4dea097eb6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23563/preds_assay-matplotlib__matplotlib-23563-0cbf21524e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23913/preds_assay-matplotlib__matplotlib-23913-85cb02ffae.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23964/preds_assay-matplotlib__matplotlib-23964-68dd769729.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-23987/preds_assay-matplotlib__matplotlib-23987-a8ddaf9a13.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-24149/preds_assay-matplotlib__matplotlib-24149-e3fec5a191.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-24265/preds_assay-matplotlib__matplotlib-24265-aac7a3fe86.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-24334/preds_assay-matplotlib__matplotlib-24334-1b14388968.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-24970/preds_assay-matplotlib__matplotlib-24970-a50cc0e543.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25079/preds_assay-matplotlib__matplotlib-25079-74e3ff420f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25311/preds_assay-matplotlib__matplotlib-25311-ffee95cee1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25332/preds_assay-matplotlib__matplotlib-25332-7143888441.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25433/preds_assay-matplotlib__matplotlib-25433-34908a3b28.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25442/preds_assay-matplotlib__matplotlib-25442-31b66fe683.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-25498/preds_assay-matplotlib__matplotlib-25498-17b74e3116.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-26011/preds_assay-matplotlib__matplotlib-26011-44d4ffe2ba.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/matplotlib__matplotlib-26020/preds_assay-matplotlib__matplotlib-26020-c8a1f409cf.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/mwaskom__seaborn-2848/preds_assay-mwaskom__seaborn-2848-f0ee5b320b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/mwaskom__seaborn-3010/preds_assay-mwaskom__seaborn-3010-1d0695f8d8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/mwaskom__seaborn-3190/preds_assay-mwaskom__seaborn-3190-742d9255b5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pallets__flask-4045/preds_assay-pallets__flask-4045-c472823715.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pallets__flask-4992/preds_assay-pallets__flask-4992-fb1cbf5c4c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pallets__flask-5063/preds_assay-pallets__flask-5063-f4da2f979a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-1963/preds_assay-psf__requests-1963-f72856b501.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-2148/preds_assay-psf__requests-2148-154e03513e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-2317/preds_assay-psf__requests-2317-34bb854515.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-2674/preds_assay-psf__requests-2674-407f250222.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-3362/preds_assay-psf__requests-3362-0b2cb59e59.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/psf__requests-863/preds_assay-psf__requests-863-39c952dce8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pydata__xarray-3364/preds_assay-pydata__xarray-3364-eb5e0c2ebf.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pydata__xarray-4094/preds_assay-pydata__xarray-4094-e2a138b132.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pydata__xarray-4248/preds_assay-pydata__xarray-4248-13601469d2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pydata__xarray-4493/preds_assay-pydata__xarray-4493-6108ea2d1e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pydata__xarray-5131/preds_assay-pydata__xarray-5131-c128685702.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-5859/preds_assay-pylint-dev__pylint-5859-bb6d1e072e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-6506/preds_assay-pylint-dev__pylint-6506-3c9569065e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-7080/preds_assay-pylint-dev__pylint-7080-f02d626637.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-7114/preds_assay-pylint-dev__pylint-7114-76f57517ca.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-7228/preds_assay-pylint-dev__pylint-7228-b4abb49a7b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pylint-dev__pylint-7993/preds_assay-pylint-dev__pylint-7993-69f2b99b8c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-11143/preds_assay-pytest-dev__pytest-11143-2e02b7ad57.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-11148/preds_assay-pytest-dev__pytest-11148-e3febd1411.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5103/preds_assay-pytest-dev__pytest-5103-4b8ab44626.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5221/preds_assay-pytest-dev__pytest-5221-21decf5bae.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5227/preds_assay-pytest-dev__pytest-5227-a41bfda049.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5413/preds_assay-pytest-dev__pytest-5413-545943db0d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5495/preds_assay-pytest-dev__pytest-5495-22623bad7f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-5692/preds_assay-pytest-dev__pytest-5692-19b007a37b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-6116/preds_assay-pytest-dev__pytest-6116-cdcf68a794.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-7168/preds_assay-pytest-dev__pytest-7168-90401f7593.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-7373/preds_assay-pytest-dev__pytest-7373-6141571630.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-7432/preds_assay-pytest-dev__pytest-7432-56dd822436.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-7490/preds_assay-pytest-dev__pytest-7490-b233080904.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-8365/preds_assay-pytest-dev__pytest-8365-818e67865a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-8906/preds_assay-pytest-dev__pytest-8906-de8042f981.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/pytest-dev__pytest-9359/preds_assay-pytest-dev__pytest-9359-444fbf5d73.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-10297/preds_assay-scikit-learn__scikit-learn-10297-91a66e3f55.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-10508/preds_assay-scikit-learn__scikit-learn-10508-fcde419042.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-10949/preds_assay-scikit-learn__scikit-learn-10949-109dce65a2.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-11040/preds_assay-scikit-learn__scikit-learn-11040-0d1133deb9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-11281/preds_assay-scikit-learn__scikit-learn-11281-2f21590e33.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-12471/preds_assay-scikit-learn__scikit-learn-12471-33aa77ee7e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13142/preds_assay-scikit-learn__scikit-learn-13142-e2ae7c1861.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13241/preds_assay-scikit-learn__scikit-learn-13241-7cfaeb14f7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13439/preds_assay-scikit-learn__scikit-learn-13439-23c666af47.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13496/preds_assay-scikit-learn__scikit-learn-13496-4bbb4fd8ab.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13497/preds_assay-scikit-learn__scikit-learn-13497-20f11cfd30.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13584/preds_assay-scikit-learn__scikit-learn-13584-efe1b136f6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-13779/preds_assay-scikit-learn__scikit-learn-13779-772906718c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-14087/preds_assay-scikit-learn__scikit-learn-14087-f56c73f969.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-14092/preds_assay-scikit-learn__scikit-learn-14092-2a955f1592.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-14894/preds_assay-scikit-learn__scikit-learn-14894-d7a1b21efd.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-14983/preds_assay-scikit-learn__scikit-learn-14983-4063f050a4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-15512/preds_assay-scikit-learn__scikit-learn-15512-b360c6aeac.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-15535/preds_assay-scikit-learn__scikit-learn-15535-ec0542e4ca.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-25500/preds_assay-scikit-learn__scikit-learn-25500-043980c09f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-25570/preds_assay-scikit-learn__scikit-learn-25570-e229351285.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-25638/preds_assay-scikit-learn__scikit-learn-25638-6c6ced4de8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/scikit-learn__scikit-learn-25747/preds_assay-scikit-learn__scikit-learn-25747-af303a53ce.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-10325/preds_assay-sphinx-doc__sphinx-10325-0028dc94e1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-10451/preds_assay-sphinx-doc__sphinx-10451-7324e8281f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-11445/preds_assay-sphinx-doc__sphinx-11445-5bf658ed43.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-7686/preds_assay-sphinx-doc__sphinx-7686-e32bd8ea60.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-7738/preds_assay-sphinx-doc__sphinx-7738-ff1b89ccf1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-7975/preds_assay-sphinx-doc__sphinx-7975-7991bf0917.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8273/preds_assay-sphinx-doc__sphinx-8273-b975c14ee4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8282/preds_assay-sphinx-doc__sphinx-8282-d761dc1103.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8435/preds_assay-sphinx-doc__sphinx-8435-77ff814efa.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8474/preds_assay-sphinx-doc__sphinx-8474-167d1b5940.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8506/preds_assay-sphinx-doc__sphinx-8506-1a98dafb50.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8595/preds_assay-sphinx-doc__sphinx-8595-eff5b8784b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8627/preds_assay-sphinx-doc__sphinx-8627-50e2ca6646.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8713/preds_assay-sphinx-doc__sphinx-8713-283742e6d7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8721/preds_assay-sphinx-doc__sphinx-8721-10fe162c88.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sphinx-doc__sphinx-8801/preds_assay-sphinx-doc__sphinx-8801-df1d0d1e85.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-11400/preds_assay-sympy__sympy-11400-572029bd66.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-11870/preds_assay-sympy__sympy-11870-a98ff7cd61.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-12171/preds_assay-sympy__sympy-12171-9824e81e51.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-12236/preds_assay-sympy__sympy-12236-355c7740fb.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-12419/preds_assay-sympy__sympy-12419-c036148a19.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-12454/preds_assay-sympy__sympy-12454-e1570de519.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-12481/preds_assay-sympy__sympy-12481-7315b2fa7a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13031/preds_assay-sympy__sympy-13031-ca049da182.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13043/preds_assay-sympy__sympy-13043-089c203881.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13146/preds_assay-sympy__sympy-13146-b0a422f108.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13177/preds_assay-sympy__sympy-13177-c120a23875.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13437/preds_assay-sympy__sympy-13437-f7a4fc16c7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13471/preds_assay-sympy__sympy-13471-9db1c15385.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13480/preds_assay-sympy__sympy-13480-0263df0529.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13647/preds_assay-sympy__sympy-13647-c26ee01307.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13773/preds_assay-sympy__sympy-13773-c9f7d6df14.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13915/preds_assay-sympy__sympy-13915-12a2cb4bed.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-13971/preds_assay-sympy__sympy-13971-ef790ba70b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14024/preds_assay-sympy__sympy-14024-b049f82a59.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14308/preds_assay-sympy__sympy-14308-276cbebd6b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14317/preds_assay-sympy__sympy-14317-3642ee4741.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14396/preds_assay-sympy__sympy-14396-5ce7800809.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14774/preds_assay-sympy__sympy-14774-6eb85840ad.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-14817/preds_assay-sympy__sympy-14817-84e4996478.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-15011/preds_assay-sympy__sympy-15011-1f8a837186.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-15308/preds_assay-sympy__sympy-15308-605f6d0e1f.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-15345/preds_assay-sympy__sympy-15345-8c018da93c.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-15609/preds_assay-sympy__sympy-15609-bf753bacd9.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-15678/preds_assay-sympy__sympy-15678-24c8545e66.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-16106/preds_assay-sympy__sympy-16106-768e22f4fe.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-16281/preds_assay-sympy__sympy-16281-6102f7be0e.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-16792/preds_assay-sympy__sympy-16792-c706bca4b6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-16988/preds_assay-sympy__sympy-16988-0f9f5e219d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-17022/preds_assay-sympy__sympy-17022-bdd7dacc51.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-17139/preds_assay-sympy__sympy-17139-1318b673d8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-17630/preds_assay-sympy__sympy-17630-e3249283f3.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-17655/preds_assay-sympy__sympy-17655-d5758cd414.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18057/preds_assay-sympy__sympy-18057-daa798ed32.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18189/preds_assay-sympy__sympy-18189-211d67c952.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18199/preds_assay-sympy__sympy-18199-0f1779a908.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18532/preds_assay-sympy__sympy-18532-a8ab657f1a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18621/preds_assay-sympy__sympy-18621-b2f368263a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18698/preds_assay-sympy__sympy-18698-325a809165.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-18835/preds_assay-sympy__sympy-18835-3e044803a5.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-19007/preds_assay-sympy__sympy-19007-143ee9754b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-19254/preds_assay-sympy__sympy-19254-a9e392eed8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-19487/preds_assay-sympy__sympy-19487-85ea8adc1b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20049/preds_assay-sympy__sympy-20049-0a4a3c4d21.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20212/preds_assay-sympy__sympy-20212-b1b64e87d7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20322/preds_assay-sympy__sympy-20322-73f3690c39.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20442/preds_assay-sympy__sympy-20442-e3c7325ff4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20590/preds_assay-sympy__sympy-20590-86e01a23be.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-20639/preds_assay-sympy__sympy-20639-56b5357c86.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21055/preds_assay-sympy__sympy-21055-e82145614a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21171/preds_assay-sympy__sympy-21171-98e46f7ed1.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21379/preds_assay-sympy__sympy-21379-d0e7189653.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21612/preds_assay-sympy__sympy-21612-4374b23606.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21614/preds_assay-sympy__sympy-21614-c1272e8194.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21627/preds_assay-sympy__sympy-21627-c419181aa6.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-21847/preds_assay-sympy__sympy-21847-1255e8355a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-22005/preds_assay-sympy__sympy-22005-f0adfc2326.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-22714/preds_assay-sympy__sympy-22714-955157a25b.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-22840/preds_assay-sympy__sympy-22840-dff50df7cb.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-23117/preds_assay-sympy__sympy-23117-1c9e3c24d4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-23191/preds_assay-sympy__sympy-23191-046072fd34.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-23262/preds_assay-sympy__sympy-23262-e50288c0a3.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-24066/preds_assay-sympy__sympy-24066-28665e8305.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-24152/preds_assay-sympy__sympy-24152-e31235acb4.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-24213/preds_assay-sympy__sympy-24213-a11c143bb7.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/grade/sympy__sympy-24909/preds_assay-sympy__sympy-24909-5ff76f318d.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_full/qwen3-coder_480b-cloud/results.jsonl +300 -0
- substrate_kernel-1.0.0/process/assay_matrix/astropy__astropy-12907/preds_assay-astropy__astropy-12907-ff5c053367.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_matrix/django__django-10914/preds_assay-django__django-10914-9085171bc8.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_matrix/matplotlib__matplotlib-18869/preds_assay-matplotlib__matplotlib-18869-a8e3480cdd.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_matrix/pallets__flask-4045/preds_assay-pallets__flask-4045-688559c23a.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_repair/astropy__astropy-12907/preds_assay-astropy__astropy-12907-ff5c053367.jsonl +1 -0
- substrate_kernel-1.0.0/process/assay_repair/django__django-10914/preds_assay-django__django-10914-9085171bc8.jsonl +1 -0
- substrate_kernel-1.0.0/process/signals/0.1-rationale.md +177 -0
- substrate_kernel-1.0.0/process/signals/0.1.json +910 -0
- substrate_kernel-1.0.0/process/signals/0.2-rationale.md +96 -0
- substrate_kernel-1.0.0/process/signals/0.2.json +924 -0
- substrate_kernel-1.0.0/process/signals/proposals.json +282 -0
- substrate_kernel-1.0.0/process/signals/research-pass.md +263 -0
- substrate_kernel-1.0.0/process/signals/swebench-solver-vocabulary.md +92 -0
- substrate_kernel-1.0.0/process/sprints/GO-PUBLIC-SWEEP.md +128 -0
- substrate_kernel-1.0.0/process/sprints/PHASE1_PLAN.md +162 -0
- substrate_kernel-1.0.0/process/sprints/PHASE2_PLAN.md +113 -0
- substrate_kernel-1.0.0/process/sprints/sprint-000-vocabulary-session.md +127 -0
- substrate_kernel-1.0.0/process/sprints/sprint-100-application-catalogue.md +90 -0
- substrate_kernel-1.0.0/process/sprints/sprint-110-tui-design-spec.md +104 -0
- substrate_kernel-1.0.0/process/sprints/sprint-130-code-review-topology.md +117 -0
- substrate_kernel-1.0.0/process/sprints/sprint-131-pair-coding-topology.md +115 -0
- substrate_kernel-1.0.0/process/sprints/sprint-132-recursive-decomposition-topology.md +116 -0
- substrate_kernel-1.0.0/process/sprints/sprint-133-swebench-solver-vocabulary.md +115 -0
- substrate_kernel-1.0.0/process/sprints/sprint-136-best-of-n-extraction.md +68 -0
- substrate_kernel-1.0.0/process/swebench-lite-full-qwen3coder480b-20260627.jsonl +300 -0
- substrate_kernel-1.0.0/pyproject.toml +125 -0
- substrate_kernel-1.0.0/scripts/agency_assay.py +242 -0
- substrate_kernel-1.0.0/scripts/agent_arena.py +140 -0
- substrate_kernel-1.0.0/scripts/assay_agent_debug.py +29 -0
- substrate_kernel-1.0.0/scripts/assay_container_run.py +87 -0
- substrate_kernel-1.0.0/scripts/assay_container_smoke.py +43 -0
- substrate_kernel-1.0.0/scripts/assay_full_run.py +183 -0
- substrate_kernel-1.0.0/scripts/assay_host_run.py +83 -0
- substrate_kernel-1.0.0/scripts/assay_matrix_run.py +86 -0
- substrate_kernel-1.0.0/scripts/assay_repair_topology_verify.py +67 -0
- substrate_kernel-1.0.0/scripts/assay_swebench_run.py +110 -0
- substrate_kernel-1.0.0/scripts/assay_swebench_smoke.py +112 -0
- substrate_kernel-1.0.0/scripts/assay_workspace_gate.py +61 -0
- substrate_kernel-1.0.0/scripts/bench_coding.py +304 -0
- substrate_kernel-1.0.0/scripts/ci_local.sh +43 -0
- substrate_kernel-1.0.0/scripts/ci_local_ubuntu.sh +45 -0
- substrate_kernel-1.0.0/scripts/docker_runner_smoke.py +37 -0
- substrate_kernel-1.0.0/scripts/eval_agent_models.py +124 -0
- substrate_kernel-1.0.0/scripts/flask_solve.py +178 -0
- substrate_kernel-1.0.0/scripts/gen_api_docs.py +193 -0
- substrate_kernel-1.0.0/scripts/gen_topology_records.py +43 -0
- substrate_kernel-1.0.0/scripts/gen_walkthrough_records.py +76 -0
- substrate_kernel-1.0.0/scripts/power_sim.py +84 -0
- substrate_kernel-1.0.0/scripts/regression_seam_smoke.py +120 -0
- substrate_kernel-1.0.0/scripts/run_tool_agent.py +111 -0
- substrate_kernel-1.0.0/scripts/solve_instance.py +173 -0
- substrate_kernel-1.0.0/scripts/swebench_smoke.py +72 -0
- substrate_kernel-1.0.0/src/substrate/__init__.py +14 -0
- substrate_kernel-1.0.0/src/substrate/adapters/__init__.py +34 -0
- substrate_kernel-1.0.0/src/substrate/adapters/models.py +404 -0
- substrate_kernel-1.0.0/src/substrate/api.py +181 -0
- substrate_kernel-1.0.0/src/substrate/assay/__init__.py +68 -0
- substrate_kernel-1.0.0/src/substrate/assay/cells.py +117 -0
- substrate_kernel-1.0.0/src/substrate/assay/coding.py +190 -0
- substrate_kernel-1.0.0/src/substrate/assay/coding_problems.py +708 -0
- substrate_kernel-1.0.0/src/substrate/assay/conformance.py +72 -0
- substrate_kernel-1.0.0/src/substrate/assay/oracle.py +122 -0
- substrate_kernel-1.0.0/src/substrate/assay/report.py +278 -0
- substrate_kernel-1.0.0/src/substrate/assay/run.py +112 -0
- substrate_kernel-1.0.0/src/substrate/assay/stats.py +197 -0
- substrate_kernel-1.0.0/src/substrate/assay/suite.py +115 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench.py +364 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_agent.py +138 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_container.py +138 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_host.py +87 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_matrix.py +159 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_suite.py +202 -0
- substrate_kernel-1.0.0/src/substrate/assay/swebench_workspace.py +114 -0
- substrate_kernel-1.0.0/src/substrate/cli.py +809 -0
- substrate_kernel-1.0.0/src/substrate/conformance/__init__.py +1 -0
- substrate_kernel-1.0.0/src/substrate/conformance/conformance.py +673 -0
- substrate_kernel-1.0.0/src/substrate/conformance/conformance_perf.py +104 -0
- substrate_kernel-1.0.0/src/substrate/constants.py +58 -0
- substrate_kernel-1.0.0/src/substrate/encoding.py +196 -0
- substrate_kernel-1.0.0/src/substrate/errors.py +73 -0
- substrate_kernel-1.0.0/src/substrate/kernel/__init__.py +2 -0
- substrate_kernel-1.0.0/src/substrate/kernel/composition.py +236 -0
- substrate_kernel-1.0.0/src/substrate/kernel/policies.py +190 -0
- substrate_kernel-1.0.0/src/substrate/kernel/runstate.py +90 -0
- substrate_kernel-1.0.0/src/substrate/kernel/runtime.py +777 -0
- substrate_kernel-1.0.0/src/substrate/kernel/sequencer.py +427 -0
- substrate_kernel-1.0.0/src/substrate/kernel/topology.py +336 -0
- substrate_kernel-1.0.0/src/substrate/kernel/triggers.py +109 -0
- substrate_kernel-1.0.0/src/substrate/kernel/views.py +124 -0
- substrate_kernel-1.0.0/src/substrate/projections/__init__.py +2 -0
- substrate_kernel-1.0.0/src/substrate/projections/attach.py +138 -0
- substrate_kernel-1.0.0/src/substrate/projections/graph.py +323 -0
- substrate_kernel-1.0.0/src/substrate/projections/inspect.py +365 -0
- substrate_kernel-1.0.0/src/substrate/projections/narrate.py +289 -0
- substrate_kernel-1.0.0/src/substrate/projections/replay.py +295 -0
- substrate_kernel-1.0.0/src/substrate/protocols.py +94 -0
- substrate_kernel-1.0.0/src/substrate/py.typed +0 -0
- substrate_kernel-1.0.0/src/substrate/record/__init__.py +2 -0
- substrate_kernel-1.0.0/src/substrate/record/blobstore.py +107 -0
- substrate_kernel-1.0.0/src/substrate/record/framing.py +118 -0
- substrate_kernel-1.0.0/src/substrate/record/locking.py +71 -0
- substrate_kernel-1.0.0/src/substrate/record/record.py +322 -0
- substrate_kernel-1.0.0/src/substrate/record/sealing.py +60 -0
- substrate_kernel-1.0.0/src/substrate/record/sidecar.py +139 -0
- substrate_kernel-1.0.0/src/substrate/reference/__init__.py +31 -0
- substrate_kernel-1.0.0/src/substrate/reference/_models.py +32 -0
- substrate_kernel-1.0.0/src/substrate/reference/r1_ensemble.py +158 -0
- substrate_kernel-1.0.0/src/substrate/reference/r2_pipeline.py +343 -0
- substrate_kernel-1.0.0/src/substrate/reference/r3_codesynth.py +252 -0
- substrate_kernel-1.0.0/src/substrate/reference/walkthrough.py +197 -0
- substrate_kernel-1.0.0/src/substrate/testing.py +56 -0
- substrate_kernel-1.0.0/src/substrate/topologies/README.md +70 -0
- substrate_kernel-1.0.0/src/substrate/topologies/__init__.py +12 -0
- substrate_kernel-1.0.0/src/substrate/topologies/adversarial_pair/__init__.py +158 -0
- substrate_kernel-1.0.0/src/substrate/topologies/adversarial_pair/records/ci_mode.record/events-000001.open.jsonl +39 -0
- substrate_kernel-1.0.0/src/substrate/topologies/adversarial_pair/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/best_of_n/__init__.py +177 -0
- substrate_kernel-1.0.0/src/substrate/topologies/best_of_n/contracts.py +56 -0
- substrate_kernel-1.0.0/src/substrate/topologies/bundled.py +103 -0
- substrate_kernel-1.0.0/src/substrate/topologies/code_evolution/__init__.py +386 -0
- substrate_kernel-1.0.0/src/substrate/topologies/code_review/__init__.py +187 -0
- substrate_kernel-1.0.0/src/substrate/topologies/code_review/records/ci_mode.record/events-000001.open.jsonl +26 -0
- substrate_kernel-1.0.0/src/substrate/topologies/code_review/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/coding_flow/__init__.py +266 -0
- substrate_kernel-1.0.0/src/substrate/topologies/coding_flow/gate.py +161 -0
- substrate_kernel-1.0.0/src/substrate/topologies/coding_flow/task.py +173 -0
- substrate_kernel-1.0.0/src/substrate/topologies/conversation.py +247 -0
- substrate_kernel-1.0.0/src/substrate/topologies/debate/__init__.py +49 -0
- substrate_kernel-1.0.0/src/substrate/topologies/debate/records/ci_mode.record/events-000001.open.jsonl +27 -0
- substrate_kernel-1.0.0/src/substrate/topologies/debate/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/game_of_life/__init__.py +213 -0
- substrate_kernel-1.0.0/src/substrate/topologies/game_of_life/records/ci_mode.record/events-000001.open.jsonl +264 -0
- substrate_kernel-1.0.0/src/substrate/topologies/game_of_life/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/game_of_life_glider/records/ci_mode.record/events-000001.open.jsonl +1002 -0
- substrate_kernel-1.0.0/src/substrate/topologies/game_of_life_glider/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/instruments/__init__.py +11 -0
- substrate_kernel-1.0.0/src/substrate/topologies/instruments/common_ground.py +41 -0
- substrate_kernel-1.0.0/src/substrate/topologies/instruments/grader.py +68 -0
- substrate_kernel-1.0.0/src/substrate/topologies/instruments/repair.py +49 -0
- substrate_kernel-1.0.0/src/substrate/topologies/instruments/scoring.py +124 -0
- substrate_kernel-1.0.0/src/substrate/topologies/intel_asymmetry/__init__.py +104 -0
- substrate_kernel-1.0.0/src/substrate/topologies/intel_asymmetry/records/ci_mode.record/events-000001.open.jsonl +33 -0
- substrate_kernel-1.0.0/src/substrate/topologies/intel_asymmetry/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/natural_conversation/__init__.py +93 -0
- substrate_kernel-1.0.0/src/substrate/topologies/natural_conversation/records/ci_mode.record/events-000001.open.jsonl +147 -0
- substrate_kernel-1.0.0/src/substrate/topologies/natural_conversation/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/natural_conversation_bare/records/ci_mode.record/events-000001.open.jsonl +35 -0
- substrate_kernel-1.0.0/src/substrate/topologies/natural_conversation_bare/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/pair_coding/__init__.py +166 -0
- substrate_kernel-1.0.0/src/substrate/topologies/pair_coding/records/ci_mode.record/events-000001.open.jsonl +33 -0
- substrate_kernel-1.0.0/src/substrate/topologies/pair_coding/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/prisoners_dilemma/__init__.py +78 -0
- substrate_kernel-1.0.0/src/substrate/topologies/prisoners_dilemma/records/ci_mode.record/events-000001.open.jsonl +13 -0
- substrate_kernel-1.0.0/src/substrate/topologies/prisoners_dilemma/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/recursive_decomposition/__init__.py +175 -0
- substrate_kernel-1.0.0/src/substrate/topologies/recursive_decomposition/records/ci_mode.record/events-000001.open.jsonl +34 -0
- substrate_kernel-1.0.0/src/substrate/topologies/recursive_decomposition/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/__init__.py +44 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/applier.py +293 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/assemble.py +564 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/localize.py +101 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/records.py +152 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/repair.py +127 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/reproduction.py +65 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/select.py +62 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/select_docker.py +140 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/select_exec.py +178 -0
- substrate_kernel-1.0.0/src/substrate/topologies/swebench_solver/select_regression.py +169 -0
- substrate_kernel-1.0.0/src/substrate/topologies/tool_loop/__init__.py +439 -0
- substrate_kernel-1.0.0/src/substrate/topologies/tool_loop/agency.py +195 -0
- substrate_kernel-1.0.0/src/substrate/topologies/tool_loop/records/ci_mode.record/events-000001.open.jsonl +22 -0
- substrate_kernel-1.0.0/src/substrate/topologies/tool_loop/records/ci_mode.record/manifest.json +1 -0
- substrate_kernel-1.0.0/src/substrate/topologies/tool_loop/tools.py +432 -0
- substrate_kernel-1.0.0/src/substrate/types.py +77 -0
- substrate_kernel-1.0.0/tests/test_adversarial_pair_topology.py +35 -0
- substrate_kernel-1.0.0/tests/test_agency.py +147 -0
- substrate_kernel-1.0.0/tests/test_api_sugar.py +198 -0
- substrate_kernel-1.0.0/tests/test_assay_coding.py +177 -0
- substrate_kernel-1.0.0/tests/test_assay_control_plane.py +180 -0
- substrate_kernel-1.0.0/tests/test_assay_oracle.py +91 -0
- substrate_kernel-1.0.0/tests/test_assay_realmodel.py +131 -0
- substrate_kernel-1.0.0/tests/test_assay_stats.py +164 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench.py +188 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench_agent.py +40 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench_host.py +21 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench_matrix.py +43 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench_suite.py +71 -0
- substrate_kernel-1.0.0/tests/test_assay_swebench_workspace.py +133 -0
- substrate_kernel-1.0.0/tests/test_attach.py +151 -0
- substrate_kernel-1.0.0/tests/test_best_of_n.py +131 -0
- substrate_kernel-1.0.0/tests/test_bundled_topologies.py +80 -0
- substrate_kernel-1.0.0/tests/test_cancel_others.py +118 -0
- substrate_kernel-1.0.0/tests/test_cli.py +408 -0
- substrate_kernel-1.0.0/tests/test_cli_failure_surfacing.py +100 -0
- substrate_kernel-1.0.0/tests/test_code_evolution.py +128 -0
- substrate_kernel-1.0.0/tests/test_code_review_topology.py +100 -0
- substrate_kernel-1.0.0/tests/test_coding_flow.py +192 -0
- substrate_kernel-1.0.0/tests/test_coding_problems.py +213 -0
- substrate_kernel-1.0.0/tests/test_composition.py +360 -0
- substrate_kernel-1.0.0/tests/test_conformance.py +104 -0
- substrate_kernel-1.0.0/tests/test_conversation_demos.py +70 -0
- substrate_kernel-1.0.0/tests/test_conversation_topology.py +66 -0
- substrate_kernel-1.0.0/tests/test_encoding.py +76 -0
- substrate_kernel-1.0.0/tests/test_framing.py +147 -0
- substrate_kernel-1.0.0/tests/test_game_of_life_topology.py +41 -0
- substrate_kernel-1.0.0/tests/test_graph.py +253 -0
- substrate_kernel-1.0.0/tests/test_inspect.py +357 -0
- substrate_kernel-1.0.0/tests/test_instruments_grader.py +60 -0
- substrate_kernel-1.0.0/tests/test_instruments_scoring.py +66 -0
- substrate_kernel-1.0.0/tests/test_liveness.py +133 -0
- substrate_kernel-1.0.0/tests/test_locking.py +24 -0
- substrate_kernel-1.0.0/tests/test_metering.py +132 -0
- substrate_kernel-1.0.0/tests/test_narrate.py +245 -0
- substrate_kernel-1.0.0/tests/test_natural_conversation_ablation.py +58 -0
- substrate_kernel-1.0.0/tests/test_pair_coding_topology.py +86 -0
- substrate_kernel-1.0.0/tests/test_perf.py +54 -0
- substrate_kernel-1.0.0/tests/test_realmodel_demos.py +378 -0
- substrate_kernel-1.0.0/tests/test_record.py +107 -0
- substrate_kernel-1.0.0/tests/test_recursive_decomposition_topology.py +108 -0
- substrate_kernel-1.0.0/tests/test_reference.py +242 -0
- substrate_kernel-1.0.0/tests/test_replay.py +192 -0
- substrate_kernel-1.0.0/tests/test_resume.py +253 -0
- substrate_kernel-1.0.0/tests/test_robustness.py +571 -0
- substrate_kernel-1.0.0/tests/test_routes.py +87 -0
- substrate_kernel-1.0.0/tests/test_runtime.py +132 -0
- substrate_kernel-1.0.0/tests/test_score_command.py +43 -0
- substrate_kernel-1.0.0/tests/test_sealing.py +59 -0
- substrate_kernel-1.0.0/tests/test_security_blob_traversal.py +41 -0
- substrate_kernel-1.0.0/tests/test_sidecar.py +101 -0
- substrate_kernel-1.0.0/tests/test_swebench_applier.py +180 -0
- substrate_kernel-1.0.0/tests/test_swebench_localize.py +67 -0
- substrate_kernel-1.0.0/tests/test_swebench_repair.py +103 -0
- substrate_kernel-1.0.0/tests/test_swebench_reproduction.py +66 -0
- substrate_kernel-1.0.0/tests/test_swebench_select.py +67 -0
- substrate_kernel-1.0.0/tests/test_swebench_select_docker.py +50 -0
- substrate_kernel-1.0.0/tests/test_swebench_select_exec.py +111 -0
- substrate_kernel-1.0.0/tests/test_swebench_select_regression.py +147 -0
- substrate_kernel-1.0.0/tests/test_swebench_solver.py +286 -0
- substrate_kernel-1.0.0/tests/test_tool_loop_topology.py +530 -0
- substrate_kernel-1.0.0/tests/test_topology_pressure.py +251 -0
- substrate_kernel-1.0.0/tests/test_topology_replay.py +60 -0
- substrate_kernel-1.0.0/tests/test_types.py +58 -0
- substrate_kernel-1.0.0/uv.lock +724 -0
- substrate_kernel-0.0.1/PKG-INFO +0 -22
- substrate_kernel-0.0.1/README.md +0 -11
- substrate_kernel-0.0.1/pyproject.toml +0 -19
- substrate_kernel-0.0.1/src/substrate_kernel/__init__.py +0 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Something behaves wrong or crashes.
|
|
3
|
+
labels: ["bug"]
|
|
4
|
+
body:
|
|
5
|
+
- type: textarea
|
|
6
|
+
id: what
|
|
7
|
+
attributes:
|
|
8
|
+
label: What happened
|
|
9
|
+
description: What you did, what you expected, what you got. A run record that shows the problem helps most.
|
|
10
|
+
validations:
|
|
11
|
+
required: true
|
|
12
|
+
- type: input
|
|
13
|
+
id: version
|
|
14
|
+
attributes:
|
|
15
|
+
label: Version / Python / OS
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
blank_issues_enabled: true
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
gates:
|
|
9
|
+
name: gates (${{ matrix.os }}, py${{ matrix.python }})
|
|
10
|
+
runs-on: ${{ matrix.os }}
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
os: [ubuntu-latest, macos-latest]
|
|
15
|
+
python: ["3.12", "3.13", "3.14"]
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
|
+
|
|
20
|
+
- name: Install uv
|
|
21
|
+
uses: astral-sh/setup-uv@v6
|
|
22
|
+
|
|
23
|
+
- name: Create the environment
|
|
24
|
+
run: uv venv --python ${{ matrix.python }}
|
|
25
|
+
|
|
26
|
+
- name: Install (editable, with dev extras)
|
|
27
|
+
run: uv pip install -e ".[dev]"
|
|
28
|
+
|
|
29
|
+
- name: Lint
|
|
30
|
+
run: uv run ruff check
|
|
31
|
+
|
|
32
|
+
- name: Format check
|
|
33
|
+
run: uv run ruff format --check
|
|
34
|
+
|
|
35
|
+
- name: Type-check (strict)
|
|
36
|
+
run: uv run mypy
|
|
37
|
+
|
|
38
|
+
- name: Tests
|
|
39
|
+
run: uv run pytest
|
|
40
|
+
|
|
41
|
+
- name: Import contract (F-API-6)
|
|
42
|
+
run: uv run lint-imports
|
|
43
|
+
|
|
44
|
+
# The throughput floor (conformance check 15 / N-PERF-1) is hardware-sensitive, so it is
|
|
45
|
+
# deliberately OFF the CI matrix: --no-perf makes check 15 an honest SKIP. The floor is
|
|
46
|
+
# verified separately on controlled hardware (SUBSTRATE_PERF_GATE=1; see CONTRIBUTING.md).
|
|
47
|
+
- name: Conformance (no perf floor)
|
|
48
|
+
run: uv run substrate conformance --no-perf
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.pyc
|
|
3
|
+
.DS_Store
|
|
4
|
+
.pytest_cache/
|
|
5
|
+
.signal_traces/
|
|
6
|
+
*.egg-info/
|
|
7
|
+
.venv/
|
|
8
|
+
dist/
|
|
9
|
+
build/
|
|
10
|
+
|
|
11
|
+
# Tool caches — untracked, regenerated; never source.
|
|
12
|
+
.mypy_cache/
|
|
13
|
+
.ruff_cache/
|
|
14
|
+
.hypothesis/
|
|
15
|
+
.benchmarks/
|
|
16
|
+
.import_linter_cache/
|
|
17
|
+
|
|
18
|
+
# Benchmark run artifacts — regenerable data written live by scripts/bench_coding.py, not source.
|
|
19
|
+
# The verdicts themselves are recorded in process/BLACKBOARD.md.
|
|
20
|
+
process/bench_results/
|
|
21
|
+
|
|
22
|
+
# SWE-bench harness run outputs (generated by the eval harness/smoke — logs, run reports), not source.
|
|
23
|
+
/logs/
|
|
24
|
+
process/swebench_smoke/
|
|
25
|
+
/gold.goldsmoke.json
|
|
26
|
+
# Assay/SWE-bench run artifacts (predictions + harness reports) — generated, not source.
|
|
27
|
+
/process/assay_smoke/
|
|
28
|
+
/process/assay_ws_gate/
|
|
29
|
+
/process/assay_host/
|
|
30
|
+
/process/assay_run/
|
|
31
|
+
/process/flask_solve/
|
|
32
|
+
/process/solve_runs/
|
|
33
|
+
substrate-*.json
|
|
34
|
+
substrate-coding-flow.*.json
|
|
35
|
+
|
|
36
|
+
# Container-arena run logs — transient per-(model,task) research artifacts, regenerable by
|
|
37
|
+
# scripts/agent_arena.py; the findings they support live in process/RESEARCH.md, not the logs.
|
|
38
|
+
arena-logs*/
|
|
39
|
+
|
|
40
|
+
# Local disposal archive (2026-07-22 top-level cleanup) — disk-only, never history.
|
|
41
|
+
process/archive/root-debris-20260722/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.0 — 2026-07-24
|
|
4
|
+
|
|
5
|
+
First release: the full runtime. The eight primitives, both persistence
|
|
6
|
+
modes, replay Levels 1/2/3(a), the read projections (provenance, diff, narration,
|
|
7
|
+
graphs), composition, the 17-check conformance suite, bundled topologies with
|
|
8
|
+
committed run records, and the model adapters. Level-3(b) byte-identical
|
|
9
|
+
re-execution and Windows persistent-bus support are deferred, with rationale in
|
|
10
|
+
`docs/specs/` amendments.
|
|
11
|
+
|
|
12
|
+
## 0.0.1 — 2026-07-24
|
|
13
|
+
|
|
14
|
+
Name-claim placeholder on PyPI. No runtime.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Contributing to Substrate
|
|
2
|
+
|
|
3
|
+
## Spec corpus
|
|
4
|
+
|
|
5
|
+
Substrate implements a four-document spec corpus (in this repo); the code is held
|
|
6
|
+
accountable to it, not the other way round:
|
|
7
|
+
|
|
8
|
+
- `docs/specs/kernel_spec/v15.md` — the eight primitives, the append cycle, replay
|
|
9
|
+
(+ `v16_reconciliation_note.md`).
|
|
10
|
+
- `docs/specs/product_spec/draft7.md` — requirements, the 17 conformance checks, reference
|
|
11
|
+
topologies.
|
|
12
|
+
- `docs/specs/technical_spec/draft5.md` — byte layout, writer cycle, public API.
|
|
13
|
+
- `docs/specs/design_spec/draft1.md` — API ergonomics, CLI UX, error UX.
|
|
14
|
+
|
|
15
|
+
### Spec amendments
|
|
16
|
+
|
|
17
|
+
Changes to a shipped spec are made as **additive amendment files**, never by editing
|
|
18
|
+
the base draft (the base stays as the audit trail):
|
|
19
|
+
|
|
20
|
+
- `docs/specs/product_spec/draft7_amendment_A1_replay_3b.md` — replay Level 3(b) deferral +
|
|
21
|
+
the D-8 supplementary-metadata exclusion set.
|
|
22
|
+
- `docs/specs/product_spec/draft7_amendment_A2_nperf1.md` — the N-PERF-1 throughput floor
|
|
23
|
+
re-baseline.
|
|
24
|
+
- `docs/specs/product_spec/draft7_amendment_A3.md` — the code↔spec reconciliations
|
|
25
|
+
(check-5 wall-clock half, F-LIFE-2 let-finish/subtree deferral, RunStarted-manifest
|
|
26
|
+
fidelity, L1-replay scope, read-API naming).
|
|
27
|
+
|
|
28
|
+
## Signal-Driven Development
|
|
29
|
+
|
|
30
|
+
Built under Signal-Driven Development (`../sdd-kit-2/`). The locked signal
|
|
31
|
+
vocabulary is `process/signals/0.2.json` — an additive successor to `process/signals/0.1.json`,
|
|
32
|
+
which is retained as the v0.1 audit trail. The rationale for the 0.1 → 0.2
|
|
33
|
+
evolution is `process/signals/0.2-rationale.md`.
|
|
34
|
+
|
|
35
|
+
Implementation roadmap: `process/sprints/PHASE1_PLAN.md`. Working notes and per-wave
|
|
36
|
+
records live in `process/BLACKBOARD.md`.
|
|
37
|
+
|
|
38
|
+
## Gates
|
|
39
|
+
|
|
40
|
+
**The default gate is local: `scripts/ci_local.sh`** (the same stack, py3.12/3.13/3.14 in
|
|
41
|
+
isolated envs; `scripts/ci_local_ubuntu.sh` for the linux cells via Docker). As of
|
|
42
|
+
2026-07-22 hosted GitHub Actions is unavailable (Actions minutes exhausted) and the
|
|
43
|
+
verification bar must not depend on a hosted runner — "gates green" means the local
|
|
44
|
+
matrix exiting 0, watched to conclusion. The workflow file stays; when Actions returns
|
|
45
|
+
it is a backstop, not the bar.
|
|
46
|
+
|
|
47
|
+
Every change must keep these green (the per-version stack, identical local and hosted —
|
|
48
|
+
`.github/workflows/ci.yml` runs it on {ubuntu, macOS} × Python {3.12, 3.13, 3.14}):
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
uv run ruff check # lint
|
|
52
|
+
uv run ruff format --check # format
|
|
53
|
+
uv run mypy # type-check (strict)
|
|
54
|
+
uv run pytest # tests
|
|
55
|
+
uv run lint-imports # F-API-6: cli imports only substrate.api (import-linter)
|
|
56
|
+
uv run substrate conformance --no-perf # the 17 conformance checks (perf floor skipped)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
`substrate conformance` is the release gate (the 17 §7 checks). CI runs it with
|
|
60
|
+
`--no-perf` because the throughput floor (check 15 / N-PERF-1) is hardware-sensitive;
|
|
61
|
+
that makes check 15 an honest SKIP in CI. Verify the floor separately on controlled
|
|
62
|
+
hardware with `SUBSTRATE_PERF_GATE=1 uv run pytest tests/test_perf.py` (or the default
|
|
63
|
+
`uv run substrate conformance` without `--no-perf`).
|
|
64
|
+
|
|
65
|
+
The API reference (`docs/api.md`) is **generated** — never hand-edit it. After any
|
|
66
|
+
change to the public surface (`substrate.api.__all__`) or a public docstring, run
|
|
67
|
+
`uv run python scripts/gen_api_docs.py` and commit the regenerated file. The committed
|
|
68
|
+
walkthrough run records (`docs/walkthroughs/records/`) regenerate with
|
|
69
|
+
`uv run python scripts/gen_walkthrough_records.py`.
|
|
70
|
+
|
|
71
|
+
## Post-1.0 deferrals
|
|
72
|
+
|
|
73
|
+
Deliberately not shipped in v1.0 (deferred with cause, not gaps):
|
|
74
|
+
|
|
75
|
+
- **Replay Level 3(b)** — byte-identical substitution re-execution (needs a replay-mode
|
|
76
|
+
writer that replays recorded `t`; amendment A1.1). Levels 1/2/3a + D-8 ship.
|
|
77
|
+
- **`let_finish` (F-LIFE-2 recipe) + the `let-finish` Decision** — the "drain in-flight
|
|
78
|
+
then finalise" terminal has no runtime dispatch branch, so shipping the enum value /
|
|
79
|
+
recipe would be a silent no-op. Removed for v1.0 and deferred until the dispatch +
|
|
80
|
+
admission-stop mechanism is built. (`cancel_all_others`, `quiescence_with_watchdog`,
|
|
81
|
+
`threshold_count`, `all_completed`, `pause_await_input`, `any_of`, `all_of` all ship.)
|
|
82
|
+
- **`subtree_cancellation`** — needs a 6th decision value / scope field (vocab-blocked).
|
|
83
|
+
- A **compiled JCS encoder** — the throughput lever beyond the current floor (A2).
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# The tool-loop agent TEST ARENA — emphatically NOT the product.
|
|
2
|
+
#
|
|
3
|
+
# The product runs host-native: direct filesystem access, real autonomy, exactly like Claude
|
|
4
|
+
# Code operating in your project. Containerizing THAT would be pointless — it needs your real
|
|
5
|
+
# machine, your files, your Ollama.
|
|
6
|
+
#
|
|
7
|
+
# This image is a DISPOSABLE ARENA. A model drives the real FULL_SUITE (read/write/edit/bash/
|
|
8
|
+
# glob/grep) against a throwaway filesystem, so we can let models go wild on open-ended tasks —
|
|
9
|
+
# "build me X", weird questions, whatever — and capture the crashes and edge cases we'd never
|
|
10
|
+
# think to script (the `glob **/*.py` → blob-offload → wedged-loop bug was exactly this shape).
|
|
11
|
+
# Destructive tool use here costs nothing: `docker rm` and it's gone.
|
|
12
|
+
#
|
|
13
|
+
# The MODEL still runs on the HOST (Ollama, reached at host.docker.internal via OLLAMA_BASE_URL);
|
|
14
|
+
# only the agent loop and its tool side-effects happen inside the container.
|
|
15
|
+
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
|
|
16
|
+
|
|
17
|
+
WORKDIR /substrate
|
|
18
|
+
|
|
19
|
+
# Dependency layer first (cached across source edits): the lockfile + package metadata only.
|
|
20
|
+
COPY pyproject.toml uv.lock README.md ./
|
|
21
|
+
COPY src ./src
|
|
22
|
+
RUN uv sync --extra openai-compat --no-dev --frozen
|
|
23
|
+
|
|
24
|
+
COPY scripts ./scripts
|
|
25
|
+
|
|
26
|
+
# The scratch workspace the agent writes into — disposable with the container.
|
|
27
|
+
RUN mkdir -p /arena
|
|
28
|
+
ENV OLLAMA_BASE_URL=http://host.docker.internal:11434
|
|
29
|
+
|
|
30
|
+
# The single-task runbook entrypoint; the arena runner passes --model / --task / --workdir /arena.
|
|
31
|
+
ENTRYPOINT ["uv", "run", "python", "scripts/run_tool_agent.py"]
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|