prjct-cli 2.4.28 → 2.4.32
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 +26 -8
- 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.32] - 2026-05-02
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- current work
|
|
7
|
+
|
|
8
|
+
## [2.4.31] - 2026-05-02
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- current work
|
|
12
|
+
|
|
13
|
+
## [2.4.30] - 2026-05-02
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- current work
|
|
17
|
+
|
|
18
|
+
## [2.4.29] - 2026-05-02
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- current work
|
|
22
|
+
|
|
3
23
|
## [2.4.28] - 2026-05-02
|
|
4
24
|
|
|
5
25
|
### Added
|
package/README.md
CHANGED
|
@@ -9,18 +9,36 @@
|
|
|
9
9
|
|
|
10
10
|
## Install / upgrade — one paste
|
|
11
11
|
|
|
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 `curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-via-claude.sh | bash` and verify with `prjct -v`. If the cwd is a git repo, also run `prjct sync` to register it.
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
~30 seconds. The script downloads the standalone binary for your platform from GitHub Releases (no Node/npm needed), wires hooks + the lookup-first CLAUDE.md block, and registers the project. Re-running is safe — the script detects existing installs and upgrades to the latest published version.
|
|
19
|
+
|
|
20
|
+
Prefer terminal? Same effect:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-via-claude.sh | bash
|
|
24
|
+
```
|
|
15
25
|
|
|
16
|
-
|
|
26
|
+
Or via package manager:
|
|
17
27
|
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
28
|
+
```bash
|
|
29
|
+
npm install -g prjct-cli@latest
|
|
30
|
+
# or: bun install -g prjct-cli@latest
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### After install — three upgrade paths
|
|
34
|
+
|
|
35
|
+
| Method | Command | When |
|
|
36
|
+
|---|---|---|
|
|
37
|
+
| Same prompt | re-paste the install prompt | Default. Works whether installed or not. |
|
|
38
|
+
| CLI shortcut | `prjct update` | Already in a terminal. Auto-detects npm/pnpm/bun/yarn/homebrew. |
|
|
39
|
+
| Silent (set once) | `prjct config set auto-update on` | Background check 1/hour throttled, logs to `~/.prjct-cli/state/auto-update.log`. |
|
|
22
40
|
|
|
23
|
-
Full install + upgrade paths in [INSTALL_PROMPT.md](./INSTALL_PROMPT.md).
|
|
41
|
+
Full install + upgrade paths documented in [INSTALL_PROMPT.md](./INSTALL_PROMPT.md).
|
|
24
42
|
|
|
25
43
|
## What you get
|
|
26
44
|
|