@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 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-opus-4-5
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
- tools: read, grep, glob, ls, bash
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: claude-opus-4-5
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/subagents",
3
- "version": "0.6.0",
3
+ "version": "0.8.3",
4
4
  "description": "Task delegation system with specialized subagents (task, planner, explore, reviewer)",
5
5
  "keywords": [
6
6
  "omp-plugin",
@@ -107,8 +107,8 @@ function resolveModelPattern(
107
107
  if (match) return match;
108
108
  }
109
109
 
110
- // No match found - return first pattern as-is (let pi handle the error)
111
- return patterns[0];
110
+ // No match found - use default model instead of erroring
111
+ return undefined;
112
112
  }
113
113
 
114
114
  const MAX_OUTPUT_LINES = 5000;