gather
SolidParallel context-gathering for a code area. Use when you need to understand a module, feature, or subsystem and would otherwise read 3+ files sequentially — dispatches two agents in parallel to map structure and test coverage in one wave.
AI & Automation 45 stars
11 forks Updated today Apache-2.0
Install
Quality Score: 79/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
## Dispatch protocol
You MUST emit **exactly two** `agent` tool_use blocks in a **single response turn** — both calls in the same assistant message, before either result arrives. Do not dispatch the second agent in a later turn after seeing the first agent's reply. Do not dispatch three agents. Do not dispatch one.
Correct shape of your next response:
```
<assistant turn>
<tool_use name="agent" id="…"> Structure Agent prompt </tool_use>
<tool_use name="agent" id="…"> Test Agent prompt </tool_use>
</assistant turn>
```
If you find yourself about to send a single `agent` call and wait, stop — that is the failure mode this skill exists to prevent.
## The two agents
When understanding a task requires reading multiple related files (imports, callers, tests, configs, types), dispatch these two — concurrently, per the protocol above:
1. **Structure Agent** (Explore, thoroughness matched to scope) — Find and read the target file(s), all direct imports, callers, and config references. Return:
- `files_read`: absolute paths examined
- `call_graph`: how components connect (one paragraph)
- `public_interfaces`: function signatures, types, or contracts that govern the area
- `entry_points`: where control flow enters
2. **Test Agent** (Explore, "medium") — Find test files that exercise the target area, read them, identify what paths are covered and what's missing. Return:
- `test_files`: absolute paths of relevant tests
- `coverage_summary`: what behaviors/bra...
Details
- Author
- griffinwork40
- Repository
- griffinwork40/agent-afk
- Created
- 1 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
dispatching-parallel-agents
Dispatches one subagent per independent domain to parallelize investigation/fixes. Use when you have 2+ unrelated failures (e.g., separate failing test files, subsystems, bugs) with no shared state or ordering dependencies.
4 Updated today
izyanrajwani AI & Automation Listed
sr-dispatching-parallel-agents
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
1 Updated today
rosa113087 AI & Automation Solid
dispatching-parallel-agents
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
0 Updated 5 days ago
lhbsaa