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 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-cli
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
  [![npm](https://img.shields.io/npm/v/prjct-cli)](https://www.npmjs.com/package/prjct-cli)
9
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
9
10
  [![Claude Code](https://img.shields.io/badge/Claude%20Code-Ready-6366f1)]()
10
11
  [![Gemini CLI](https://img.shields.io/badge/Gemini%20CLI-Ready-4285F4)]()
11
12
  [![Cursor IDE](https://img.shields.io/badge/Cursor%20IDE-Ready-00D4AA)]()
@@ -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-via-claude.sh | bash
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)).