prjct-cli 3.52.0 → 3.57.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 CHANGED
@@ -2,6 +2,51 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.57.0] - 2026-07-14
6
+
7
+ ### Added
8
+ - Memory auto-dream + L0 compact index (Claude Code steal Sprint A)
9
+ - `prjct dream` — memory auto-dream (KAIROS-style): gates (24h + 5 lands), 4-phase consolidate + L0 index rebuild; also on `prjct land` when gates open
10
+ - L0 compact memory index (`prjct memory index`) — ≤4k TOC injected on SessionStart; stored in kv `memory:l0-index`
11
+ - `prjct memory close|forget|dream|index` aliases; skill continue-vs-spawn + hygiene verbs
12
+
13
+ ## [3.56.1] - 2026-07-14
14
+
15
+ ### Bug Fixes
16
+
17
+ - publish npm metadata pointing at prjct-app/cli (#563)
18
+
19
+ ### Maintenance
20
+
21
+ - one-shot npm publish for registry metadata (temp) (#561)
22
+ - point all URLs at github.com/prjct-app/cli (#560)
23
+ - point product surface at prjct-app/prjct-cli (#559)
24
+
25
+ ## [3.56.0] - 2026-07-13
26
+
27
+ ### Added
28
+ - skill generator l0 test assertions
29
+
30
+ ## [3.55.0] - 2026-07-13
31
+
32
+ ### Added
33
+ - Optimized core prjct L0 skill for token efficiency (compressed verbs table + reduced redundancy = 791 tokens). Upgraded create-skill with SDO and TDD-for-skills patterns. Added systematic-debugging skill. Updated architecture with curation principles. All retrocompatible with all models. Full post analysis wins delivered. Tests and harness score passing.
34
+
35
+ ## [3.54.0] - 2026-07-13
36
+
37
+ ### Added
38
+ - Optimized core prjct L0 skill for token efficiency (compressed verbs table + reduced redundancy = 791 tokens). Upgraded create-skill with SDO and TDD-for-skills. Added systematic-debugging skill. Updated architecture with curation principles. All retrocompatible. Full post analysis wins delivered. Tests and harness passing.
39
+
40
+ ## [3.53.2] - 2026-07-13
41
+
42
+ ### Added
43
+ - Optimized core prjct L0 skill for token efficiency (compressed verbs table and reduced redundancy → 791 tokens). Upgraded create-skill with SDO and TDD-for-skills patterns. Added systematic-debugging skill template. Updated architecture.md with curation principles. All changes retrocompatible with all models. Full implementation of post analysis wins. Tests and harness score passing. Branch: feat/post-analysis-optimizations
44
+
45
+ ## [3.53.0] - 2026-07-13
46
+
47
+ ### Added
48
+ - skill curation from post analysis
49
+
5
50
  ## [3.52.0] - 2026-07-13
6
51
 
7
52
  ### Added
package/README.md CHANGED
@@ -34,7 +34,7 @@ After install, run `prjct install` to verify/repair required native dependencies
34
34
  If you'd rather have the standalone binary (Bun runtime embedded, no Node ecosystem needed), run this **yourself in a terminal** — it's a `curl | bash` install which Claude Code's harness intentionally blocks for safety:
35
35
 
36
36
  ```bash
37
- curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-standalone.sh | bash
37
+ curl -sSL https://raw.githubusercontent.com/prjct-app/cli/main/scripts/install-standalone.sh | bash
38
38
  ```
39
39
 
40
40
  The script auto-detects platform (mac arm64/intel + linux x64), downloads the right binary from GitHub Releases, sets up `~/.local/bin/prjct` on your PATH, runs `prjct setup` + `prjct sync`, and warns you if a stale package-manager install is shadowing the new binary.
@@ -616,7 +616,7 @@ tradeoffs: [docs/storage-and-paths.md](./docs/storage-and-paths.md).
616
616
  ## Links
617
617
 
618
618
  - [Website](https://cli.prjct.app)
619
- - [GitHub](https://github.com/jlopezlira/prjct-cli)
619
+ - [GitHub](https://github.com/prjct-app/cli)
620
620
  - [npm](https://www.npmjs.com/package/prjct-cli)
621
621
  - [Changelog](CHANGELOG.md)
622
622
  - [Architecture](./docs/architecture.md) · [Execution environments](./docs/environments.md) · [Storage & paths](./docs/storage-and-paths.md) · [SQLite migration](./docs/sqlite-migration.md)