@oh-my-pi/subagents 0.8.3 → 1.3.37

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": "@oh-my-pi/subagents",
3
- "version": "0.8.3",
3
+ "version": "1.3.37",
4
4
  "description": "Task delegation system with specialized subagents (task, planner, explore, reviewer)",
5
5
  "keywords": [
6
6
  "omp-plugin",
@@ -15,11 +15,8 @@
15
15
  "directory": "plugins/subagents"
16
16
  },
17
17
  "omp": {
18
+ "tools": "tools",
18
19
  "install": [
19
- {
20
- "src": "tools/task/index.ts",
21
- "dest": "agent/tools/task/index.ts"
22
- },
23
20
  {
24
21
  "src": "agents/task.md",
25
22
  "dest": "agent/agents/task.md"
@@ -1140,7 +1140,7 @@ const factory: CustomToolFactory = (pi) => {
1140
1140
  renderCall(args, theme) {
1141
1141
  // Return minimal - renderResult handles the full display
1142
1142
  if (!args.tasks || args.tasks.length === 0) {
1143
- return new Text(theme.fg("error", "task: no tasks provided"), 0, 0);
1143
+ return new Text(theme.fg("dim", "task: initializing..."), 0, 0);
1144
1144
  }
1145
1145
  return new Text("", 0, 0);
1146
1146
  },