pure-point-guard 0.1.8 → 0.2.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.
- package/CHANGELOG.md +35 -0
- package/dist/cli.js +829 -308
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/skills/ppg-conductor/SKILL.md +3 -2
- package/skills/ppg-conductor/references/commands.md +71 -0
- package/skills/ppg-conductor/references/conductor.md +29 -26
- package/skills/ppg-conductor/references/modes.md +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ 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.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.0] - 2026-02-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Command palette for pane creation** — Cmd+N spawns new agents via variant selection and command palette (#30)
|
|
13
|
+
- **Agent variants** — multi-agent support with configurable agent types (#30)
|
|
14
|
+
- **Tabbed Settings UI** with AppSettingsManager (#28)
|
|
15
|
+
- **2x3 grid layout** — pane grid constraints with improved split/close logic
|
|
16
|
+
- **Single-pane hover overlay** — quick access controls when hovering over a solo pane
|
|
17
|
+
- **`pr` and `reset` commands** — self-awareness module and enhanced cleanup
|
|
18
|
+
- **Worktree name normalization** for `--name` values (#29)
|
|
19
|
+
|
|
20
|
+
### Performance
|
|
21
|
+
|
|
22
|
+
- **FSEvents file watching** replaces polling for manifest updates — dramatically reduces CPU usage (#21)
|
|
23
|
+
- **Incremental sidebar tree updates** instead of full rebuild on every change (#22)
|
|
24
|
+
- **Optimized threading** — reduced main-thread contention in dashboard (#23)
|
|
25
|
+
- **Optimized terminal rendering and memory** for multi-agent views (#24)
|
|
26
|
+
- **Fixed stale sidebar data** when contentSignature is unchanged (#27)
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- tmux `send-keys` not submitting Enter to Claude Code agents (#25)
|
|
31
|
+
- `spawn`/`restart` opening unwanted Terminal.app windows (#26)
|
|
32
|
+
- tmux not found in dashboard TerminalPane and Terminal.app on M-series Macs
|
|
33
|
+
- Single-pane hover overlay close button now correctly kills agent
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Reduced sidebar status circles and indentation for cleaner look
|
|
38
|
+
- Shrunk terminal icon to match agent circle size
|
|
39
|
+
- Filtered worktree variant from pane command palette
|
|
40
|
+
- Removed agent command setting and General tab from Settings
|
|
41
|
+
|
|
8
42
|
## [0.1.1] - 2026-02-24
|
|
9
43
|
|
|
10
44
|
### Fixed
|
|
@@ -31,5 +65,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
31
65
|
- Status detection via signal-stack: result file, pane existence, pane liveness, current command
|
|
32
66
|
- Native macOS dashboard app (`ppg ui`)
|
|
33
67
|
|
|
68
|
+
[0.2.0]: https://github.com/2witstudios/ppg-cli/releases/tag/v0.2.0
|
|
34
69
|
[0.1.1]: https://github.com/2witstudios/ppg-cli/releases/tag/v0.1.1
|
|
35
70
|
[0.1.0]: https://github.com/2witstudios/ppg-cli/releases/tag/v0.1.0
|