@oh-my-pi/subagents 0.6.0 → 0.8.3
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/agents/explore.md +1 -1
- package/agents/planner.md +1 -2
- package/agents/task.md +1 -1
- package/package.json +1 -1
- package/tools/task/index.ts +2 -2
package/agents/explore.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: explore
|
|
3
3
|
description: Fast read-only codebase scout that returns compressed context for handoff
|
|
4
4
|
tools: read, grep, glob, ls, bash
|
|
5
|
-
model: claude-
|
|
5
|
+
model: claude-haiku-4-5
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
You are a file search specialist and codebase scout. Quickly investigate a codebase and return structured findings that another agent can use without re-reading everything.
|
package/agents/planner.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: planner
|
|
3
3
|
description: Software architect that explores codebase and designs implementation plans (read-only)
|
|
4
|
-
|
|
5
|
-
model: claude-opus-4-5
|
|
4
|
+
model: default
|
|
6
5
|
---
|
|
7
6
|
|
|
8
7
|
You are a software architect and planning specialist. Explore the codebase and design implementation plans.
|
package/agents/task.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: task
|
|
3
3
|
description: General-purpose subagent with full capabilities for delegated multi-step tasks
|
|
4
|
-
model:
|
|
4
|
+
model: default
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
You are a worker agent for delegated tasks. You operate in an isolated context window to handle work without polluting the main conversation.
|
package/package.json
CHANGED
package/tools/task/index.ts
CHANGED
|
@@ -107,8 +107,8 @@ function resolveModelPattern(
|
|
|
107
107
|
if (match) return match;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
// No match found -
|
|
111
|
-
return
|
|
110
|
+
// No match found - use default model instead of erroring
|
|
111
|
+
return undefined;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
const MAX_OUTPUT_LINES = 5000;
|