prjct-cli 2.4.30 → 2.4.34
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 +20 -0
- package/README.md +7 -10
- package/dist/bin/prjct-core.mjs +110 -110
- package/dist/daemon/entry.mjs +78 -78
- package/dist/mcp/server.mjs +15 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.4.34] - 2026-05-02
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- current work
|
|
7
|
+
|
|
8
|
+
## [2.4.33] - 2026-05-02
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- current work
|
|
12
|
+
|
|
13
|
+
## [2.4.32] - 2026-05-02
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- current work
|
|
17
|
+
|
|
18
|
+
## [2.4.31] - 2026-05-02
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- current work
|
|
22
|
+
|
|
3
23
|
## [2.4.30] - 2026-05-02
|
|
4
24
|
|
|
5
25
|
### Added
|
package/README.md
CHANGED
|
@@ -12,29 +12,26 @@
|
|
|
12
12
|
Copy this prompt and paste it in Claude Code (works for fresh install AND upgrade):
|
|
13
13
|
|
|
14
14
|
```text
|
|
15
|
-
Install or upgrade prjct on this machine: run `
|
|
15
|
+
Install or upgrade prjct on this machine: run `npm install -g prjct-cli@latest`, then `prjct setup` to wire hooks, and `prjct sync` if the cwd is a git repo. Verify the version with `prjct -v`.
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
~30 seconds.
|
|
18
|
+
~30 seconds. Claude runs npm directly (no harness restrictions), wires the SessionStart/Stop hooks + the lookup-first CLAUDE.md block, and registers the project. Re-pasting upgrades to the latest published version.
|
|
19
19
|
|
|
20
|
-
Prefer
|
|
20
|
+
### Prefer no Node/npm? (run in your own terminal)
|
|
21
|
+
|
|
22
|
+
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:
|
|
21
23
|
|
|
22
24
|
```bash
|
|
23
25
|
curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-via-claude.sh | bash
|
|
24
26
|
```
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
npm install -g prjct-cli@latest
|
|
30
|
-
# or: bun install -g prjct-cli@latest
|
|
31
|
-
```
|
|
28
|
+
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.
|
|
32
29
|
|
|
33
30
|
### After install — three upgrade paths
|
|
34
31
|
|
|
35
32
|
| Method | Command | When |
|
|
36
33
|
|---|---|---|
|
|
37
|
-
|
|
|
34
|
+
| Re-paste the install prompt | (same prompt above) | Default. Claude re-runs `npm install -g prjct-cli@latest` and re-verifies. |
|
|
38
35
|
| CLI shortcut | `prjct update` | Already in a terminal. Auto-detects npm/pnpm/bun/yarn/homebrew. |
|
|
39
36
|
| Silent (set once) | `prjct config set auto-update on` | Background check 1/hour throttled, logs to `~/.prjct-cli/state/auto-update.log`. |
|
|
40
37
|
|