@tintinweb/pi-subagents 0.2.1 → 0.2.2

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/CHANGELOG.md +8 -6
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,13 +5,13 @@ 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.2] - 2026-03-05
9
9
 
10
10
  ### Changed
11
11
  - Renamed package to `@tintinweb/pi-subagents`
12
12
  - 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
13
+ - Custom agents hot-reload on each `Agent` tool call (no restart needed for new `.pi/agents/*.md` files)
14
+ - Updated pi dependencies to 0.56.1
15
15
 
16
16
  ### Refactored
17
17
  - Extracted `createActivityTracker()` — eliminates duplicated tool activity wiring between foreground and background paths
@@ -20,8 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
  - Extracted `getStatusLabel()` / `getStatusNote()` — consolidates 3 duplicated status formatting chains
21
21
  - Shared `extractText()` — consolidated duplicate from context.ts and agent-runner.ts
22
22
  - Added `ERROR_STATUSES` constant in widget for consistent status checks
23
+ - `getDisplayName()` now delegates to `getConfig()` instead of separate lookups
24
+ - Removed unused `Tool` type export from agent-types
23
25
 
24
- ## [0.4.1] - 2026-03-05
26
+ ## [0.2.1] - 2026-03-05
25
27
 
26
28
  ### Added
27
29
  - **Persistent above-editor widget** — tree view of all running/queued/finished agents with animated spinners and live stats
@@ -75,7 +77,7 @@ Initial release.
75
77
  - **Thinking level** — per-agent extended thinking control
76
78
  - **`/agent` and `/agents` commands**
77
79
 
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
80
+ [0.2.2]: https://github.com/tintinweb/pi-subagents/compare/v0.2.1...v0.2.2
81
+ [0.2.1]: https://github.com/tintinweb/pi-subagents/compare/v0.2.0...v0.2.1
80
82
  [0.2.0]: https://github.com/tintinweb/pi-subagents/compare/v0.1.0...v0.2.0
81
83
  [0.1.0]: https://github.com/tintinweb/pi-subagents/releases/tag/v0.1.0
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.2",
4
4
  "description": "A pi extension providing autonomous sub-agents with Claude Code-style UI",
5
5
  "author": "tintinweb",
6
6
  "license": "MIT",