@narumitw/pi-subagents 0.4.3 → 0.6.0

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/subagents.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narumitw/pi-subagents",
3
- "version": "0.4.3",
3
+ "version": "0.6.0",
4
4
  "description": "Pi extension for delegating work to specialized isolated subagents.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -41,8 +41,8 @@
41
41
  "@biomejs/biome": "2.4.14",
42
42
  "@earendil-works/pi-agent-core": "0.74.0",
43
43
  "@earendil-works/pi-ai": "0.74.0",
44
- "@earendil-works/pi-coding-agent": "0.74.0",
45
- "@earendil-works/pi-tui": "0.74.0",
44
+ "@earendil-works/pi-coding-agent": "0.79.8",
45
+ "@earendil-works/pi-tui": "0.79.8",
46
46
  "typescript": "6.0.3"
47
47
  },
48
48
  "repository": {
package/src/subagents.ts CHANGED
@@ -99,19 +99,19 @@ function publishSubagentStatus(ctx: StatusContext) {
99
99
  }
100
100
 
101
101
  function singleStatus(agent: string): string {
102
- return `🧑‍🤝‍🧑 ${agent}`;
102
+ return `${agent}`;
103
103
  }
104
104
 
105
105
  function chainStatus(step: number, total: number, agent?: string): string {
106
- return `🧑‍🤝‍🧑 chain ${step}/${total}${agent ? ` ${agent}` : ""}`;
106
+ return `chain ${step}/${total}${agent ? ` ${agent}` : ""}`;
107
107
  }
108
108
 
109
109
  function parallelStatus(done: number, total: number, running: number): string {
110
- return `🧑‍🤝‍🧑 parallel ${done}/${total} done${running > 0 ? ` ${running} running` : ""}`;
110
+ return `parallel ${done}/${total} done${running > 0 ? ` ${running} running` : ""}`;
111
111
  }
112
112
 
113
113
  function fanInStatus(agent: string): string {
114
- return `🧑‍🤝‍🧑 fan-in ${agent}`;
114
+ return `fan-in ${agent}`;
115
115
  }
116
116
 
117
117
  export function formatTokens(count: number): string {