prjct-cli 3.76.0 → 3.77.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 +12 -0
- package/README.md +1 -1
- package/dist/bin/prjct-core.mjs +637 -621
- package/dist/bin/prjct-hooks.mjs +320 -304
- package/dist/daemon/entry.mjs +571 -555
- package/dist/mcp/server.mjs +293 -277
- package/dist/templates.json +1 -1
- package/package.json +2 -2
- package/templates/crew/leader-mode.md +1 -1
- package/templates/crew/roles/implementer.md +1 -1
- package/templates/crew/roles/leader.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.77.0] - 2026-07-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Plans and work data: SQLite only — never physical files.** Templates stopped *instructing* `.prjct/sessions/` writes in v2.19.7, but stale customized agents kept dumping `plan.md` / `impl.md` into client repos (not traceable). Every `prjct sync` now (1) **ingests** text from `.prjct/{sessions,audits,deploy}/` into project SQLite (`prjct remember` context, topic `worktree-ghost-ingest`) then **deletes** those dirs (no re-home onto disk), and (2) **force-refreshes** crew agent files / `CLAUDE.md` / `CREW.md` that still instruct disk writes (including `SESSION_ROOT` / `~/.prjct-cli/**/sessions/` hideouts). Durable surface: `prjct plan` / `prjct spec` / `prjct crew record-run` / `prjct remember` — project SQL only. Only hand-editable file under `.prjct/` is `prjct.config.json`.
|
|
10
|
+
|
|
11
|
+
## [3.76.1] - 2026-07-22
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- login and cloud API defaults: `cli.prjct.app` → `prjct.app`, `cli-api.prjct.app` → `api.prjct.app` (with legacy apiUrl migration)
|
|
16
|
+
|
|
5
17
|
## [3.76.0] - 2026-07-21
|
|
6
18
|
|
|
7
19
|
### Features
|
package/README.md
CHANGED
|
@@ -650,7 +650,7 @@ tradeoffs: [docs/storage-and-paths.md](./docs/storage-and-paths.md).
|
|
|
650
650
|
|
|
651
651
|
## Links
|
|
652
652
|
|
|
653
|
-
- [Website](https://
|
|
653
|
+
- [Website](https://prjct.app)
|
|
654
654
|
- [GitHub](https://github.com/prjct-app/cli)
|
|
655
655
|
- [npm](https://www.npmjs.com/package/prjct-cli)
|
|
656
656
|
- [Changelog](CHANGELOG.md)
|