prjct-cli 3.59.1 → 3.60.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 +6 -1
- package/README.md +11 -10
- package/dist/bin/prjct-core.mjs +901 -833
- package/dist/bin/prjct-hooks.mjs +358 -307
- package/dist/daemon/entry.mjs +583 -515
- package/dist/mcp/server.mjs +342 -282
- package/dist/templates.json +1 -1
- package/package.json +2 -2
- package/templates/antigravity/SKILL.md +1 -1
- package/templates/codex/SKILL.md +1 -1
- package/templates/global/ANTIGRAVITY.md +1 -1
- package/templates/global/GEMINI.md +1 -1
- package/templates/skills/prjct/SKILL.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.60.0] - 2026-07-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Structural code symbol graph (CBM-inspired): symbols, trace, impact/hunks, architecture, dead code, per-project cache, Grep|Glob pre-search, CBM auto-fallback
|
|
9
|
+
- Harness repositioning — user-facing copy: 'AI Agile OS' → 'The agentic harness for AI coding agents'
|
|
10
|
+
|
|
5
11
|
## [3.59.1] - 2026-07-14
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
|
8
14
|
|
|
9
15
|
- bench-ab interleaved A/B reps + confirm pass — kill phantom regressions (#567)
|
|
10
16
|
|
|
11
|
-
|
|
12
17
|
## [3.59.0] - 2026-07-14
|
|
13
18
|
|
|
14
19
|
### Added
|
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# prjct-cli
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
signals for each dev+LLM
|
|
3
|
+
**The agentic harness for AI coding agents.** Intelligence is rented, the
|
|
4
|
+
harness is owned: prjct-cli gives Claude Code, Codex, Gemini, Cursor,
|
|
5
|
+
OpenCode, and any agent intent briefs, bounded RAG context, preventive
|
|
6
|
+
guardrails, synthesized learning, and performance signals for each dev+LLM
|
|
7
|
+
work cycle.
|
|
7
8
|
|
|
8
9
|
[](https://www.npmjs.com/package/prjct-cli)
|
|
9
10
|
[](./LICENSE)
|
|
@@ -176,7 +177,7 @@ Use `prjct agents doctor --fix` inside a prjct project to refresh the portable
|
|
|
176
177
|
`AGENTS.md` surface and any repo-local IDE rule adapters prjct manages. The
|
|
177
178
|
command is idempotent and reports what changed.
|
|
178
179
|
|
|
179
|
-
##
|
|
180
|
+
## Harness intelligence
|
|
180
181
|
|
|
181
182
|
prjct should justify itself with project evidence, not vague claims. These
|
|
182
183
|
read-only commands show whether dev+LLM work cycles are getting cheaper,
|
|
@@ -240,7 +241,7 @@ $ prjct work "add OAuth refresh" --md
|
|
|
240
241
|
```bash
|
|
241
242
|
# In any git repo
|
|
242
243
|
prjct sync # register the project (auto on first prjct command)
|
|
243
|
-
prjct work "add OAuth refresh" # start
|
|
244
|
+
prjct work "add OAuth refresh" # start a work cycle
|
|
244
245
|
prjct remember decision "we chose JWT + refresh rotation"
|
|
245
246
|
prjct remember context "implemented refresh rotation; model/tokens unknown; tests passed"
|
|
246
247
|
prjct ship # bump version, commit, push, open PR
|
|
@@ -261,7 +262,7 @@ prjct team --enforce # pre-commit hook blocks commits without prjc
|
|
|
261
262
|
|
|
262
263
|
```bash
|
|
263
264
|
p. remember context "call Ana re pricing; no work cycle yet"
|
|
264
|
-
p. work "add OAuth refresh" # start
|
|
265
|
+
p. work "add OAuth refresh" # start a work cycle
|
|
265
266
|
p. remember decision "we chose JWT + refresh rotation"
|
|
266
267
|
p. performance 7 # inspect dev+LLM efficiency
|
|
267
268
|
p. ship # commit, push, open PR
|
|
@@ -269,12 +270,12 @@ p. ship # commit, push, open PR
|
|
|
269
270
|
|
|
270
271
|
Cursor and Windsurf use their installed prjct router files; otherwise run `prjct <command> --md` and follow the output.
|
|
271
272
|
|
|
272
|
-
###
|
|
273
|
+
### Harness verbs
|
|
273
274
|
|
|
274
275
|
| Verb | What it does |
|
|
275
276
|
|---|---|
|
|
276
277
|
| `prjct intent "<title>"` | Frame objective, constraints, risks, and success signal before high-stakes work. |
|
|
277
|
-
| `prjct work ["<intent>"]` | Start or inspect
|
|
278
|
+
| `prjct work ["<intent>"]` | Start or inspect a work cycle with context and evidence. |
|
|
278
279
|
| `prjct remember <type> "<content>"` | Persist a memory entry (decision, learning, gotcha, …). |
|
|
279
280
|
| `prjct forget <id>` | Delete a memory entry by id (`prjct forget mem_1234`) — the delete half of `remember`. |
|
|
280
281
|
| `prjct search "<query>"` | Search project memory — blended BM25 + semantic + recency recall (`prjct search mem_1234` resolves an entry by id). |
|
|
@@ -499,7 +500,7 @@ In any git repo, run `prjct sync` (it auto-runs on the first `prjct` command) or
|
|
|
499
500
|
`prjct init`. This creates `.prjct/prjct.config.json` with a `projectId` and
|
|
500
501
|
builds the SQLite store at `~/.prjct-cli/projects/<projectId>/`.
|
|
501
502
|
|
|
502
|
-
**How do I start
|
|
503
|
+
**How do I start a work cycle?**
|
|
503
504
|
Run `prjct work "<intent>"` from the repo. It registers the work cycle in
|
|
504
505
|
SQLite, pulls relevant second-brain context, auto-classifies a lightweight
|
|
505
506
|
harness (H0-H3) with expected evidence, and marks it active — worked example:
|