Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions templates/hooks/iloom-hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,16 @@ async function main() {

if (swarmCompleted) {
// Swarm finished — show full routing table with swarm-prefixed agents
const reminder = `**REMINDER**: You MUST USE subagents to preserve your context window for ongoing conversation.
const reminder = `**REMINDER**: You MUST USE subagents to preserve your context window for ongoing conversation. Do not ask analysis agent to implement fixes.

| Request Type | Action |
|--------------|--------|
| Trivial (quick answer, single-line fix) | Handle directly |
| Trivial (quick answer, 1 to 3 line fix in a single file) | Handle directly |
| Bug investigation / analysis - ESPECIALLY INVOLVING 3rd PARTY APIs/LIBRARIES | \`@agent-iloom-swarm-issue-analyzer\` → present findings → offer to fix |
| Code changes | \`@agent-iloom-swarm-issue-implementer\` - TELL THE AGENT NOT TO MAKE/UPDATE ISSUE COMMENTS TO AVOID POLLUTION |
| On 3rd repeated attempt at fixing the same problem | \`@agent-iloom-swarm-issue-analyze-and-plan\` → if approved, \`@agent-iloom-swarm-issue-implementer\` - DO NOT PROVIDE ADDITIONAL GUIDANCE ABOUT ISSUE COMMENTS |
| New features / complex changes | \`@agent-iloom-swarm-issue-analyze-and-plan\` → if approved, \`@agent-iloom-swarm-issue-implementer\` - IN THIS CASE IT'S OK TO CREATE/UPDATE ISSUE COMMENTS |
| New features / complex changes | Create a child issue, then dispatch via \`@agent-iloom-swarm-worker\` |
| Multiple issues at once | Spawn ONE agent team for the whole set with multiple \`@agent-iloom-swarm-worker\` workers running in parallel |
| Deep questions (how/why something works) | \`@agent-iloom-swarm-issue-analyzer\` |
| Code review request | \`@agent-iloom-swarm-code-reviewer\` |`;
const output = {
Expand All @@ -360,7 +361,7 @@ async function main() {
process.exit(0);
}

const reminder = `**REMINDER**: You MUST USE subagents to preserve your context window for ongoing conversation.
const reminder = `**REMINDER**: You MUST USE subagents to preserve your context window for ongoing conversation. Do not ask analysis agent to implement fixes.

| Request Type | Action |
|--------------|--------|
Expand Down
Loading