@leo-alvarenga/pi-mini-subagents 0.2.0 → 0.2.1

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 +1 -1
  2. package/src/constants.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leo-alvarenga/pi-mini-subagents",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Transient subagents for Pi: mini_subagent tool (single + parallel), /subagents command, and a live TUI panel",
5
5
  "license": "MIT",
6
6
  "repository": "github.com/leo-alvarenga/pi-mono",
package/src/constants.ts CHANGED
@@ -17,7 +17,7 @@ export const STATUSES = [
17
17
  ] as const;
18
18
 
19
19
  export const STATUS_STYLES: Record<SubagentStatus, SubagentStatusUi> = {
20
- running: { icon: " ", fg: "accent", bold: true },
20
+ running: { icon: "󱥸 ", fg: "accent", bold: true },
21
21
  completed: { icon: "✓ ", fg: "success" },
22
22
  failed: { icon: "✗ ", fg: "error", bold: true },
23
23
  needs_input: { icon: "? ", fg: "warning", bold: true },