@adhdev/daemon-core 0.9.76-rc.57 → 0.9.76-rc.58
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/repo-mesh-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/mesh/coordinator-prompt.ts +1 -1
- package/src/repo-mesh-types.ts +15 -0
package/dist/index.mjs
CHANGED
|
@@ -665,7 +665,7 @@ function buildRulesSection(coordinatorCliType) {
|
|
|
665
665
|
- **Delegate analysis too.** If you need to understand a bug or explore the codebase, send that investigation as a task to a node. Do not do it yourself.
|
|
666
666
|
- **Respect explicit provider requests.** If the user names an agent/provider, pass the matching provider type to \`mesh_launch_session\`: Hermes \u2192 \`hermes-cli\`, Claude Code/Claude \u2192 \`claude-cli\`, Codex \u2192 \`codex-cli\`, Gemini \u2192 \`gemini-cli\`. Never substitute \`claude-cli\` just because the coordinator itself is Claude Code.
|
|
667
667
|
- **Front-load the task message.** When calling \`mesh_send_task\`, include everything the agent needs: what files to touch, what the problem is, what the fix should look like. The agent won't ask follow-up questions.
|
|
668
|
-
- **Don't inspect code.**
|
|
668
|
+
- **Don't inspect code.** Treat delegated agent summaries as self-reports, not verification. Verify side effects via \`mesh_git_status\` (including related repo freshness when configured), not by reading source files.
|
|
669
669
|
- **Don't over-parallelize.** Start with 1-2 concurrent tasks. Scale up if they succeed. Never launch a duplicate session or second worker solely because \`mesh_read_chat\` has no final assistant message while the delegated session is still showing tool/terminal activity.
|
|
670
670
|
- **Handle failures gracefully.** If a task fails, read the chat to understand why, then retry or reassign.
|
|
671
671
|
- **Keep the user informed.** Report progress after each delegation round \u2014 one or two sentences, not a narration.
|