prjct-cli 2.23.8 → 2.23.12
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 +29 -1
- package/README.md +9 -1
- package/dist/bin/prjct-core.mjs +360 -360
- package/dist/daemon/entry.mjs +236 -236
- package/dist/mcp/server.mjs +37 -37
- package/dist/templates.json +1 -1
- package/package.json +3 -1
- package/scripts/ensure-native-deps.js +64 -0
- package/scripts/postinstall.js +16 -12
- package/templates/agents/AGENTS.md +12 -0
- package/templates/codex/SKILL.md +2 -0
- package/templates/crew/agents/implementer.md +2 -1
- package/templates/crew/agents/leader.md +2 -1
- package/templates/crew/agents/reviewer.md +2 -1
- package/templates/crew/registry.json +27 -0
- package/templates/global/ANTIGRAVITY.md +4 -0
- package/templates/global/CURSOR.mdc +4 -0
- package/templates/global/GEMINI.md +4 -0
- package/templates/global/WINDSURF.md +4 -0
- package/templates/skills/prjct/SKILL.md +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,11 @@
|
|
|
8
8
|
## [2.23.7] - 2026-05-18
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
|
-
-
|
|
11
|
+
- Repair required SQLite native dependencies during package install, `prjct install`, and daemon startup.
|
|
12
|
+
- Configure only required MCP defaults (`context7` and `prjct`); Linear and Jira remain manual optional integrations.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Document native dependency repair in the README, install prompt, and SQLite migration guide.
|
|
12
16
|
|
|
13
17
|
## [2.23.6] - 2026-05-18
|
|
14
18
|
|
|
@@ -77,6 +81,30 @@
|
|
|
77
81
|
|
|
78
82
|
## [Unreleased]
|
|
79
83
|
|
|
84
|
+
## [2.23.12] - 2026-05-20
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- current work
|
|
88
|
+
|
|
89
|
+
## [2.23.11] - 2026-05-20
|
|
90
|
+
|
|
91
|
+
### Added
|
|
92
|
+
- Audit cleanup: prompt-injection defense, perf paralelización, crew identity por nombre+color, vault sweep fix
|
|
93
|
+
|
|
94
|
+
## [2.23.10] - 2026-05-20
|
|
95
|
+
|
|
96
|
+
### Fixed
|
|
97
|
+
- Retry native SQLite dependency repair before daemon startup and keep install flows non-blocking when repair is deferred.
|
|
98
|
+
|
|
99
|
+
## [2.23.9] - 2026-05-20
|
|
100
|
+
|
|
101
|
+
### Added
|
|
102
|
+
- Repair required SQLite native dependencies during package install, `prjct install`, and daemon startup.
|
|
103
|
+
- Configure only required MCP defaults (`context7` and `prjct`); Linear and Jira remain manual optional integrations.
|
|
104
|
+
|
|
105
|
+
### Changed
|
|
106
|
+
- Document native dependency repair in the README, install prompt, and SQLite migration guide.
|
|
107
|
+
|
|
80
108
|
## [2.23.5] - 2026-05-18
|
|
81
109
|
|
|
82
110
|
### Added
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Install or upgrade prjct on this machine. First detect which package manager I u
|
|
|
18
18
|
- yarn: `yarn global add prjct-cli@latest`
|
|
19
19
|
- npm: `npm install -g prjct-cli@latest`
|
|
20
20
|
|
|
21
|
-
After install, run `prjct setup` to wire
|
|
21
|
+
After install, run `prjct install` to verify/repair required native dependencies and hooks, then `prjct setup` to wire providers, then `prjct sync` if the cwd is a git repo. Verify with `prjct -v` and tell me which package manager you used.
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
~30 seconds. Claude detects YOUR package manager (pnpm, bun, yarn, npm) and uses it — critical so we don't end up with parallel installs in different package managers' bin dirs. Re-pasting upgrades to the latest published version.
|
|
@@ -69,6 +69,14 @@ check, logs to `~/.prjct-cli/state/auto-update.log`).
|
|
|
69
69
|
|
|
70
70
|
Full install + upgrade paths: [INSTALL_PROMPT.md](./INSTALL_PROMPT.md).
|
|
71
71
|
|
|
72
|
+
### Native dependency repair
|
|
73
|
+
|
|
74
|
+
prjct uses SQLite for local project memory. On Node installs, that requires the
|
|
75
|
+
`better-sqlite3` native binding. The package install, `prjct install`, and
|
|
76
|
+
daemon startup all verify the binding and retry `npm rebuild better-sqlite3`
|
|
77
|
+
when needed. If a locked-down sandbox blocks the rebuild, install still
|
|
78
|
+
continues and the daemon retries the repair the next time it starts.
|
|
79
|
+
|
|
72
80
|
## What you get
|
|
73
81
|
|
|
74
82
|
After install, **next session in any prjct project**:
|