prjct-cli 3.47.0 → 3.48.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 +32 -0
- package/LICENSE +2 -2
- package/NOTICE +25 -0
- package/README.md +6 -2
- package/dist/bin/prjct-core.mjs +528 -527
- package/dist/bin/prjct-hooks.mjs +277 -276
- package/dist/bin/prjct.mjs +2 -2
- package/dist/daemon/entry.mjs +419 -418
- package/dist/mcp/server.mjs +225 -224
- package/dist/templates.json +1 -1
- package/package.json +18 -2
- package/templates/global/STORAGE-SPEC.md +0 -327
- package/templates/planning-methodology-deep.md +0 -195
- package/templates/sdd-canonical-sequence.md +0 -85
- package/templates/spec-reviewer-rubrics/architecture.md +0 -47
- package/templates/spec-reviewer-rubrics/design.md +0 -38
- package/templates/spec-reviewer-rubrics/strategic.md +0 -32
- package/templates/spec-template.md +0 -97
- /package/templates/crew/{CLAUDE-leader-mode.md → leader-mode.md} +0 -0
- /package/templates/crew/{agents → roles}/implementer.md +0 -0
- /package/templates/crew/{agents → roles}/leader.md +0 -0
- /package/templates/crew/{agents → roles}/reviewer.md +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,38 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
+
### Changed
|
|
8
|
+
- **Repo hygiene (complete)**: knip-clean; no repo-local AGENTS/CLAUDE/Copilot/MCP harness; dead template docs removed; contributor architecture in `CONTRIBUTING.md` + `docs/`.
|
|
9
|
+
- **Source renames (product-only naming)**: `host-agents-md` / `host-claude-md` / `runtime-claude` / `agent-info` / `agents-md-discovery`; crew templates under `templates/crew/roles/`; standalone installer `scripts/install-standalone.sh`. Destination host paths (e.g. user-project `CLAUDE.md`, `.claude/agents/`) unchanged — those are host APIs.
|
|
10
|
+
- **Licensing**: MIT © 2024–2026, `NOTICE`, package author/SPDX, CONTRIBUTING contribution clause.
|
|
11
|
+
|
|
12
|
+
## [3.48.0] - 2026-07-11
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- freeze review scope from git (gentle-ai v1.49) (#547)
|
|
17
|
+
- freeze review scope from git (gentle-ai v1.49)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- feat(judgment): freeze review scope from git (gentle-ai v1.49)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## [3.47.1] - 2026-07-11
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- security P0 (no shell spawns) + cold afterEmit detach (#546)
|
|
29
|
+
- harden subprocess surfaces + detach cold-path afterEmit
|
|
30
|
+
|
|
31
|
+
### Maintenance
|
|
32
|
+
|
|
33
|
+
- repo hygiene + solid MIT licensing (#545)
|
|
34
|
+
- complete product-only rename — no repo agent harness leftovers
|
|
35
|
+
- strip non-product agent harness from repo tree
|
|
36
|
+
- repo hygiene — dead code, root cruft, solid MIT licensing
|
|
37
|
+
|
|
38
|
+
|
|
7
39
|
## [3.47.0] - 2026-07-10
|
|
8
40
|
|
|
9
41
|
### Added
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2024 prjct
|
|
3
|
+
Copyright (c) 2024-2026 Juan José López Lira and prjct.app contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/NOTICE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
prjct-cli
|
|
2
|
+
Copyright (c) 2024-2026 Juan José López Lira and prjct.app contributors
|
|
3
|
+
|
|
4
|
+
This product is licensed under the MIT License. See the LICENSE file in the
|
|
5
|
+
repository root for the full license text.
|
|
6
|
+
|
|
7
|
+
SPDX-License-Identifier: MIT
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
Third-party software
|
|
12
|
+
|
|
13
|
+
This package bundles or depends on open-source components distributed under
|
|
14
|
+
their own licenses (see package.json `dependencies` and the npm registry
|
|
15
|
+
for each package's license). Notable direct runtime dependencies include:
|
|
16
|
+
|
|
17
|
+
- @clack/prompts
|
|
18
|
+
- @modelcontextprotocol/sdk
|
|
19
|
+
- chalk
|
|
20
|
+
- chokidar
|
|
21
|
+
- jsonc-parser
|
|
22
|
+
- zod
|
|
23
|
+
|
|
24
|
+
When you redistribute prjct-cli, preserve this NOTICE file and the LICENSE
|
|
25
|
+
file as required by the MIT License.
|
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@ RAG context, preventive guardrails, synthesized learning, and performance
|
|
|
6
6
|
signals for each dev+LLM work cycle.
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/prjct-cli)
|
|
9
|
+
[](./LICENSE)
|
|
9
10
|
[]()
|
|
10
11
|
[]()
|
|
11
12
|
[]()
|
|
@@ -33,7 +34,7 @@ After install, run `prjct install` to verify/repair required native dependencies
|
|
|
33
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:
|
|
34
35
|
|
|
35
36
|
```bash
|
|
36
|
-
curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-
|
|
37
|
+
curl -sSL https://raw.githubusercontent.com/jlopezlira/prjct-cli/main/scripts/install-standalone.sh | bash
|
|
37
38
|
```
|
|
38
39
|
|
|
39
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.
|
|
@@ -622,4 +623,7 @@ tradeoffs: [docs/storage-and-paths.md](./docs/storage-and-paths.md).
|
|
|
622
623
|
|
|
623
624
|
## License
|
|
624
625
|
|
|
625
|
-
MIT
|
|
626
|
+
[MIT](./LICENSE) © 2024–2026 Juan José López Lira and [prjct.app](https://prjct.app) contributors.
|
|
627
|
+
|
|
628
|
+
See [NOTICE](./NOTICE) for third-party attribution notes. Contributions are
|
|
629
|
+
accepted under the same MIT License (see [CONTRIBUTING.md](./CONTRIBUTING.md)).
|