BareGit

Hopefully the deep-research skill will not be trigger as much.

Author: MetroWind <chris.corsair@gmail.com>
Date: Tue Feb 24 15:06:24 2026 -0800
Commit: f21a2a6679c8155991f5f3bbf429ac287792a709

Changes

diff --git a/skills/deep-research/SKILL.md b/skills/deep-research/SKILL.md
index 909381f..12cb9dd 100644
--- a/skills/deep-research/SKILL.md
+++ b/skills/deep-research/SKILL.md
@@ -2,16 +2,9 @@
 name: deep-research-recursive
 description: |
   Deep Research with Enforced Recursion: A methodology that forces deep exploration
-  by mandating recursive research on significant findings until root causes are reached.
-  
-  Key difference from regular deep-research: This skill GUARANTEES recursion depth
-  through explicit task spawning and tracking.
-  
-  Trigger phrases:
-  - "deep research" / "in-depth analysis"
-  - "recursive research" / "root cause analysis"
-  - "help me research"
-  - "why does X happen" / "what causes X"
+  by mandating recursive research on significant findings until root
+  causes are reached. This should only be used when the user
+  explicitly want to do “deep-research”.
 ---
 
 # Deep Research with Enforced Recursion
@@ -350,21 +343,21 @@ Task(
   subagent_type="general",
   prompt="""
   RECURSIVE RESEARCH TASK
-  
+
   Parent Topic: [parent]
   Current Depth: [N]
   Your Topic: [subtopic]
-  
+
   Execute deep-research-recursive skill for this subtopic.
-  
+
   Save artifacts to: ./research/[parent]/recursive/level[N]_[subtopic]/
-  
+
   REQUIRED OUTPUT (concise):
   1. Key findings (2-3 bullets)
   2. Has deeper cause worth researching? YES/NO
   3. If YES, what deeper topic?
   4. Key sources (with links)
-  
+
   Do NOT output full report. Output only structured summary.
   """
 )
@@ -393,7 +386,7 @@ WHILE depth < minimum OR significant_findings_have_deeper_causes:
     spawn_recursive_research()
     depth += 1
     update_recursion_tree()
-    
+
     IF depth >= maximum:
         log("Max depth reached")
         BREAK