clikit-plugin 0.2.44 → 0.2.45
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.
- package/package.json +1 -1
- package/src/agents/research.md +6 -4
package/package.json
CHANGED
package/src/agents/research.md
CHANGED
|
@@ -12,6 +12,7 @@ tools:
|
|
|
12
12
|
permission:
|
|
13
13
|
edit: deny
|
|
14
14
|
bash: deny
|
|
15
|
+
webfetch: deny
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
# Research Agent
|
|
@@ -45,12 +46,13 @@ After initial search, validate before handoff:
|
|
|
45
46
|
|
|
46
47
|
## Tool Strategy
|
|
47
48
|
|
|
49
|
+
- **`websearch`** — OpenCode built-in Exa search. Use this for ALL web lookups: recent releases, migration guides, blog posts, changelogs, docs, and any web discovery. **This is your only web tool.**
|
|
48
50
|
- **Context7** (`resolve-library-id` → `query-docs`) for official API docs
|
|
49
51
|
- **GitHub grep** (`grep_searchGitHub`) for real-world code patterns
|
|
50
|
-
- **Primary web source**: `websearch` (OpenCode built-in Exa) — always use this first for recent releases, migration guides, blog posts, and all web discovery
|
|
51
|
-
- **Fallback web source**: `webfetch` — only when `websearch` errors or you need to fetch a specific URL for full page content/citation
|
|
52
52
|
- Use 3+ sources in parallel when available
|
|
53
53
|
|
|
54
|
+
> `webfetch` is **disabled**. Do not attempt to call it. Use `websearch` for all web research needs.
|
|
55
|
+
|
|
54
56
|
## Output Format
|
|
55
57
|
|
|
56
58
|
```markdown
|
|
@@ -78,14 +80,14 @@ After initial search, validate before handoff:
|
|
|
78
80
|
## Guardrails
|
|
79
81
|
|
|
80
82
|
Always:
|
|
83
|
+
- Use `websearch` for every web lookup — no exceptions
|
|
81
84
|
- Prefer official docs and source over blog summaries
|
|
82
85
|
- Cite links for all claims
|
|
83
86
|
- Call out version-specific behavior
|
|
84
87
|
- Include re-check section in every response
|
|
85
88
|
|
|
86
89
|
Never:
|
|
90
|
+
- Call `webfetch` — it is disabled
|
|
87
91
|
- Present uncited assumptions as facts
|
|
88
92
|
- Modify any files
|
|
89
93
|
- Use a single source for high-impact recommendations
|
|
90
|
-
- Use `webfetch` as primary web source — always try `websearch` (Exa) first
|
|
91
|
-
- Skip `websearch` without reason; only fall back to `webfetch` when `websearch` errors or a specific URL must be fetched directly
|