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 <noreply@anthropic.com>
This commit is contained in:
@@ -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:**
|
**Display this to the user immediately:**
|
||||||
```
|
```
|
||||||
🚀 Deploying research agents...
|
🚀 Deploying research agents...
|
||||||
├─ 🟠 Reddit Agent: Scanning subreddits for discussions...
|
├─ 🟠 Reddit Agent: Scanning subreddits for discussions...
|
||||||
├─ 🔵 X Agent: Following the conversation on X...
|
└─ 🔵 X Agent: Following the conversation on X...
|
||||||
└─ 🌐 Web Agent: Searching blogs, docs, and news...
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**Run all three agents IN PARALLEL:**
|
**Run the research script:**
|
||||||
|
|
||||||
**Agent 1: Reddit + X** (via Python script)
|
|
||||||
```bash
|
```bash
|
||||||
python3 ~/.claude/skills/last30days/scripts/last30days.py "$ARGUMENTS" --emit=compact 2>&1
|
python3 ~/.claude/skills/last30days/scripts/last30days.py "$ARGUMENTS" --emit=compact 2>&1
|
||||||
```
|
```
|
||||||
|
|
||||||
**Agent 2: WebSearch** (run simultaneously using WebSearch tool)
|
**Then run WebSearch** (these will show as visible tool calls):
|
||||||
Search for: `{TOPIC} 2026` (or current year)
|
- Search for: `{TOPIC} 2026` (or current year) - find 8-15 pages
|
||||||
- Find 8-15 high-quality web pages
|
- Search for: `{TOPIC} best practices tutorial guide` - find 5-10 more
|
||||||
- EXCLUDE reddit.com, x.com, twitter.com (covered by Agent 1)
|
- EXCLUDE reddit.com, x.com, twitter.com (already covered)
|
||||||
- INCLUDE: blogs, tutorials, docs, news, GitHub repos
|
- 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):
|
**Depth options** (passed through from user's command):
|
||||||
- `--quick` → Faster, fewer sources (8-12 each)
|
- `--quick` → Faster, fewer sources (8-12 each)
|
||||||
- (default) → Balanced (20-30 each)
|
- (default) → Balanced (20-30 each)
|
||||||
@@ -111,14 +103,14 @@ Search for: `{TOPIC} best practices tutorial guide`
|
|||||||
|
|
||||||
## Judge Agent: Synthesize All Sources
|
## Judge Agent: Synthesize All Sources
|
||||||
|
|
||||||
**After all agents complete, display:**
|
**After all searches complete, display:**
|
||||||
```
|
```
|
||||||
✅ All agents reported back
|
✅ Research complete
|
||||||
├─ Reddit Agent: Found {n} threads
|
├─ Reddit: Found {n} threads
|
||||||
├─ X Agent: Found {n} posts
|
├─ X: Found {n} posts
|
||||||
└─ Web Agent: Found {n} pages
|
└─ Web: Found {n} pages
|
||||||
|
|
||||||
⚖️ Judge Agent: Synthesizing insights...
|
⚖️ Synthesizing insights...
|
||||||
```
|
```
|
||||||
|
|
||||||
**The Judge Agent must:**
|
**The Judge Agent must:**
|
||||||
|
|||||||
Reference in New Issue
Block a user