From 7f1ab7a2e91e8ac34a49e23ce3b6c8cdab6f7734 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Sat, 24 Jan 2026 16:22:55 -0800 Subject: [PATCH] fix: Remove duplicate stats display from Judge section Stats were showing twice - once in Judge section, once at end. Now Judge section just synthesizes internally, stats only appear at the end right before invitation. Order: What I learned -> Stats -> Share your vision Co-Authored-By: Claude Opus 4.5 --- SKILL.md | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/SKILL.md b/SKILL.md index 757ea44..7651716 100644 --- a/SKILL.md +++ b/SKILL.md @@ -155,22 +155,16 @@ Use TaskOutput to get the script results before proceeding to synthesis. ## Judge Agent: Synthesize All Sources -**After all searches complete, display:** -``` -✅ All agents reported back! -├─ 🟠 Reddit: {n} threads collected -├─ 🔵 X: {n} posts captured -└─ 🌐 Web: {n} pages found +**After all searches complete, internally synthesize (don't display stats yet):** -⚖️ 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 -**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 +**Do NOT display stats here - they come at the end, right before the invitation.** ---