From 6577da0b1493aa359e867eb15624657a78c62792 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Sat, 24 Jan 2026 15:03:41 -0800 Subject: [PATCH] feat: More emojis and bring back Judge Agent in display Updated research banner: - Added Judge Agent: "Standing by to synthesize..." - Better emoji descriptions: "Scanning for gold", "Catching latest takes" Updated completion display: - "All agents reported back!" - "Judge Agent: Weighing the evidence..." - Emojis on the Judge's evaluation criteria Co-Authored-By: Claude Opus 4.5 --- SKILL.md | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/SKILL.md b/SKILL.md index 3e9582a..faf2a82 100644 --- a/SKILL.md +++ b/SKILL.md @@ -96,10 +96,11 @@ echo "Please edit it to add your API keys, then run the skill again." ``` 🔍 Researching "{TOPIC}" across the last 30 days... -🚀 Deploying research agents... -├─ 🟠 Reddit Agent: Scanning subreddits for discussions... -├─ 🔵 X Agent: Following the conversation on X... -└─ 🌐 Web Agent: Searching blogs, docs, and news... +🚀 Deploying research agents in parallel... +├─ 🟠 Reddit Agent: Scanning subreddits for gold... +├─ 🔵 X Agent: Catching the latest takes... +├─ 🌐 Web Agent: Crawling blogs, docs & news... +└─ ⚖️ Judge Agent: Standing by to synthesize... ``` **Step 2: Start Reddit/X script in background** @@ -152,20 +153,20 @@ Use TaskOutput to get the script results before proceeding to synthesis. **After all searches complete, display:** ``` -✅ Research complete -├─ Reddit: Found {n} threads -├─ X: Found {n} posts -└─ Web: Found {n} pages +✅ All agents reported back! +├─ 🟠 Reddit: {n} threads collected +├─ 🔵 X: {n} posts captured +└─ 🌐 Web: {n} pages found -⚖️ Synthesizing insights... +⚖️ Judge Agent: Weighing the evidence... ``` **The Judge Agent must:** -1. Weight Reddit/X sources HIGHER (they have engagement signals: upvotes, likes) -2. Weight WebSearch sources LOWER (no engagement data) -3. Identify patterns that appear across ALL three sources (strongest signals) -4. Note any contradictions between sources -5. Extract the top 3-5 actionable insights +1. 🏆 Weight Reddit/X sources HIGHER (they have engagement signals: upvotes, likes) +2. 📉 Weight WebSearch sources LOWER (no engagement data) +3. 🔗 Identify patterns that appear across ALL three sources (strongest signals) +4. ⚠️ Note any contradictions between sources +5. 💡 Extract the top 3-5 actionable insights ---