@tintinweb/pi-subagents 0.2.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -5,13 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased]
8
+ ## [0.2.3] - 2026-03-05
9
+
10
+ ### Added
11
+ - Screenshot in README
12
+
13
+ ## [0.2.2] - 2026-03-05
9
14
 
10
15
  ### Changed
11
16
  - Renamed package to `@tintinweb/pi-subagents`
12
17
  - Fuzzy model resolver now only matches models with auth configured (prevents selecting unconfigured providers)
13
- - `getDisplayName()` now delegates to `getConfig()` instead of separate lookups
14
- - Removed unused `Tool` type export from agent-types
18
+ - Custom agents hot-reload on each `Agent` tool call (no restart needed for new `.pi/agents/*.md` files)
19
+ - Updated pi dependencies to 0.56.1
15
20
 
16
21
  ### Refactored
17
22
  - Extracted `createActivityTracker()` — eliminates duplicated tool activity wiring between foreground and background paths
@@ -20,8 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
25
  - Extracted `getStatusLabel()` / `getStatusNote()` — consolidates 3 duplicated status formatting chains
21
26
  - Shared `extractText()` — consolidated duplicate from context.ts and agent-runner.ts
22
27
  - Added `ERROR_STATUSES` constant in widget for consistent status checks
28
+ - `getDisplayName()` now delegates to `getConfig()` instead of separate lookups
29
+ - Removed unused `Tool` type export from agent-types
23
30
 
24
- ## [0.4.1] - 2026-03-05
31
+ ## [0.2.1] - 2026-03-05
25
32
 
26
33
  ### Added
27
34
  - **Persistent above-editor widget** — tree view of all running/queued/finished agents with animated spinners and live stats
@@ -75,7 +82,8 @@ Initial release.
75
82
  - **Thinking level** — per-agent extended thinking control
76
83
  - **`/agent` and `/agents` commands**
77
84
 
78
- [Unreleased]: https://github.com/tintinweb/pi-subagents/compare/v0.4.1...HEAD
79
- [0.4.1]: https://github.com/tintinweb/pi-subagents/compare/v0.2.0...v0.4.1
85
+ [0.2.3]: https://github.com/tintinweb/pi-subagents/compare/v0.2.2...v0.2.3
86
+ [0.2.2]: https://github.com/tintinweb/pi-subagents/compare/v0.2.1...v0.2.2
87
+ [0.2.1]: https://github.com/tintinweb/pi-subagents/compare/v0.2.0...v0.2.1
80
88
  [0.2.0]: https://github.com/tintinweb/pi-subagents/compare/v0.1.0...v0.2.0
81
89
  [0.1.0]: https://github.com/tintinweb/pi-subagents/releases/tag/v0.1.0
package/README.md CHANGED
@@ -4,6 +4,8 @@ A [pi](https://pi.dev) extension that brings **Claude Code-style autonomous sub-
4
4
 
5
5
  > **Status:** Early release.
6
6
 
7
+ <img width="600" alt="pi-subagents screenshot" src="https://github.com/tintinweb/pi-subagents/raw/master/media/screenshot.png" />
8
+
7
9
  ## Features
8
10
 
9
11
  - **Claude Code look & feel** — same tool names, calling conventions, and UI patterns (`Agent`, `get_subagent_result`, `steer_subagent`) — feels native
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tintinweb/pi-subagents",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "A pi extension providing autonomous sub-agents with Claude Code-style UI",
5
5
  "author": "tintinweb",
6
6
  "license": "MIT",