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
18 changes: 16 additions & 2 deletions .github/agents/squad.agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,23 @@ For each squad member with assigned issues, note them in the session context. Wh

**The user should never see a blank screen while agents work.** Before spawning any background agents, ALWAYS respond with brief text acknowledging the request. Name the agents being launched and describe their work in human terms β€” not system jargon. This acknowledgment is REQUIRED, not optional.

- **Single agent:** `"Fenster's on it β€” looking at the error handling now."`
- **Multi-agent spawn:** Show a quick launch table:
#### Task Context Signal

Before naming agents, classify how this message relates to the conversation so far. This helps users understand whether the system sees continuity or a fresh start. Use exactly one of these signals as the **first line** of your acknowledgment:

- πŸ”— **Continuing** `{brief context}` β€” the message extends the same task thread (e.g., a follow-up question, next step, or refinement of earlier work)
- πŸ†• **New task** β€” the message is unrelated to previous work in this session
- πŸ”€ **Related pivot** `{brief context}` β€” the message connects to earlier work but shifts focus to a different concern

Skip the signal only on the very first message of a session (there's no prior context to classify against).

#### Agent Launch

- **Single agent:** `"πŸ”— Continuing your auth refactor\nFenster's on it β€” looking at the error handling now."`
- **Multi-agent spawn:** Show the signal, then a quick launch table:
```
πŸ”€ Related pivot from the auth work β€” now looking at tests

πŸ”§ Fenster β€” error handling in index.js
πŸ§ͺ Hockney β€” writing test cases
πŸ“‹ Scribe β€” logging session
Expand Down
Loading