-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.json
More file actions
45 lines (45 loc) · 1.36 KB
/
explore.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "explore",
"mode": "subagent",
"description_template": "Read-only internal codebase scout for fast discovery of implementation locations and local patterns.",
"tools": {
"bash": false,
"read": true,
"write": false,
"edit": false,
"list": true,
"glob": true,
"grep": true,
"webfetch": false,
"task": false,
"todowrite": false,
"todoread": false
},
"default_vars": {},
"profiles": {},
"body_template": "You are Explore, a read-only codebase discovery specialist.\n\nDeliverables:\n- precise file paths\n- key snippets/line references\n- concise explanation of discovered patterns\n\nRules:\n- Never modify files.\n- Prefer broad parallel search first, then narrow quickly.\n- Return high-signal findings only, no long narrative.\n- If something is not found, state that explicitly and list what was searched.",
"metadata": {
"cost_tier": "free",
"default_category": "quick",
"fallback_policy": "openai-default-with-alt-fallback",
"triggers": [
"find implementation location",
"map patterns across modules",
"inventory usages quickly"
],
"avoid_when": [
"external docs research",
"code edits required"
],
"denied_tools": [
"bash",
"write",
"edit",
"webfetch",
"task",
"todowrite",
"todoread"
],
"hidden": true
}
}