From e926a5aabdc7ef95859f40f3e526ee74d9f121e9 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Sat, 24 Jan 2026 12:29:36 -0800 Subject: [PATCH] fix: Remove redundant Web Agent from banner display WebSearch shows as visible tool calls, so announcing it in the banner was redundant. Now only Reddit and X agents are shown in the initial display. Co-Authored-By: Claude Opus 4.5 --- SKILL.md | 34 +++++++++++++--------------------- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/SKILL.md b/SKILL.md index b71801d..cd1339b 100644 --- a/SKILL.md +++ b/SKILL.md @@ -74,34 +74,26 @@ echo "Please edit it to add your API keys, then run the skill again." --- -## Research Execution: Three Parallel Agents +## Research Execution **Display this to the user immediately:** ``` 🚀 Deploying research agents... ├─ 🟠 Reddit Agent: Scanning subreddits for discussions... -├─ 🔵 X Agent: Following the conversation on X... -└─ 🌐 Web Agent: Searching blogs, docs, and news... +└─ 🔵 X Agent: Following the conversation on X... ``` -**Run all three agents IN PARALLEL:** - -**Agent 1: Reddit + X** (via Python script) +**Run the research script:** ```bash python3 ~/.claude/skills/last30days/scripts/last30days.py "$ARGUMENTS" --emit=compact 2>&1 ``` -**Agent 2: WebSearch** (run simultaneously using WebSearch tool) -Search for: `{TOPIC} 2026` (or current year) -- Find 8-15 high-quality web pages -- EXCLUDE reddit.com, x.com, twitter.com (covered by Agent 1) +**Then run WebSearch** (these will show as visible tool calls): +- Search for: `{TOPIC} 2026` (or current year) - find 8-15 pages +- Search for: `{TOPIC} best practices tutorial guide` - find 5-10 more +- EXCLUDE reddit.com, x.com, twitter.com (already covered) - INCLUDE: blogs, tutorials, docs, news, GitHub repos -**Agent 3: Backup WebSearch** (different angle) -Search for: `{TOPIC} best practices tutorial guide` -- Find 5-10 additional sources -- Focus on how-to content and authoritative guides - **Depth options** (passed through from user's command): - `--quick` → Faster, fewer sources (8-12 each) - (default) → Balanced (20-30 each) @@ -111,14 +103,14 @@ Search for: `{TOPIC} best practices tutorial guide` ## Judge Agent: Synthesize All Sources -**After all agents complete, display:** +**After all searches complete, display:** ``` -✅ All agents reported back -├─ Reddit Agent: Found {n} threads -├─ X Agent: Found {n} posts -└─ Web Agent: Found {n} pages +✅ Research complete +├─ Reddit: Found {n} threads +├─ X: Found {n} posts +└─ Web: Found {n} pages -⚖️ Judge Agent: Synthesizing insights... +⚖️ Synthesizing insights... ``` **The Judge Agent must:**