agentic-qe 3.11.0 → 3.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/agents/README.md +50 -0
- package/.claude/commands/agents/agent-capabilities.md +140 -0
- package/.claude/commands/agents/agent-coordination.md +28 -0
- package/.claude/commands/agents/agent-spawning.md +28 -0
- package/.claude/commands/agents/agent-types.md +216 -0
- package/.claude/commands/agents/health.md +139 -0
- package/.claude/commands/agents/list.md +100 -0
- package/.claude/commands/agents/logs.md +130 -0
- package/.claude/commands/agents/metrics.md +122 -0
- package/.claude/commands/agents/pool.md +127 -0
- package/.claude/commands/agents/spawn.md +140 -0
- package/.claude/commands/agents/status.md +115 -0
- package/.claude/commands/agents/stop.md +102 -0
- package/.claude/commands/claude-flow-help.md +1 -1
- package/.claude/commands/coordination/README.md +9 -0
- package/.claude/commands/coordination/agent-spawn.md +25 -0
- package/.claude/commands/coordination/init.md +44 -0
- package/.claude/commands/coordination/orchestrate.md +43 -0
- package/.claude/commands/coordination/spawn.md +45 -0
- package/.claude/commands/coordination/swarm-init.md +85 -0
- package/.claude/commands/coordination/task-orchestrate.md +25 -0
- package/.claude/commands/github/code-review-swarm.md +1 -1
- package/.claude/commands/github/issue-tracker.md +3 -3
- package/.claude/commands/github/release-manager.md +5 -3
- package/.claude/commands/github/release-swarm.md +1 -1
- package/.claude/commands/github/repo-architect.md +2 -2
- package/.claude/commands/github/swarm-issue.md +4 -1
- package/.claude/commands/github/swarm-pr.md +6 -3
- package/.claude/commands/github/sync-coordinator.md +3 -1
- package/.claude/commands/github/workflow-automation.md +2 -2
- package/.claude/commands/hive-mind/README.md +17 -0
- package/.claude/commands/hive-mind/hive-mind-consensus.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-init.md +18 -0
- package/.claude/commands/hive-mind/hive-mind-memory.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-metrics.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-resume.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-sessions.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-spawn.md +21 -0
- package/.claude/commands/hive-mind/hive-mind-status.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-stop.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-wizard.md +8 -0
- package/.claude/commands/hive-mind/hive-mind.md +27 -0
- package/.claude/commands/memory/README.md +9 -0
- package/.claude/commands/memory/memory-persist.md +25 -0
- package/.claude/commands/memory/memory-search.md +25 -0
- package/.claude/commands/memory/memory-usage.md +25 -0
- package/.claude/commands/memory/neural.md +47 -0
- package/.claude/commands/swarm/README.md +15 -0
- package/.claude/commands/swarm/analysis.md +95 -0
- package/.claude/commands/swarm/development.md +96 -0
- package/.claude/commands/swarm/examples.md +168 -0
- package/.claude/commands/swarm/maintenance.md +102 -0
- package/.claude/commands/swarm/optimization.md +117 -0
- package/.claude/commands/swarm/research.md +136 -0
- package/.claude/commands/swarm/swarm-analysis.md +8 -0
- package/.claude/commands/swarm/swarm-background.md +8 -0
- package/.claude/commands/swarm/swarm-init.md +19 -0
- package/.claude/commands/swarm/swarm-modes.md +8 -0
- package/.claude/commands/swarm/swarm-monitor.md +8 -0
- package/.claude/commands/swarm/swarm-spawn.md +19 -0
- package/.claude/commands/swarm/swarm-status.md +8 -0
- package/.claude/commands/swarm/swarm-strategies.md +8 -0
- package/.claude/commands/swarm/swarm.md +87 -0
- package/.claude/commands/swarm/testing.md +131 -0
- package/.claude/commands/workflows/README.md +9 -0
- package/.claude/commands/workflows/development.md +78 -0
- package/.claude/commands/workflows/research.md +63 -0
- package/.claude/commands/workflows/workflow-create.md +25 -0
- package/.claude/commands/workflows/workflow-execute.md +25 -0
- package/.claude/commands/workflows/workflow-export.md +25 -0
- package/.claude/helpers/auto-commit.sh +1 -1
- package/.claude/helpers/auto-memory-hook.mjs +37 -4
- package/.claude/helpers/github-safe.js +90 -40
- package/.claude/helpers/github-setup.sh +30 -13
- package/.claude/helpers/hook-handler.cjs +68 -49
- package/.claude/helpers/intelligence.cjs +156 -27
- package/.claude/helpers/post-commit +1 -1
- package/.claude/helpers/pre-commit +1 -1
- package/.claude/helpers/quick-start.sh +4 -4
- package/.claude/helpers/router.js +70 -31
- package/.claude/helpers/ruflo-hook.cjs +59 -0
- package/.claude/helpers/session.js +28 -6
- package/.claude/helpers/setup-mcp.sh +3 -3
- package/.claude/helpers/statusline.cjs +584 -468
- package/.claude/helpers/statusline.js +47 -11
- package/.claude/skills/github-code-review/SKILL.md +2 -17
- package/.claude/skills/github-multi-repo/SKILL.md +4 -16
- package/.claude/skills/github-project-management/SKILL.md +18 -33
- package/.claude/skills/github-release-management/SKILL.md +4 -21
- package/.claude/skills/github-workflow-automation/SKILL.md +8 -26
- package/.claude/skills/pair-programming/SKILL.md +2 -2
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +2 -2
- package/.claude/skills/skill-builder/SKILL.md +0 -103
- package/.claude/skills/skills-manifest.json +1 -1
- package/.claude/skills/sparc-methodology/SKILL.md +2 -11
- package/.claude/skills/stream-chain/SKILL.md +0 -3
- package/.claude/skills/swarm-advanced/SKILL.md +2 -5
- package/.claude/skills/swarm-orchestration/SKILL.md +1 -1
- package/.claude/skills/verification-quality/SKILL.md +121 -93
- package/CHANGELOG.md +49 -0
- package/assets/skills/pair-programming/SKILL.md +2 -2
- package/assets/skills/verification-quality/SKILL.md +121 -93
- package/dist/audit/witness-chain.d.ts +1 -1
- package/dist/audit/witness-findings.d.ts +50 -0
- package/dist/audit/witness-findings.js +41 -0
- package/dist/cli/bundle.js +5 -5
- package/dist/cli/chunks/adapter-A6GCBONS.js +2 -0
- package/dist/cli/chunks/{agent-booster-wasm-5CSKQB4O.js → agent-booster-wasm-3OJAT664.js} +2 -2
- package/dist/cli/chunks/{agent-handler-EBV3OKTE.js → agent-handler-6TCTI5AT.js} +2 -2
- package/dist/cli/chunks/{agent-memory-branch-RZ53YM2U.js → agent-memory-branch-FAWCYEGJ.js} +2 -2
- package/dist/cli/chunks/aqe-learning-engine-FRCSXNMG.js +2 -0
- package/dist/cli/chunks/{arena-UCP74DRO.js → arena-O2TCUQBF.js} +4 -4
- package/dist/cli/chunks/{arena-QWYTIQ6I.js → arena-UVYIGYUF.js} +2 -2
- package/dist/cli/chunks/{audit-M4FNIX47.js → audit-AYESKHAJ.js} +2 -2
- package/dist/cli/chunks/base-CZ3EHBU5.js +2 -0
- package/dist/cli/chunks/{hnswlib-node-HMZC5TXM.js → better-sqlite3-MJNUEPYB.js} +2 -2
- package/dist/cli/chunks/{brain-handler-OY6Q2GY5.js → brain-handler-KSJBVTHZ.js} +3 -3
- package/dist/cli/chunks/{branch-enumerator-TQWN4NIX.js → branch-enumerator-4O3S42EG.js} +2 -2
- package/dist/cli/chunks/{browser-2EH3RXJ2.js → browser-5VXK323P.js} +2 -2
- package/dist/cli/chunks/browser-workflow-EKTGQQBQ.js +2 -0
- package/dist/cli/chunks/{chunk-SQPDGRYR.js → chunk-22FHOXEE.js} +1 -1
- package/dist/cli/chunks/{chunk-ZEUUVLS2.js → chunk-2RE32VOF.js} +1 -1
- package/dist/cli/chunks/{chunk-ITRUZ3WE.js → chunk-3D4HNUZM.js} +2 -2
- package/dist/cli/chunks/{chunk-6VQKNPGY.js → chunk-3DS7ZHA7.js} +2 -2
- package/dist/cli/chunks/{chunk-Z45QDDZQ.js → chunk-3G25ZBQ6.js} +1 -1
- package/dist/cli/chunks/{chunk-ETGEGMYS.js → chunk-3IMEDZIS.js} +3 -3
- package/dist/cli/chunks/{chunk-BEOGI5FC.js → chunk-3V5DAM37.js} +2 -2
- package/dist/cli/chunks/{chunk-UFMW25MS.js → chunk-3XCEFSUK.js} +2 -2
- package/dist/cli/chunks/{chunk-QYXTESM3.js → chunk-437XL5VZ.js} +2 -2
- package/dist/cli/chunks/{chunk-XVQUVCFR.js → chunk-44HXRFOP.js} +2 -2
- package/dist/cli/chunks/{chunk-VGYUVMSN.js → chunk-4565IIF6.js} +2 -2
- package/dist/cli/chunks/{chunk-IFTEM672.js → chunk-4BMPFEEG.js} +2 -2
- package/dist/cli/chunks/{chunk-MKLLB4PM.js → chunk-4G4GTF36.js} +4 -4
- package/dist/cli/chunks/{chunk-R7FHQQAV.js → chunk-4OYC5TIZ.js} +2 -2
- package/dist/cli/chunks/{chunk-LFT7WYHW.js → chunk-4RUS5E3Q.js} +2 -2
- package/dist/cli/chunks/{chunk-IKNDGXZZ.js → chunk-4S3UIY3G.js} +2 -2
- package/dist/cli/chunks/{chunk-JQM64WJ2.js → chunk-4UHWZ47M.js} +1 -1
- package/dist/cli/chunks/{chunk-NBTKI2TX.js → chunk-56PICCZN.js} +2 -2
- package/dist/cli/chunks/chunk-57WGS6BI.js +2 -0
- package/dist/cli/chunks/{chunk-MDYI4IIW.js → chunk-5LDUW2FD.js} +1 -1
- package/dist/cli/chunks/{chunk-RPYYS6BX.js → chunk-5PSIKJL5.js} +2 -2
- package/dist/cli/chunks/{chunk-Y7UJC5OL.js → chunk-5QFZEEJ2.js} +3 -3
- package/dist/cli/chunks/{chunk-HNSZDIQU.js → chunk-5Y7GXQOM.js} +2 -2
- package/dist/cli/chunks/{chunk-DV7662EZ.js → chunk-6CH7476R.js} +1 -1
- package/dist/cli/chunks/{chunk-N52ZBTPM.js → chunk-6WNYBIPS.js} +2 -2
- package/dist/cli/chunks/{chunk-WBQEOACC.js → chunk-6YNXH6H4.js} +2 -2
- package/dist/cli/chunks/{chunk-SLWJNHCR.js → chunk-6ZAUNPAI.js} +2 -2
- package/dist/cli/chunks/{chunk-4OTA6KYJ.js → chunk-72UPBNVF.js} +2 -2
- package/dist/cli/chunks/{chunk-KOOY72E3.js → chunk-76UVJLPM.js} +2 -2
- package/dist/cli/chunks/{chunk-YR44KQUK.js → chunk-7DQLYWLR.js} +1 -1
- package/dist/cli/chunks/{chunk-I2HQLBWG.js → chunk-7GP7ZG3K.js} +2 -2
- package/dist/cli/chunks/{chunk-GGSXHGWD.js → chunk-7OAKIXNM.js} +2 -2
- package/dist/cli/chunks/{chunk-3GWSHRDA.js → chunk-7QICU44H.js} +2 -2
- package/dist/cli/chunks/{chunk-ACV2WVMX.js → chunk-7SRSOZMP.js} +1 -1
- package/dist/cli/chunks/{chunk-X2L4POJE.js → chunk-7WQKKYYG.js} +1 -1
- package/dist/cli/chunks/{chunk-ZFP3O5FM.js → chunk-AEZMNFXM.js} +1 -1
- package/dist/cli/chunks/{chunk-2TUVBEWK.js → chunk-AG4BYKUV.js} +2 -2
- package/dist/cli/chunks/{chunk-FTOICJQG.js → chunk-AL54LED5.js} +2 -2
- package/dist/cli/chunks/{chunk-IQSPL2H4.js → chunk-ATQTTGSE.js} +2 -2
- package/dist/cli/chunks/{chunk-3J6LYF6I.js → chunk-B5EE63VE.js} +2 -2
- package/dist/cli/chunks/{chunk-JN3IQB4L.js → chunk-B6U56VWG.js} +1 -1
- package/dist/cli/chunks/{chunk-3LP5GPGU.js → chunk-BOQNPFO5.js} +1 -1
- package/dist/cli/chunks/{chunk-G25YZ7Z6.js → chunk-BR4ERWVD.js} +2 -2
- package/dist/cli/chunks/{chunk-PJ4HSXH3.js → chunk-BVFNF3RW.js} +1 -1
- package/dist/cli/chunks/{chunk-KZE5UR4T.js → chunk-BXLWERBR.js} +3 -3
- package/dist/cli/chunks/{chunk-7MBF3S25.js → chunk-C27UV6DO.js} +1 -1
- package/dist/cli/chunks/{chunk-453UDYD2.js → chunk-C7FYDE5F.js} +161 -154
- package/dist/cli/chunks/{chunk-HMSPPGUF.js → chunk-CIDTFU3C.js} +2 -2
- package/dist/cli/chunks/{chunk-HHSEIPSQ.js → chunk-CII57TME.js} +1 -1
- package/dist/cli/chunks/{chunk-DCJIXDO6.js → chunk-CN2HMHIY.js} +2 -2
- package/dist/cli/chunks/{chunk-5ASPEVVF.js → chunk-CXIFCN6G.js} +1 -1
- package/dist/cli/chunks/{chunk-GBFAQ4DW.js → chunk-CZU5G6J4.js} +1 -1
- package/dist/cli/chunks/{chunk-JQSA6EMI.js → chunk-D4DAZ3P2.js} +2 -2
- package/dist/cli/chunks/{chunk-73EWPVBJ.js → chunk-D6MPGK7R.js} +2 -2
- package/dist/cli/chunks/{chunk-CERSTEAJ.js → chunk-DZT4A7R3.js} +2 -2
- package/dist/cli/chunks/{chunk-UEH6C5JA.js → chunk-EFRIMR74.js} +1 -1
- package/dist/cli/chunks/{chunk-PC3VIR2A.js → chunk-EJSDQQZH.js} +2 -2
- package/dist/cli/chunks/{chunk-XMZ2DHUL.js → chunk-EQYDPF52.js} +1 -1
- package/dist/cli/chunks/{chunk-QCJ7YOVN.js → chunk-EZBXCEBV.js} +2 -2
- package/dist/cli/chunks/{chunk-FGOVDO3R.js → chunk-FBOPSWF6.js} +2 -2
- package/dist/cli/chunks/{chunk-TGLEREP5.js → chunk-FK3XYV3A.js} +2 -2
- package/dist/cli/chunks/{chunk-RKDNLPZM.js → chunk-FOD6JEEU.js} +2 -2
- package/dist/cli/chunks/{chunk-ETZ62NFD.js → chunk-GUSW3OGX.js} +1 -1
- package/dist/cli/chunks/{chunk-VVJXQ4FR.js → chunk-H4V6WCF7.js} +2 -2
- package/dist/cli/chunks/{chunk-IOQYSR5S.js → chunk-H5GCRC2D.js} +2 -2
- package/dist/cli/chunks/{chunk-ISVBO4XO.js → chunk-HMVL55QX.js} +2 -2
- package/dist/cli/chunks/{chunk-2BBKA5J4.js → chunk-HOFEAA4R.js} +1 -1
- package/dist/cli/chunks/{chunk-OZQIDDXB.js → chunk-HYT5EMES.js} +2 -2
- package/dist/cli/chunks/{chunk-KBVXKFDI.js → chunk-IAHJ62JS.js} +4 -4
- package/dist/cli/chunks/{chunk-AYOTODUV.js → chunk-IIX5Y7BO.js} +1 -1
- package/dist/cli/chunks/{chunk-YSTWLDVD.js → chunk-ILZHECWZ.js} +3 -3
- package/dist/cli/chunks/{chunk-T6KT63NC.js → chunk-IUVAWWQG.js} +2 -2
- package/dist/cli/chunks/{chunk-ZK56THZT.js → chunk-IVZVVZZ3.js} +3 -3
- package/dist/cli/chunks/{chunk-FMULOSBL.js → chunk-J2LAYCYZ.js} +1 -1
- package/dist/cli/chunks/{chunk-7Q6CMSMD.js → chunk-JGHEGMLD.js} +3 -3
- package/dist/cli/chunks/{chunk-72QNONO6.js → chunk-K3BBLIWW.js} +2 -2
- package/dist/cli/chunks/{chunk-XSG4XKGO.js → chunk-K7XPKGOL.js} +2 -2
- package/dist/cli/chunks/{chunk-YRP73HO4.js → chunk-KIBP3LGY.js} +1 -1
- package/dist/cli/chunks/{chunk-SHW43QQV.js → chunk-KRUKMGPF.js} +2 -2
- package/dist/cli/chunks/{chunk-WP6XUSVW.js → chunk-L2QHZFC3.js} +1 -1
- package/dist/cli/chunks/{chunk-AVKGDS6F.js → chunk-LNV76GGB.js} +2 -2
- package/dist/cli/chunks/{chunk-IHNBZ5XG.js → chunk-LOPM3YIO.js} +2 -2
- package/dist/cli/chunks/{chunk-JNX7IRSI.js → chunk-LSZLXLZA.js} +2 -2
- package/dist/cli/chunks/{chunk-NI7O3GKZ.js → chunk-MILWEZSZ.js} +3 -3
- package/dist/cli/chunks/{chunk-7PTA7AVW.js → chunk-MX6M2VPB.js} +1 -1
- package/dist/cli/chunks/{chunk-YQIMO7VJ.js → chunk-N4OWZLH5.js} +2 -2
- package/dist/cli/chunks/{chunk-7BD7DZCB.js → chunk-N52WQO3G.js} +2 -2
- package/dist/cli/chunks/{chunk-Y7TBCHW4.js → chunk-N6NSZG7Z.js} +2 -2
- package/dist/cli/chunks/{chunk-C33BMWYZ.js → chunk-N6RSJGTW.js} +5 -5
- package/dist/cli/chunks/{chunk-G5VE3HQW.js → chunk-NKCL6RAF.js} +2 -2
- package/dist/cli/chunks/{chunk-LTH6XARD.js → chunk-NVJIOCS5.js} +2 -2
- package/dist/cli/chunks/{chunk-P3NV6KN3.js → chunk-NYWK7ZSX.js} +1 -1
- package/dist/cli/chunks/{chunk-5DG6H553.js → chunk-O5NF6BBD.js} +1 -1
- package/dist/cli/chunks/{chunk-J425SQFE.js → chunk-O75SVMMB.js} +2 -2
- package/dist/cli/chunks/{chunk-XKRG2U3V.js → chunk-OHBZON7T.js} +1 -1
- package/dist/cli/chunks/{chunk-NQD4CMXC.js → chunk-OUBYADPD.js} +2 -2
- package/dist/cli/chunks/{chunk-7E5NYLJT.js → chunk-OUSD2RWO.js} +2 -2
- package/dist/cli/chunks/{chunk-VHON5NDM.js → chunk-OX2PGDUM.js} +3 -3
- package/dist/cli/chunks/{chunk-PUTRXS5I.js → chunk-P7CMWL7Y.js} +2 -2
- package/dist/cli/chunks/{chunk-R3YO3Z7I.js → chunk-PY4YQDBM.js} +4 -4
- package/dist/cli/chunks/{chunk-BA4WZIAQ.js → chunk-QEDS3MOJ.js} +2 -2
- package/dist/cli/chunks/{chunk-X2TUDGFL.js → chunk-QMN563LV.js} +10 -10
- package/dist/cli/chunks/{chunk-SKL225P5.js → chunk-QOR4YAZY.js} +2 -2
- package/dist/cli/chunks/{chunk-F6Y7DTHR.js → chunk-QUTKELAS.js} +2 -2
- package/dist/cli/chunks/{chunk-HJFQVKPI.js → chunk-QXDZN2WX.js} +1 -1
- package/dist/cli/chunks/{chunk-RVQW6CBF.js → chunk-S456W64P.js} +2 -2
- package/dist/cli/chunks/{chunk-F62ZQZQQ.js → chunk-S7IHSELP.js} +2 -2
- package/dist/cli/chunks/{chunk-FMKALHT3.js → chunk-S7ZHD6VN.js} +2 -2
- package/dist/cli/chunks/{chunk-AURDGQNB.js → chunk-SU4YXUVK.js} +2 -2
- package/dist/cli/chunks/{chunk-MTSMFEWK.js → chunk-SZPTUV3B.js} +2 -2
- package/dist/cli/chunks/{chunk-O6FN53HB.js → chunk-T7PUM6OY.js} +1 -1
- package/dist/cli/chunks/{chunk-JZFA2PWY.js → chunk-TCKBICJ3.js} +2 -2
- package/dist/cli/chunks/{chunk-DDQWW22L.js → chunk-TOQJWLJV.js} +2 -2
- package/dist/cli/chunks/{chunk-2WVLFT2I.js → chunk-TUEDIQHY.js} +1 -1
- package/dist/cli/chunks/{chunk-QGBXENIP.js → chunk-U5GCSSYX.js} +1 -1
- package/dist/cli/chunks/{chunk-N3R3JGUY.js → chunk-UDLN2THT.js} +1 -1
- package/dist/cli/chunks/{chunk-N7MKF4F4.js → chunk-V6YDM37M.js} +1 -1
- package/dist/cli/chunks/{chunk-B4QA3YN6.js → chunk-VGR65B4Y.js} +1 -1
- package/dist/cli/chunks/{chunk-LCDRRAES.js → chunk-VRHLHGKR.js} +2 -2
- package/dist/cli/chunks/{chunk-XW5OXBVV.js → chunk-VS2G6LX5.js} +2 -2
- package/dist/cli/chunks/{chunk-L7GQKJLV.js → chunk-W6RS5S4Q.js} +2 -2
- package/dist/cli/chunks/{chunk-LYV7WJWA.js → chunk-WEPZOCN7.js} +1 -1
- package/dist/cli/chunks/{chunk-2ZC7S4UG.js → chunk-WIC5UZCQ.js} +2 -2
- package/dist/cli/chunks/{chunk-ZT4NPTML.js → chunk-X2OVUBF6.js} +2 -2
- package/dist/cli/chunks/{chunk-D3S4SRSA.js → chunk-X4GKYSOH.js} +2 -2
- package/dist/cli/chunks/{chunk-V6WJVFRN.js → chunk-XEVUW4QL.js} +2 -2
- package/dist/cli/chunks/{chunk-PVBJUANU.js → chunk-XMDZRULK.js} +2 -2
- package/dist/cli/chunks/{chunk-5OJXVVTI.js → chunk-YFY35CSD.js} +2 -2
- package/dist/cli/chunks/{chunk-TYS77XHV.js → chunk-Z6ADE3KJ.js} +2 -2
- package/dist/cli/chunks/{chunk-QZQGYSDG.js → chunk-ZKPOKMJZ.js} +2 -2
- package/dist/cli/chunks/{chunk-2QU6C3OS.js → chunk-ZRWAFMM7.js} +2 -2
- package/dist/cli/chunks/{ci-4JK2NFCD.js → ci-KTWY7BZT.js} +2 -2
- package/dist/cli/chunks/{ci-output-LCGTJQWC.js → ci-output-WOX6QBMS.js} +2 -2
- package/dist/cli/chunks/{circuit-breaker-EJF7D3L4.js → circuit-breaker-6XKOSFIF.js} +2 -2
- package/dist/cli/chunks/{claude-flow-setup-3RUC6OB4.js → claude-flow-setup-5JA4MNE4.js} +2 -2
- package/dist/cli/chunks/client-X3KUJ6R5.js +2 -0
- package/dist/cli/chunks/{cline-installer-6LY5C5QH.js → cline-installer-Z2ANHEKW.js} +2 -2
- package/dist/cli/chunks/{code-MPDG4UHS.js → code-NO4ZKNDU.js} +2 -2
- package/dist/cli/chunks/{code-index-extractor-OY5GQJBM.js → code-index-extractor-VV4OEPG7.js} +2 -2
- package/dist/cli/chunks/{codex-installer-BO7E2ZVA.js → codex-installer-BP7Y2NYR.js} +2 -2
- package/dist/cli/chunks/{completions-VGL3KJ2R.js → completions-YULJQUF4.js} +2 -2
- package/dist/cli/chunks/{complexity-analyzer-5DPUK7IL.js → complexity-analyzer-D7XYPQ76.js} +2 -2
- package/dist/cli/chunks/{continuedev-installer-LFDG2D42.js → continuedev-installer-E3L7UF72.js} +2 -2
- package/dist/cli/chunks/{copilot-installer-SEMMMIZH.js → copilot-installer-5TRUMJC5.js} +2 -2
- package/dist/cli/chunks/core-handlers-A2EQB3UH.js +2 -0
- package/dist/cli/chunks/{cost-tracker-OPBC6FQM.js → cost-tracker-QTYSJMSV.js} +2 -2
- package/dist/cli/chunks/{coverage-CFDUSRKU.js → coverage-D5DKZ3XT.js} +3 -3
- package/dist/cli/chunks/cross-domain-router-OKZ2PDHT.js +2 -0
- package/dist/cli/chunks/{cursor-installer-6TXUUVY4.js → cursor-installer-UDBHGUIG.js} +2 -2
- package/dist/cli/chunks/{daemon-7BDBPPAF.js → daemon-2GXYN7F7.js} +3 -3
- package/dist/cli/chunks/{daemon-5KO46YQR.js → daemon-IVWUMQKL.js} +4 -4
- package/dist/cli/chunks/{dag-attention-scheduler-6DQKZOUW.js → dag-attention-scheduler-PWXR4QTU.js} +2 -2
- package/dist/cli/chunks/{detect-R2QAYDPI.js → detect-C6P7ONFB.js} +2 -2
- package/dist/cli/chunks/{dist-node-3POCIJ4N.js → dist-node-2BUFM2JK.js} +2 -2
- package/dist/cli/chunks/{domain-handler-KW63CHUH.js → domain-handler-Q2GWZLDM.js} +2 -2
- package/dist/cli/chunks/{domain-transfer-2QPOJCUD.js → domain-transfer-GMUBAM3J.js} +2 -2
- package/dist/cli/chunks/dream-ZBP4Z5C3.js +2 -0
- package/dist/cli/chunks/{embed-and-insert-pattern-OIDJZQEP.js → embed-and-insert-pattern-EFUERRM2.js} +2 -2
- package/dist/cli/chunks/{eval-UGEKTTAQ.js → eval-24FIC43F.js} +2 -2
- package/dist/cli/chunks/{experience-capture-middleware-3BIM2TT7.js → experience-capture-middleware-R4UP2Q2M.js} +3 -3
- package/dist/cli/chunks/{fast-paths-HCJQXB7W.js → fast-paths-RQCGGTXB.js} +2 -2
- package/dist/cli/chunks/{feature-flags-GDGJKLN4.js → feature-flags-APTWWVNQ.js} +2 -2
- package/dist/cli/chunks/{feature-flags-W4JSFBMV.js → feature-flags-SOXVYIBN.js} +2 -2
- package/dist/cli/chunks/{file-discovery-JMUZ4MUH.js → file-discovery-66KRMXVF.js} +2 -2
- package/dist/cli/chunks/{fleet-YNNK2CKW.js → fleet-EMBNKO5Q.js} +3 -3
- package/dist/cli/chunks/{gnn-wrapper-R2ZY6CDD.js → gnn-wrapper-6TKDWFJF.js} +2 -2
- package/dist/cli/chunks/{heartbeat-handler-OZX2EJHQ.js → heartbeat-handler-4ODKJ75H.js} +4 -4
- package/dist/cli/chunks/heartbeat-scheduler-6JUWQXWG.js +2 -0
- package/dist/cli/chunks/hnsw-adapter-JT4BU7XJ.js +2 -0
- package/dist/cli/chunks/hnsw-index-JC5YELJX.js +2 -0
- package/dist/cli/chunks/{hnsw-legacy-bridge-3S6TYCG3.js → hnsw-legacy-bridge-25KFCLUC.js} +2 -2
- package/dist/cli/chunks/{better-sqlite3-RIBLRHJL.js → hnswlib-node-FUWQTM2D.js} +2 -2
- package/dist/cli/chunks/{hooks-KM7WR35T.js → hooks-JIDA2COE.js} +10 -10
- package/dist/cli/chunks/hybrid-router-SLTXHUFG.js +2 -0
- package/dist/cli/chunks/{hypergraph-engine-RX53A73M.js → hypergraph-engine-3YDFDPE3.js} +2 -2
- package/dist/cli/chunks/{hypergraph-handler-3QQB3H3Z.js → hypergraph-handler-VWZX2OJX.js} +3 -3
- package/dist/cli/chunks/impact-analyzer-JXHCMZXY.js +2 -0
- package/dist/cli/chunks/{init-handler-Y62RH4ZI.js → init-handler-DH7VQAMF.js} +6 -6
- package/dist/cli/chunks/init-wizard-EX37TYOG.js +2 -0
- package/dist/cli/chunks/kernel-JPHAG27D.js +2 -0
- package/dist/cli/chunks/{kilocode-installer-26R253L2.js → kilocode-installer-2W2KZCGH.js} +2 -2
- package/dist/cli/chunks/{kiro-installer-PFA5QPZZ.js → kiro-installer-E5KP7OMD.js} +2 -2
- package/dist/cli/chunks/knowledge-graph-5QJZIRYB.js +2 -0
- package/dist/cli/chunks/{learning-CQLM5ANX.js → learning-XJRUVPLF.js} +3 -3
- package/dist/cli/chunks/{llm-router-QZ5PG4PF.js → llm-router-AEEKEMF5.js} +4 -4
- package/dist/cli/chunks/llm-router-service-SE2RO4P5.js +2 -0
- package/dist/cli/chunks/{load-UPA6LPHM.js → load-PZ4YOTBJ.js} +2 -2
- package/dist/cli/chunks/load-test-LOTBWIIS.js +2 -0
- package/dist/cli/chunks/{mcp-LSWTLAJ4.js → mcp-IVA6LC2S.js} +2 -2
- package/dist/cli/chunks/{memory-VGEYYGCG.js → memory-Y3DHXFQE.js} +5 -5
- package/dist/cli/chunks/memory-backend-BSDKTFAN.js +2 -0
- package/dist/cli/chunks/{memory-handlers-QBURG7NA.js → memory-handlers-V5PXEJWL.js} +2 -2
- package/dist/cli/chunks/{multi-model-executor-VZVFBIKC.js → multi-model-executor-646G4S4Y.js} +2 -2
- package/dist/cli/chunks/{opencode-installer-PBQAXNLV.js → opencode-installer-P6KOOTUS.js} +2 -2
- package/dist/cli/chunks/{orchestrator-YND7JB5O.js → orchestrator-T2GVKYMX.js} +5 -5
- package/dist/cli/chunks/pattern-null-store-LRSXCZWM.js +2 -0
- package/dist/cli/chunks/{pipeline-GM5RRUES.js → pipeline-CK2ON45P.js} +2 -2
- package/dist/cli/chunks/{platform-L7OGGRSL.js → platform-OQNSD3A3.js} +2 -2
- package/dist/cli/chunks/{plugin-N4YAE6H5.js → plugin-UOG6RNRM.js} +2 -2
- package/dist/cli/chunks/{prime-radiant-advanced-wasm-7D67XV6Z.js → prime-radiant-advanced-wasm-37UE6TG5.js} +2 -2
- package/dist/cli/chunks/protocol-executor-WPUVJEL7.js +2 -0
- package/dist/cli/chunks/{protocol-handler-V2WTFU7N.js → protocol-handler-V722S6YH.js} +2 -2
- package/dist/cli/chunks/{prove-33DS5Z3N.js → prove-ANGY6W3W.js} +2 -2
- package/dist/cli/chunks/provider-manager-EVPWSH3E.js +2 -0
- package/dist/cli/chunks/qe-reasoning-bank-IH63FG33.js +2 -0
- package/dist/cli/chunks/{quality-WCSEA5GH.js → quality-KG4ALI2L.js} +2 -2
- package/dist/cli/chunks/queen-coordinator-TTCAGYQO.js +2 -0
- package/dist/cli/chunks/{real-embeddings-OQ5F37DG.js → real-embeddings-GUZDO5UN.js} +2 -2
- package/dist/cli/chunks/{roocode-installer-II7LIR2X.js → roocode-installer-WROAR6MJ.js} +2 -2
- package/dist/cli/chunks/router-64Q4ILOQ.js +2 -0
- package/dist/cli/chunks/routing-feedback-KCZV4XXC.js +2 -0
- package/dist/cli/chunks/{routing-handler-6OFHARIY.js → routing-handler-UFPSSS5D.js} +2 -2
- package/dist/cli/chunks/{ruvector-commands-GD5JTR4M.js → ruvector-commands-XJQMKDRM.js} +2 -2
- package/dist/cli/chunks/{rvf-dual-writer-HSK6BYZV.js → rvf-dual-writer-QPRMDKYX.js} +2 -2
- package/dist/cli/chunks/{rvf-migration-adapter-554SMF5S.js → rvf-migration-adapter-SOHBK23K.js} +2 -2
- package/dist/cli/chunks/{rvf-migration-coordinator-OFDBCAYE.js → rvf-migration-coordinator-MTWUSPEJ.js} +2 -2
- package/dist/cli/chunks/rvf-native-adapter-GNJKMURU.js +2 -0
- package/dist/cli/chunks/safe-db-6VBZQIJI.js +2 -0
- package/dist/cli/chunks/schedule-4V7O5IPX.js +2 -0
- package/dist/cli/chunks/scheduler-CQDMHEHN.js +2 -0
- package/dist/cli/chunks/{security-GN4J6DSS.js → security-5MAMQKP6.js} +3 -3
- package/dist/cli/chunks/{shared-rvf-adapter-Q4PM3QCN.js → shared-rvf-adapter-YEUBSRNN.js} +2 -2
- package/dist/cli/chunks/{shared-rvf-dual-writer-R5WK5BXQ.js → shared-rvf-dual-writer-DBQJHG42.js} +2 -2
- package/dist/cli/chunks/sqlite-persistence-7DHUFTHL.js +2 -0
- package/dist/cli/chunks/{status-handler-AHS5WVMG.js → status-handler-ZUB2UKQZ.js} +2 -2
- package/dist/cli/chunks/{structural-health-5KUKNLHZ.js → structural-health-B2GHENWX.js} +2 -2
- package/dist/cli/chunks/{sync-PUMM3SR6.js → sync-7VMXJTR2.js} +2 -2
- package/dist/cli/chunks/{sync-TQLGD5HX.js → sync-YCUUW3IP.js} +2 -2
- package/dist/cli/chunks/{task-handler-D7VXV4AF.js → task-handler-N7LJTXZM.js} +2 -2
- package/dist/cli/chunks/{task-handlers-QMN4SWUG.js → task-handlers-GDHNJV2E.js} +3 -3
- package/dist/cli/chunks/{test-HEWZR6YQ.js → test-6COGC5KI.js} +4 -4
- package/dist/cli/chunks/{test-scheduling-VTMLBEPA.js → test-scheduling-CUERHJMF.js} +3 -3
- package/dist/cli/chunks/{token-bootstrap-IYBG7PQ6.js → token-bootstrap-JTGSL6PP.js} +2 -2
- package/dist/cli/chunks/{token-usage-C7H27BFZ.js → token-usage-LSG3JYGX.js} +2 -2
- package/dist/cli/chunks/{transformers-5ZJVC6NB.js → transformers-ODIITRCT.js} +2 -2
- package/dist/cli/chunks/{tree-sitter-wasm-parser-EARBJG2H.js → tree-sitter-wasm-parser-KSP7ZZ5H.js} +2 -2
- package/dist/cli/chunks/{types-3IHE42PZ.js → types-6N6SUU2O.js} +2 -2
- package/dist/cli/chunks/unified-memory-MQA72NLP.js +2 -0
- package/dist/cli/chunks/unified-memory-hnsw-K7HA3CWV.js +2 -0
- package/dist/cli/chunks/unified-persistence-2DXB4OE4.js +2 -0
- package/dist/cli/chunks/{upgrade-YP3VFSXO.js → upgrade-7SCVOCPS.js} +2 -2
- package/dist/cli/chunks/{validate-VSBNKPN6.js → validate-762ISH2Y.js} +2 -2
- package/dist/cli/chunks/{validate-swarm-GOCJVWXE.js → validate-swarm-R6WYYXGO.js} +2 -2
- package/dist/cli/chunks/{vibium-U6YKCLDF.js → vibium-5GZYSUDQ.js} +2 -2
- package/dist/cli/chunks/visual-security-UD6CARIJ.js +2 -0
- package/dist/cli/chunks/{web-tree-sitter-TSNVGWSN.js → web-tree-sitter-VYYVAJTY.js} +2 -2
- package/dist/cli/chunks/{windsurf-installer-2VKMEFSD.js → windsurf-installer-RRIOR3B6.js} +2 -2
- package/dist/cli/chunks/witness-chain-LWALPPMC.js +2 -0
- package/dist/cli/chunks/{witness-chain-BWZCW52H.js → witness-chain-SRVBEKDB.js} +2 -2
- package/dist/cli/chunks/{workflow-J6SCYLU3.js → workflow-XNUDHGEC.js} +4 -4
- package/dist/cli/chunks/workflow-orchestrator-QU652FLH.js +2 -0
- package/dist/cli/chunks/{wrappers-M5C7DONW.js → wrappers-3STST7QW.js} +2 -2
- package/dist/domains/requirements-validation/coordinator.d.ts +16 -2
- package/dist/domains/requirements-validation/coordinator.js +112 -7
- package/dist/domains/requirements-validation/plugin.js +20 -1
- package/dist/domains/test-generation/coordinator.d.ts +3 -1
- package/dist/domains/test-generation/coordinator.js +15 -33
- package/dist/integrations/darwin/types.d.ts +10 -3
- package/dist/integrations/darwin/types.js +10 -3
- package/dist/mcp/bundle.js +366 -359
- package/dist/mcp/tool-scoping.d.ts +8 -2
- package/dist/mcp/tool-scoping.js +13 -0
- package/dist/routing/free-tier/coordinator-support.d.ts +90 -0
- package/dist/routing/free-tier/coordinator-support.js +78 -0
- package/dist/routing/free-tier/executor.d.ts +43 -1
- package/dist/routing/free-tier/executor.js +69 -26
- package/dist/routing/free-tier/index.d.ts +1 -0
- package/dist/routing/free-tier/index.js +1 -0
- package/dist/routing/value-score.d.ts +49 -0
- package/dist/routing/value-score.js +54 -0
- package/dist/shared/optional-module.d.ts +23 -0
- package/dist/shared/optional-module.js +46 -0
- package/dist/verification/adversarial-verify/calibrate.d.ts +32 -0
- package/dist/verification/adversarial-verify/calibrate.js +33 -0
- package/dist/verification/adversarial-verify/gate.d.ts +38 -0
- package/dist/verification/adversarial-verify/gate.js +32 -0
- package/dist/verification/adversarial-verify/index.d.ts +20 -0
- package/dist/verification/adversarial-verify/index.js +6 -0
- package/dist/verification/adversarial-verify/prompts.d.ts +14 -0
- package/dist/verification/adversarial-verify/prompts.js +17 -0
- package/dist/verification/adversarial-verify/synthesize.d.ts +18 -0
- package/dist/verification/adversarial-verify/synthesize.js +35 -0
- package/dist/verification/adversarial-verify/types.d.ts +59 -0
- package/dist/verification/adversarial-verify/types.js +10 -0
- package/dist/verification/adversarial-verify/verify.d.ts +20 -0
- package/dist/verification/adversarial-verify/verify.js +34 -0
- package/package.json +10 -1
- package/dist/cli/chunks/adapter-WLFT5VMV.js +0 -2
- package/dist/cli/chunks/aqe-learning-engine-JBH4GZUM.js +0 -2
- package/dist/cli/chunks/base-A7JGM473.js +0 -2
- package/dist/cli/chunks/browser-workflow-TIDJWULK.js +0 -2
- package/dist/cli/chunks/chunk-C4OYHUJV.js +0 -2
- package/dist/cli/chunks/client-ZLJ3JMBC.js +0 -2
- package/dist/cli/chunks/core-handlers-EM7FUYTI.js +0 -2
- package/dist/cli/chunks/cross-domain-router-DYGHQ6P5.js +0 -2
- package/dist/cli/chunks/dream-DBE5D5BD.js +0 -2
- package/dist/cli/chunks/heartbeat-scheduler-NFHAANNL.js +0 -2
- package/dist/cli/chunks/hnsw-adapter-HMPCZFBY.js +0 -2
- package/dist/cli/chunks/hnsw-index-KRIWSXX4.js +0 -2
- package/dist/cli/chunks/hybrid-router-BAB32B2W.js +0 -2
- package/dist/cli/chunks/impact-analyzer-3D6XHWQE.js +0 -2
- package/dist/cli/chunks/init-wizard-LLU3WVGC.js +0 -2
- package/dist/cli/chunks/kernel-ZFHAYHHJ.js +0 -2
- package/dist/cli/chunks/knowledge-graph-ETZ65KOY.js +0 -2
- package/dist/cli/chunks/llm-router-service-R6CTGF5I.js +0 -2
- package/dist/cli/chunks/load-test-UOWIJUCH.js +0 -2
- package/dist/cli/chunks/memory-backend-E3ZQKW7A.js +0 -2
- package/dist/cli/chunks/pattern-null-store-OUOJO2RH.js +0 -2
- package/dist/cli/chunks/protocol-executor-KHAPG5CP.js +0 -2
- package/dist/cli/chunks/provider-manager-FGPPW7T4.js +0 -2
- package/dist/cli/chunks/qe-reasoning-bank-TS7XOJDA.js +0 -2
- package/dist/cli/chunks/queen-coordinator-J35FNFQ3.js +0 -2
- package/dist/cli/chunks/router-AFTKPDI5.js +0 -2
- package/dist/cli/chunks/routing-feedback-SABZUJTF.js +0 -2
- package/dist/cli/chunks/rvf-native-adapter-57MDDSFQ.js +0 -2
- package/dist/cli/chunks/safe-db-2HR6MVYM.js +0 -2
- package/dist/cli/chunks/schedule-KLVAN6XI.js +0 -2
- package/dist/cli/chunks/scheduler-WYZ6BC5Y.js +0 -2
- package/dist/cli/chunks/sqlite-persistence-2CGU5INO.js +0 -2
- package/dist/cli/chunks/unified-memory-PMYRQC5K.js +0 -2
- package/dist/cli/chunks/unified-memory-hnsw-7TRL2K5Q.js +0 -2
- package/dist/cli/chunks/unified-persistence-S4BNJK4S.js +0 -2
- package/dist/cli/chunks/visual-security-RPMZ3J7L.js +0 -2
- package/dist/cli/chunks/witness-chain-BTDZSQ6P.js +0 -2
- package/dist/cli/chunks/workflow-orchestrator-42B62D3V.js +0 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{createRequire as __cr}from"module";const require=__cr(import.meta.url);if(process.argv.includes('--version')||process.argv.includes('-v')){console.log("3.11.
|
|
2
|
-
import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v as L,w as M,x as N}from"./chunk-
|
|
1
|
+
import{createRequire as __cr}from"module";const require=__cr(import.meta.url);if(process.argv.includes('--version')||process.argv.includes('-v')){console.log("3.11.1");process.exit(0)}
|
|
2
|
+
import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v as L,w as M,x as N}from"./chunk-SZPTUV3B.js";import{a as v,b as w,c as x,d as y,e as z,f as A,g as B,h as C,i as D,j as E,k as F,l as G,m as H,n as I,o as J,p as K}from"./chunk-ZKPOKMJZ.js";import"./chunk-437XL5VZ.js";import"./chunk-W6RS5S4Q.js";import"./chunk-57WGS6BI.js";import"./chunk-S7IHSELP.js";import"./chunk-IUVAWWQG.js";import"./chunk-N6NSZG7Z.js";import"./chunk-S456W64P.js";import"./chunk-QEDS3MOJ.js";import"./chunk-X2OVUBF6.js";import"./chunk-FBOPSWF6.js";import"./chunk-FOD6JEEU.js";import"./chunk-NKCL6RAF.js";import"./chunk-VRHLHGKR.js";import"./chunk-44HXRFOP.js";import"./chunk-O75SVMMB.js";import"./chunk-D6MPGK7R.js";import"./chunk-N4OWZLH5.js";import"./chunk-7SRSOZMP.js";export{z as GNNLayerFactory,i as QEFlashAttention,x as QEGNNEmbeddingIndex,y as QEGNNIndexFactory,a as QESONA,e as QE_FLASH_ATTENTION_CONFIG,g as QE_PERFORMANCE_TARGETS,f as QE_SONA_CONFIG,A as TensorCompressionFactory,u as batchComputeAttention,K as batchDifferentiableSearch,M as checkRuvectorPackagesAvailable,c as createDomainQESONA,j as createQEFlashAttention,b as createQESONA,D as getDifferentiableSearch,F as getGetCompressionLevel,E as getHierarchicalForward,G as getInit,h as getOptimalBlockConfig,k as getQEFlashAttentionConfig,n as getRuvectorDotProductAttention,m as getRuvectorFlashAttention,p as getRuvectorHyperbolicAttention,B as getRuvectorLayer,q as getRuvectorLinearAttention,r as getRuvectorMoEAttention,o as getRuvectorMultiHeadAttention,L as getRuvectorPackageVersions,C as getTensorCompress,l as getWorkloadTypes,N as initAllRuvectorPackages,w as initGNN,d as isAttentionAvailable,v as isGNNAvailable,s as toFloat32Array,H as toFloat32ArrayGNN,J as toIEmbedding,t as toNumberArrayAttn,I as toNumberArrayGNN};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
import { Result } from '../../shared/types/index.js';
|
|
10
10
|
import { EventBus, MemoryBackend, AgentCoordinator } from '../../kernel/interfaces.js';
|
|
11
11
|
import type { HybridRouter } from '../../shared/llm/router/hybrid-router.js';
|
|
12
|
+
import { type FreeTierCoordinatorConfig, type RoutingFeedbackLike } from '../../routing/free-tier/index.js';
|
|
12
13
|
import { IRequirementsValidationCoordinator, RequirementAnalysis, TestArtifacts, SprintValidation } from './interfaces.js';
|
|
13
14
|
import { BaseDomainCoordinator, type BaseDomainCoordinatorConfig } from '../base-domain-coordinator.js';
|
|
14
15
|
import { type DomainFinding } from '../../coordination/consensus/domain-findings.js';
|
|
@@ -22,7 +23,7 @@ export declare const RequirementsValidationEvents: {
|
|
|
22
23
|
/**
|
|
23
24
|
* CQ-002: Extends BaseDomainCoordinatorConfig — removes duplicate fields
|
|
24
25
|
*/
|
|
25
|
-
export interface CoordinatorConfig extends BaseDomainCoordinatorConfig {
|
|
26
|
+
export interface CoordinatorConfig extends BaseDomainCoordinatorConfig, FreeTierCoordinatorConfig {
|
|
26
27
|
minTestabilityThreshold: number;
|
|
27
28
|
enablePPO: boolean;
|
|
28
29
|
enableSONA: boolean;
|
|
@@ -45,10 +46,14 @@ export declare class RequirementsValidationCoordinator extends BaseDomainCoordin
|
|
|
45
46
|
private readonly bddWriter;
|
|
46
47
|
private readonly testabilityScorer;
|
|
47
48
|
private readonly repository;
|
|
49
|
+
/** Opt-in cheap-first BDD scenario generation (plan 06, ADR-111). Null = off. */
|
|
50
|
+
private readonly freeTierExecutor;
|
|
48
51
|
private ppoAlgorithm?;
|
|
49
52
|
private sonaEngine?;
|
|
50
53
|
private rlInitialized;
|
|
51
|
-
constructor(eventBus: EventBus, memory: MemoryBackend, agentCoordinator: AgentCoordinator, config?: Partial<CoordinatorConfig>, llmRouter?: HybridRouter
|
|
54
|
+
constructor(eventBus: EventBus, memory: MemoryBackend, agentCoordinator: AgentCoordinator, config?: Partial<CoordinatorConfig>, llmRouter?: HybridRouter,
|
|
55
|
+
/** Optional D9 sink — when provided, free-tier outcomes feed routing-feedback. */
|
|
56
|
+
routingFeedback?: RoutingFeedbackLike | null);
|
|
52
57
|
/**
|
|
53
58
|
* Initialize the coordinator
|
|
54
59
|
* CQ-002: Domain-specific initialization
|
|
@@ -74,6 +79,15 @@ export declare class RequirementsValidationCoordinator extends BaseDomainCoordin
|
|
|
74
79
|
/**
|
|
75
80
|
* Generate test artifacts from requirement
|
|
76
81
|
*/
|
|
82
|
+
/**
|
|
83
|
+
* Cheap-first BDD generation (plan 06 broadening; ADR-111 escalation lane).
|
|
84
|
+
* Generates raw Gherkin on the free local tier (best-effort), verifies Gherkin
|
|
85
|
+
* STRUCTURE as the objective oracle (§10 — never the model's own judgement),
|
|
86
|
+
* parses it back into structured scenarios, and escalates the hard tail via the
|
|
87
|
+
* router. Returns null when off or nothing usable → caller falls back to the
|
|
88
|
+
* normal structured path. Off by default.
|
|
89
|
+
*/
|
|
90
|
+
private tryFreeTierScenarios;
|
|
77
91
|
generateTestArtifacts(requirementId: string): Promise<Result<TestArtifacts>>;
|
|
78
92
|
/**
|
|
79
93
|
* Validate sprint requirements
|
|
@@ -10,6 +10,7 @@ import { v4 as uuidv4 } from 'uuid';
|
|
|
10
10
|
import { LoggerFactory } from '../../logging/index.js';
|
|
11
11
|
import { ok, err } from '../../shared/types/index.js';
|
|
12
12
|
import { toError } from '../../shared/error-utils.js';
|
|
13
|
+
import { buildFreeTierExecutor, } from '../../routing/free-tier/index.js';
|
|
13
14
|
import { createEvent } from '../../shared/events/domain-events.js';
|
|
14
15
|
import { RequirementsValidatorService } from './services/requirements-validator.js';
|
|
15
16
|
import { BDDScenarioWriterService } from './services/bdd-scenario-writer.js';
|
|
@@ -93,6 +94,25 @@ class InMemoryRequirementRepository {
|
|
|
93
94
|
* CQ-002: Extends BaseDomainCoordinator
|
|
94
95
|
*/
|
|
95
96
|
const logger = LoggerFactory.create('requirements-validation');
|
|
97
|
+
/** Strip a ```gherkin fence (truncation-robust); else return the text as-is. */
|
|
98
|
+
function stripGherkinFence(s) {
|
|
99
|
+
s = (s ?? '').trim();
|
|
100
|
+
const full = /```(?:gherkin|feature)?\s*([\s\S]*?)```/.exec(s);
|
|
101
|
+
if (full)
|
|
102
|
+
return full[1].trim();
|
|
103
|
+
const open = /```(?:gherkin|feature)?[^\n]*\n([\s\S]*)$/.exec(s);
|
|
104
|
+
return open ? open[1].trim() : s;
|
|
105
|
+
}
|
|
106
|
+
const GHERKIN_STOPWORDS = new Set([
|
|
107
|
+
'given', 'when', 'then', 'scenario', 'feature', 'with', 'that', 'this', 'from', 'into',
|
|
108
|
+
'should', 'must', 'have', 'will', 'shall', 'able', 'user', 'users', 'system', 'value',
|
|
109
|
+
'valid', 'invalid', 'returns', 'return', 'apply', 'using', 'based', 'their', 'they',
|
|
110
|
+
]);
|
|
111
|
+
/** Significant lowercased terms (>3 chars, non-stopword) from a requirement. */
|
|
112
|
+
function significantTerms(requirement) {
|
|
113
|
+
const src = `${requirement.title} ${(requirement.acceptanceCriteria ?? []).join(' ')}`.toLowerCase();
|
|
114
|
+
return Array.from(new Set(src.match(/[a-z][a-z0-9]{3,}/g) ?? [])).filter((w) => !GHERKIN_STOPWORDS.has(w));
|
|
115
|
+
}
|
|
96
116
|
export class RequirementsValidationCoordinator extends BaseDomainCoordinator {
|
|
97
117
|
memory;
|
|
98
118
|
agentCoordinator;
|
|
@@ -100,11 +120,15 @@ export class RequirementsValidationCoordinator extends BaseDomainCoordinator {
|
|
|
100
120
|
bddWriter;
|
|
101
121
|
testabilityScorer;
|
|
102
122
|
repository;
|
|
123
|
+
/** Opt-in cheap-first BDD scenario generation (plan 06, ADR-111). Null = off. */
|
|
124
|
+
freeTierExecutor;
|
|
103
125
|
// V3: RL and SONA integrations
|
|
104
126
|
ppoAlgorithm;
|
|
105
127
|
sonaEngine;
|
|
106
128
|
rlInitialized = false;
|
|
107
|
-
constructor(eventBus, memory, agentCoordinator, config = {}, llmRouter
|
|
129
|
+
constructor(eventBus, memory, agentCoordinator, config = {}, llmRouter,
|
|
130
|
+
/** Optional D9 sink — when provided, free-tier outcomes feed routing-feedback. */
|
|
131
|
+
routingFeedback) {
|
|
108
132
|
const fullConfig = { ...DEFAULT_CONFIG, ...config };
|
|
109
133
|
super(eventBus, 'requirements-validation', fullConfig, {
|
|
110
134
|
verifyFindingTypes: ['requirement-conflict', 'testability-assessment', 'ambiguous-requirement'],
|
|
@@ -116,6 +140,16 @@ export class RequirementsValidationCoordinator extends BaseDomainCoordinator {
|
|
|
116
140
|
this.bddWriter = new BDDScenarioWriterService(memory);
|
|
117
141
|
this.testabilityScorer = new TestabilityScorerService(memory);
|
|
118
142
|
this.repository = new InMemoryRequirementRepository(memory);
|
|
143
|
+
// Opt-in cheap-first BDD generation (plan 06 broadening; ADR-111 escalation
|
|
144
|
+
// lane). OFF by default; BDD/Gherkin is a bounded-gen + objective-oracle fit.
|
|
145
|
+
this.freeTierExecutor = buildFreeTierExecutor({
|
|
146
|
+
config: this.config,
|
|
147
|
+
agentType: 'qe-requirements-validator',
|
|
148
|
+
taskKind: 'requirements-validation',
|
|
149
|
+
llmRouter,
|
|
150
|
+
routingFeedback, // D9 sink (undefined unless wired by the plugin)
|
|
151
|
+
logger,
|
|
152
|
+
});
|
|
119
153
|
}
|
|
120
154
|
// ==========================================================================
|
|
121
155
|
// BaseDomainCoordinator Template Methods
|
|
@@ -294,6 +328,72 @@ export class RequirementsValidationCoordinator extends BaseDomainCoordinator {
|
|
|
294
328
|
/**
|
|
295
329
|
* Generate test artifacts from requirement
|
|
296
330
|
*/
|
|
331
|
+
/**
|
|
332
|
+
* Cheap-first BDD generation (plan 06 broadening; ADR-111 escalation lane).
|
|
333
|
+
* Generates raw Gherkin on the free local tier (best-effort), verifies Gherkin
|
|
334
|
+
* STRUCTURE as the objective oracle (§10 — never the model's own judgement),
|
|
335
|
+
* parses it back into structured scenarios, and escalates the hard tail via the
|
|
336
|
+
* router. Returns null when off or nothing usable → caller falls back to the
|
|
337
|
+
* normal structured path. Off by default.
|
|
338
|
+
*/
|
|
339
|
+
async tryFreeTierScenarios(requirement, scenarioCount) {
|
|
340
|
+
if (!this.freeTierExecutor)
|
|
341
|
+
return null;
|
|
342
|
+
const ac = (requirement.acceptanceCriteria ?? []).map((c, i) => `${i + 1}. ${c}`).join('\n');
|
|
343
|
+
const system = 'You write Gherkin .feature files. Output ONLY a single fenced ```gherkin code block — no prose.';
|
|
344
|
+
const user = `Write a Gherkin feature with ~${scenarioCount} scenarios for this requirement. ` +
|
|
345
|
+
'Use Feature/Scenario/Given/When/Then; cover the acceptance criteria and edge cases.\n\n' +
|
|
346
|
+
`Title: ${requirement.title}\nDescription: ${requirement.description}\n` +
|
|
347
|
+
(ac ? `Acceptance criteria:\n${ac}\n` : '');
|
|
348
|
+
// Objective oracle (structural proxy — does NOT execute the scenarios). Beyond
|
|
349
|
+
// bare structure it requires: parses to >=1 scenario, EVERY scenario has a
|
|
350
|
+
// non-empty Given/When/Then, AND the feature is RELEVANT to the requirement
|
|
351
|
+
// (token overlap) — so generic off-topic boilerplate is rejected, not rewarded
|
|
352
|
+
// (resists the §10 Goodhart trap). Still a proxy, not semantic ground truth.
|
|
353
|
+
const sigTerms = significantTerms(requirement);
|
|
354
|
+
const verify = (out) => {
|
|
355
|
+
const text = stripGherkinFence(out);
|
|
356
|
+
const structural = /\bFeature:/i.test(text) && /\bScenario:/i.test(text) &&
|
|
357
|
+
/\bGiven\b/i.test(text) && /\bWhen\b/i.test(text) && /\bThen\b/i.test(text);
|
|
358
|
+
if (!structural) {
|
|
359
|
+
return { passed: false, feedback: 'must be valid Gherkin: Feature:, Scenario:, and Given/When/Then steps' };
|
|
360
|
+
}
|
|
361
|
+
const parsed = this.bddWriter.parseGherkin(text);
|
|
362
|
+
if (!parsed.success || parsed.value.length === 0) {
|
|
363
|
+
return { passed: false, feedback: 'Gherkin did not parse into any scenario' };
|
|
364
|
+
}
|
|
365
|
+
const wellFormed = parsed.value.every((s) => s.given.length > 0 && s.when.length > 0 && s.then.length > 0);
|
|
366
|
+
if (!wellFormed) {
|
|
367
|
+
return { passed: false, feedback: 'every scenario needs at least one Given, one When, and one Then step' };
|
|
368
|
+
}
|
|
369
|
+
if (sigTerms.length > 0) {
|
|
370
|
+
const lower = text.toLowerCase();
|
|
371
|
+
const hits = sigTerms.filter((t) => lower.includes(t)).length;
|
|
372
|
+
if (hits < Math.min(2, sigTerms.length)) {
|
|
373
|
+
return { passed: false, feedback: `scenarios must address THIS requirement — reference its terms (e.g. ${sigTerms.slice(0, 6).join(', ')})` };
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
return { passed: true };
|
|
377
|
+
};
|
|
378
|
+
const r = await this.freeTierExecutor.execute({
|
|
379
|
+
agentId: `requirements:${requirement.id}`,
|
|
380
|
+
messages: [
|
|
381
|
+
{ role: 'system', content: system },
|
|
382
|
+
{ role: 'user', content: user },
|
|
383
|
+
],
|
|
384
|
+
verify,
|
|
385
|
+
escalate: true,
|
|
386
|
+
bestOfK: this.config.freeTierBestOfK ?? 2, // §12, matches the D3-validated config
|
|
387
|
+
repairAttempts: this.config.freeTierRepairAttempts ?? 1,
|
|
388
|
+
});
|
|
389
|
+
if (!r.ok)
|
|
390
|
+
return null;
|
|
391
|
+
const parsed = this.bddWriter.parseGherkin(stripGherkinFence(r.content));
|
|
392
|
+
if (!parsed.success || parsed.value.length === 0)
|
|
393
|
+
return null;
|
|
394
|
+
logger.info(`Free-tier BDD scenarios for ${requirement.id} via tier=${r.tierUsed} (${parsed.value.length} scenarios)`);
|
|
395
|
+
return parsed.value;
|
|
396
|
+
}
|
|
297
397
|
async generateTestArtifacts(requirementId) {
|
|
298
398
|
const workflowId = uuidv4();
|
|
299
399
|
try {
|
|
@@ -320,15 +420,20 @@ export class RequirementsValidationCoordinator extends BaseDomainCoordinator {
|
|
|
320
420
|
logger.info(`[PPO] Optimized scenario count to ${optimizedScenarioCount}`);
|
|
321
421
|
}
|
|
322
422
|
}
|
|
323
|
-
//
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
423
|
+
// Cheap-first (opt-in, ADR-111): generate Gherkin on the free local tier,
|
|
424
|
+
// verify its structure (objective oracle), parse back to scenarios. Falls
|
|
425
|
+
// through to the normal structured path on any miss (off by default).
|
|
426
|
+
let scenarios = await this.tryFreeTierScenarios(requirement, optimizedScenarioCount);
|
|
427
|
+
if (!scenarios) {
|
|
428
|
+
const scenariosResult = await this.bddWriter.generateScenariosWithExamples(requirement, optimizedScenarioCount);
|
|
429
|
+
if (!scenariosResult.success) {
|
|
430
|
+
this.failWorkflow(workflowId, scenariosResult.error.message);
|
|
431
|
+
return err(scenariosResult.error);
|
|
432
|
+
}
|
|
433
|
+
scenarios = scenariosResult.value;
|
|
328
434
|
}
|
|
329
435
|
this.updateWorkflowProgress(workflowId, 50);
|
|
330
436
|
// V3: Use PPO to optimize scenario ordering
|
|
331
|
-
let scenarios = scenariosResult.value;
|
|
332
437
|
if (this.config.enablePPO && this.ppoAlgorithm) {
|
|
333
438
|
scenarios = await this.optimizeScenarioOrdering(requirement, scenarios);
|
|
334
439
|
}
|
|
@@ -9,6 +9,7 @@ import { RequirementsValidatorService, } from './services/requirements-validator
|
|
|
9
9
|
import { BDDScenarioWriterService, } from './services/bdd-scenario-writer.js';
|
|
10
10
|
import { TestabilityScorerService, } from './services/testability-scorer.js';
|
|
11
11
|
import { createQCSDIdeationPlugin, } from './qcsd-ideation-plugin.js';
|
|
12
|
+
import { RoutingFeedbackCollector } from '../../routing/routing-feedback.js';
|
|
12
13
|
import { toError } from '../../shared/error-utils.js';
|
|
13
14
|
// ============================================================================
|
|
14
15
|
// Plugin Implementation
|
|
@@ -171,8 +172,26 @@ export class RequirementsValidationPlugin extends BaseDomainPlugin {
|
|
|
171
172
|
this.validator = new RequirementsValidatorService({ memory: this.memory, llmRouter: this.llmRouter }, this.pluginConfig.validator);
|
|
172
173
|
this.bddWriter = new BDDScenarioWriterService(this.memory, this.pluginConfig.bddWriter);
|
|
173
174
|
this.testabilityScorer = new TestabilityScorerService(this.memory, this.pluginConfig.testabilityScorer);
|
|
175
|
+
// D9: when the free tier is opted in, stand up a live RoutingFeedbackCollector
|
|
176
|
+
// (calibrator + auto-escalation) so each cheap-vs-escalated BDD outcome feeds
|
|
177
|
+
// routing confidence. Memory-only fallback if the DB is unavailable.
|
|
178
|
+
let routingFeedback;
|
|
179
|
+
const freeTierOn = this.pluginConfig.coordinator?.enableFreeTier === true || process.env.AQE_FREE_TIER === '1';
|
|
180
|
+
if (freeTierOn) {
|
|
181
|
+
routingFeedback = new RoutingFeedbackCollector(10000, {
|
|
182
|
+
enableEMACalibration: true,
|
|
183
|
+
enableAutoEscalation: true,
|
|
184
|
+
});
|
|
185
|
+
try {
|
|
186
|
+
await routingFeedback.initialize();
|
|
187
|
+
}
|
|
188
|
+
catch {
|
|
189
|
+
// memory-only is fine — recording still drives calibration/escalation
|
|
190
|
+
}
|
|
191
|
+
}
|
|
174
192
|
// Create and initialize coordinator
|
|
175
|
-
this.coordinator = new RequirementsValidationCoordinator(this.eventBus, this.memory, this.agentCoordinator, this.pluginConfig.coordinator, this.llmRouter)
|
|
193
|
+
this.coordinator = new RequirementsValidationCoordinator(this.eventBus, this.memory, this.agentCoordinator, this.pluginConfig.coordinator, this.llmRouter, routingFeedback // D9 sink (undefined unless free tier is on)
|
|
194
|
+
);
|
|
176
195
|
await this.coordinator.initialize();
|
|
177
196
|
// Create and initialize QCSD Ideation Plugin
|
|
178
197
|
this.qcsdIdeationPlugin = createQCSDIdeationPlugin(this.memory);
|
|
@@ -68,10 +68,12 @@ export interface CoordinatorConfig extends BaseDomainCoordinatorConfig {
|
|
|
68
68
|
* — also enables via env `AQE_FREE_TIER=1`. Local-only / no paid escalation yet.
|
|
69
69
|
*/
|
|
70
70
|
enableFreeTier?: boolean;
|
|
71
|
-
/** Local model id for the free tier (default
|
|
71
|
+
/** Local model id for the free tier (default qwen3:30b-a3b or env AQE_FREE_TIER_MODEL). */
|
|
72
72
|
freeTierModel?: string;
|
|
73
73
|
/** Same-tier repair retries on a failed free-tier generation (D8). Default 1. */
|
|
74
74
|
freeTierRepairAttempts?: number;
|
|
75
|
+
/** Best-of-k diverse local attempts per tier (§12; D3-validated k=2). Default 2. */
|
|
76
|
+
freeTierBestOfK?: number;
|
|
75
77
|
}
|
|
76
78
|
type TestGenWorkflowType = 'generate' | 'tdd' | 'property' | 'data' | 'learn';
|
|
77
79
|
export declare class TestGenerationCoordinator extends BaseDomainCoordinator<CoordinatorConfig, TestGenWorkflowType> implements ITestGenerationCoordinator {
|
|
@@ -13,7 +13,7 @@ import { readFile } from 'node:fs/promises';
|
|
|
13
13
|
import { ok, err, } from '../../shared/types';
|
|
14
14
|
import { toError } from '../../shared/error-utils.js';
|
|
15
15
|
// Opt-in free-tier local test generation (cross-pollination plan 06, D7-wire/D8/D9).
|
|
16
|
-
import {
|
|
16
|
+
import { buildFreeTierExecutor, } from '../../routing/free-tier/index.js';
|
|
17
17
|
import { TestGenerationEvents, LearningOptimizationEvents, createEvent, } from '../../shared/events/domain-events';
|
|
18
18
|
import { createTestGeneratorServiceWithDependencies, } from './services/test-generator';
|
|
19
19
|
import { PatternMatcherService, } from './services/pattern-matcher';
|
|
@@ -123,36 +123,16 @@ export class TestGenerationCoordinator extends BaseDomainCoordinator {
|
|
|
123
123
|
// ADR-043 wiring: dependencies factory accepts llmRouter.
|
|
124
124
|
this.testGenerator = createTestGeneratorServiceWithDependencies({ memory, llmRouter });
|
|
125
125
|
this.patternMatcher = new PatternMatcherService(memory);
|
|
126
|
-
// Opt-in free-tier local generation (plan 06, D7-wire/D8/D9).
|
|
127
|
-
//
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
const complexity = tier === 'opus' ? 'high' : tier === 'sonnet' ? 'medium' : 'low';
|
|
137
|
-
const resp = await llmRouter.chat({
|
|
138
|
-
messages: msgs.map((m) => ({ role: m.role, content: m.content })),
|
|
139
|
-
agentType: 'qe-test-architect',
|
|
140
|
-
complexity,
|
|
141
|
-
});
|
|
142
|
-
return { content: resp.content };
|
|
143
|
-
}
|
|
144
|
-
: undefined;
|
|
145
|
-
this.freeTierExecutor = new FreeTierEscalatingExecutor({
|
|
146
|
-
ladder: defaultFreeTierLadder(model),
|
|
147
|
-
claudeRunner,
|
|
148
|
-
defaultRepairAttempts: this.config.freeTierRepairAttempts ?? 1,
|
|
149
|
-
onOutcome: routingFeedback
|
|
150
|
-
? createRoutingFeedbackSink(routingFeedback, { taskKind: 'test-generation' }) // D9
|
|
151
|
-
: undefined,
|
|
152
|
-
});
|
|
153
|
-
logger.info(`Free-tier local test generation enabled (model=${model}, repair, ` +
|
|
154
|
-
`${claudeRunner ? 'escalation→HybridRouter' : 'local-only'})`);
|
|
155
|
-
}
|
|
126
|
+
// Opt-in free-tier local generation (plan 06, D7-wire/D8/D9; ADR-111).
|
|
127
|
+
// OFF by default. Generic wiring lives in the shared factory now.
|
|
128
|
+
this.freeTierExecutor = buildFreeTierExecutor({
|
|
129
|
+
config: this.config,
|
|
130
|
+
agentType: 'qe-test-architect',
|
|
131
|
+
taskKind: 'test-generation',
|
|
132
|
+
llmRouter,
|
|
133
|
+
routingFeedback,
|
|
134
|
+
logger,
|
|
135
|
+
});
|
|
156
136
|
// Initialize coherence gate if service is provided (ADR-052)
|
|
157
137
|
if (this.config.enableCoherenceGate && coherenceService) {
|
|
158
138
|
this.coherenceGate = createTestGenerationCoherenceGate(coherenceService, undefined, // Use default embedding service
|
|
@@ -472,9 +452,11 @@ export class TestGenerationCoordinator extends BaseDomainCoordinator {
|
|
|
472
452
|
agentId: `test-gen:${src}`,
|
|
473
453
|
messages,
|
|
474
454
|
verify,
|
|
475
|
-
// Cheap-first:
|
|
476
|
-
// ladder via the HybridRouter (when wired).
|
|
455
|
+
// Cheap-first: best-of-k (§12) + repair on the local tier, then escalate the
|
|
456
|
+
// hard tail up the ladder via the HybridRouter (when wired). Matches the D3
|
|
457
|
+
// config that was validated (k=2). Local-only if no router.
|
|
477
458
|
escalate: true,
|
|
459
|
+
bestOfK: this.config.freeTierBestOfK ?? 2,
|
|
478
460
|
repairAttempts: this.config.freeTierRepairAttempts ?? 1,
|
|
479
461
|
});
|
|
480
462
|
if (!r.ok)
|
|
@@ -5,10 +5,17 @@
|
|
|
5
5
|
* `packages/darwin-mode/src/types.ts` (ADR-072 ScoreCard) so AQE can produce
|
|
6
6
|
* Darwin-compatible scores WITHOUT a build-time dependency on the pre-1.0
|
|
7
7
|
* MetaHarness package (per cross-pollination plan 05: Phase-0 actions stay
|
|
8
|
-
* decoupled).
|
|
9
|
-
* real import.
|
|
8
|
+
* decoupled).
|
|
10
9
|
*
|
|
11
|
-
*
|
|
10
|
+
* VERSION CONTRACT (plan A8, verified 2026-06-25): `DarwinScoreCard` is byte-for-
|
|
11
|
+
* byte structurally identical to upstream `ScoreCard` from @metaharness/darwin@0.2.1
|
|
12
|
+
* THROUGH @0.7.0 (no drift across 5 minors). The mirror is INTENTIONALLY KEPT, not
|
|
13
|
+
* replaced by a real import: the upstream is a fast-moving pre-1.0 package whose
|
|
14
|
+
* tarball pulls napi/wasm transitive deps, so the zero-coupling mirror is the lower-
|
|
15
|
+
* risk substrate (see plan 05 "A8 — status"). `tests/.../darwin-version-contract.test.ts`
|
|
16
|
+
* pins the mirror's field set so any divergence is caught.
|
|
17
|
+
*
|
|
18
|
+
* Pinned upstream contract: @metaharness/darwin ScoreCard @ 0.2.1–0.7.0.
|
|
12
19
|
*/
|
|
13
20
|
/** The seven mutation surfaces (mirror of Darwin's MutationSurface). */
|
|
14
21
|
export type MutationSurface = 'planner' | 'contextBuilder' | 'reviewer' | 'retryPolicy' | 'toolPolicy' | 'memoryPolicy' | 'scorePolicy';
|
|
@@ -5,10 +5,17 @@
|
|
|
5
5
|
* `packages/darwin-mode/src/types.ts` (ADR-072 ScoreCard) so AQE can produce
|
|
6
6
|
* Darwin-compatible scores WITHOUT a build-time dependency on the pre-1.0
|
|
7
7
|
* MetaHarness package (per cross-pollination plan 05: Phase-0 actions stay
|
|
8
|
-
* decoupled).
|
|
9
|
-
* real import.
|
|
8
|
+
* decoupled).
|
|
10
9
|
*
|
|
11
|
-
*
|
|
10
|
+
* VERSION CONTRACT (plan A8, verified 2026-06-25): `DarwinScoreCard` is byte-for-
|
|
11
|
+
* byte structurally identical to upstream `ScoreCard` from @metaharness/darwin@0.2.1
|
|
12
|
+
* THROUGH @0.7.0 (no drift across 5 minors). The mirror is INTENTIONALLY KEPT, not
|
|
13
|
+
* replaced by a real import: the upstream is a fast-moving pre-1.0 package whose
|
|
14
|
+
* tarball pulls napi/wasm transitive deps, so the zero-coupling mirror is the lower-
|
|
15
|
+
* risk substrate (see plan 05 "A8 — status"). `tests/.../darwin-version-contract.test.ts`
|
|
16
|
+
* pins the mirror's field set so any divergence is caught.
|
|
17
|
+
*
|
|
18
|
+
* Pinned upstream contract: @metaharness/darwin ScoreCard @ 0.2.1–0.7.0.
|
|
12
19
|
*/
|
|
13
20
|
export {};
|
|
14
21
|
//# sourceMappingURL=types.js.map
|