@vpxa/aikit 0.1.113 → 0.1.115
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/README.md +13 -13
- package/package.json +1 -1
- package/packages/cli/dist/index.js +3 -3
- package/packages/cli/dist/{init-BfmAvMGq.js → init-C4Rr0k00.js} +1 -1
- package/packages/cli/dist/{templates-BRWMrqFI.js → templates-DRfiihP4.js} +3 -3
- package/packages/cli/dist/{user-D4p6n-Q5.js → user-HCdUUwXe.js} +1 -1
- package/packages/core/dist/index.d.ts +5 -1
- package/packages/embeddings/dist/index.d.ts +55 -1
- package/packages/embeddings/dist/index.js +1 -1
- package/packages/server/dist/config-D4z6-EcI.js +1 -0
- package/packages/server/dist/index.js +1 -1
- package/packages/server/dist/{server-qD-mw6RP.js → server-Cbe4LQqt.js} +178 -178
- package/packages/store/dist/index.d.ts +60 -102
- package/packages/store/dist/index.js +6 -6
- package/packages/store/dist/lance-store-D1JolXlO.js +1 -0
- package/packages/store/dist/{sqlite-vec-store-DuGaWATy.js → sqlite-vec-store-DA6fzQiD.js} +7 -7
- package/scaffold/dist/definitions/agents.mjs +36 -4
- package/scaffold/dist/definitions/bodies.mjs +11 -4
- package/scaffold/dist/definitions/plugins.mjs +1 -1
- package/scaffold/dist/definitions/protocols.mjs +3 -0
- package/scaffold/dist/definitions/skills.mjs +446 -8
- package/packages/server/dist/config-BL-I_FFY.js +0 -1
- package/packages/store/dist/lance-store-BRoi-4qY.js +0 -1
- package/packages/store/dist/rolldown-runtime-BynbHzcv.js +0 -1
|
@@ -896,6 +896,8 @@ The Orchestrator uses **multi-model decision analysis** to resolve non-trivial t
|
|
|
896
896
|
|
|
897
897
|
Dispatch ALL available Researcher variants **in parallel** via \`runSubagent\` — one call per variant, same question, simultaneous. Each returns an independent recommendation grounded in their thinking style:
|
|
898
898
|
|
|
899
|
+
**IMPORTANT: Include this instruction in every researcher dispatch prompt: "You are running as a subagent. Do NOT use the \`present\` tool — return all analysis as plain text."**
|
|
900
|
+
|
|
899
901
|
| Variant | Thinking Style | Lens |
|
|
900
902
|
|---------|---------------|------|
|
|
901
903
|
| **Alpha** | Contrarian | Actively seeks flaws, fatal assumptions, hidden risks |
|
|
@@ -971,6 +973,7 @@ Trigger the decision protocol when there is an **unresolved non-trivial technica
|
|
|
971
973
|
## Key Rules
|
|
972
974
|
|
|
973
975
|
- **\`runSubagent\` is ALWAYS available** — it is a core tool in every environment (VS Code, CLI, Copilot Chat). NEVER claim it is unavailable. NEVER simulate researchers inline by "applying lenses yourself." If you cannot call \`runSubagent\`, you have a tool-loading issue — retry or escalate, do NOT degrade to single-agent inline simulation.
|
|
976
|
+
- **No \`present\` in subagents** — always include "Do NOT use the \`present\` tool — return all analysis as plain text" in every researcher dispatch prompt. Subagent visual outputs are invisible to the user.
|
|
974
977
|
- Always launch in **parallel**, minimum 4 variants
|
|
975
978
|
- Use exact case-sensitive agent names — never rename or alias
|
|
976
979
|
- **Anonymize** researcher outputs before peer review (A/B/C/D, not agent names)
|