subagent-cli 0.2.4 → 0.2.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "subagent-cli",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "sa — Morph Code CLI (Claude Code fork with multi-provider LLM, WarpGrep, and subagent support)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,10 +65,9 @@ export function getBuiltInAgents(): AgentDefinition[] {
65
65
  agents.push(VERIFICATION_AGENT)
66
66
  }
67
67
 
68
- // WarpGrep semantic code search agent (requires MORPH_API_KEY)
69
- if (isWarpGrepAvailable()) {
70
- agents.push(WARP_GREP_AGENT)
71
- }
68
+ // WarpGrep semantic code search agent always registered.
69
+ // If MORPH_API_KEY is missing at runtime, the tool returns a helpful error.
70
+ agents.push(WARP_GREP_AGENT)
72
71
 
73
72
  return agents
74
73
  }