@yeongjaeyou/claude-code-config 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -39,7 +39,8 @@ Detect keywords in the prompt to determine execution mode:
|
|
|
39
39
|
|
|
40
40
|
## Sub-Agent Output Schema
|
|
41
41
|
|
|
42
|
-
Each platform search Task
|
|
42
|
+
**MANDATORY**: Each platform search Task **MUST** return results in this exact structure.
|
|
43
|
+
Sub-agents that fail to follow this schema will have their results rejected by the coordinator.
|
|
43
44
|
|
|
44
45
|
### Required Fields (Quick & Deep)
|
|
45
46
|
|
|
@@ -80,6 +81,7 @@ suggested_followups:
|
|
|
80
81
|
|
|
81
82
|
| Platform | Purpose | Tool |
|
|
82
83
|
|----------|---------|------|
|
|
84
|
+
| **Google** | General web search, recent discussions | WebSearch |
|
|
83
85
|
| **GitHub** | Code, issues, PRs | `gh` CLI |
|
|
84
86
|
| **Hugging Face** | ML models, datasets, Spaces | `huggingface_hub` API |
|
|
85
87
|
| **Reddit** | Community discussions, experiences | WebSearch |
|
|
@@ -121,6 +123,13 @@ Generate **3-5 query variations**:
|
|
|
121
123
|
- How-to vs comparison vs best practices
|
|
122
124
|
- Specific tool/framework names
|
|
123
125
|
|
|
126
|
+
### 5. Dynamic Context Awareness
|
|
127
|
+
|
|
128
|
+
**Avoid hardcoded model names in queries.** Model versions change rapidly:
|
|
129
|
+
- Before searching for model comparisons, verify the current date
|
|
130
|
+
- Use generic terms like "latest", "current", "{year}" in queries
|
|
131
|
+
- If specific models are needed, search for "latest LLM models {year}" first to identify current versions
|
|
132
|
+
|
|
124
133
|
---
|
|
125
134
|
|
|
126
135
|
## Research Workflow
|
|
@@ -147,6 +156,12 @@ Parallel execution (Task tool, run_in_background: true):
|
|
|
147
156
|
└── Task: arXiv + general web (if needed)
|
|
148
157
|
```
|
|
149
158
|
|
|
159
|
+
**Each Task prompt MUST include:**
|
|
160
|
+
```
|
|
161
|
+
Format your response according to the Sub-Agent Output Schema.
|
|
162
|
+
Return findings as a YAML block with: platform, query_used, findings, sources, confidence.
|
|
163
|
+
```
|
|
164
|
+
|
|
150
165
|
Collect results → Proceed to Phase 3
|
|
151
166
|
|
|
152
167
|
---
|
|
@@ -164,7 +179,15 @@ Parallel execution (all platforms):
|
|
|
164
179
|
└── Task: Academic Agent - arXiv (structured output)
|
|
165
180
|
```
|
|
166
181
|
|
|
167
|
-
Each Task
|
|
182
|
+
**Each Task prompt MUST include:**
|
|
183
|
+
```
|
|
184
|
+
Format your response according to the Sub-Agent Output Schema.
|
|
185
|
+
Return findings as a YAML block with ALL fields:
|
|
186
|
+
- platform, query_used, findings, sources, confidence (required)
|
|
187
|
+
- gaps, conflicts, suggested_followups (Deep Mode required)
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
Each Task returns results following Sub-Agent Output Schema. **Reject non-compliant responses.**
|
|
168
191
|
|
|
169
192
|
---
|
|
170
193
|
|