prjct-cli 2.54.0 → 2.56.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
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.56.0] - 2026-06-22
6
+
7
+ ### Added
8
+ - paid-tier product proof surfaces
9
+
10
+ ## [2.55.0] - 2026-06-21
11
+
12
+ ### Added
13
+ - fix sync analysis save for all agents
14
+
5
15
  ## [2.54.0] - 2026-06-21
6
16
 
7
17
  ### Added
package/README.md CHANGED
@@ -134,6 +134,40 @@ relocates the global store). Teammates share knowledge via optional cloud sync
134
134
  (`prjct login` + `prjct sync`), **not** git — git never carries state. Full
135
135
  detail, worktrees, monorepos: **[docs/storage-and-paths.md](./docs/storage-and-paths.md)**.
136
136
 
137
+ ## Agent compatibility levels
138
+
139
+ prjct does not pretend every AI coding agent has the same integration surface.
140
+ It reports concrete support levels:
141
+
142
+ | Level | What it means |
143
+ |---|---|
144
+ | `full` | prjct-maintained native hooks plus MCP/skills or equivalent deep integration. |
145
+ | `good` | AGENTS.md plus MCP-capable runtime. |
146
+ | `baseline` | Repo instructions plus `prjct <command> --md`; no native hooks assumed. |
147
+ | `hosted` | Repo instructions are the portable layer; platform config may be manual. |
148
+
149
+ Run `prjct agents doctor --md` to see the current machine/project matrix for
150
+ Claude Code, Codex, Gemini CLI, OpenCode, Qwen Code, Kimi CLI, Cursor,
151
+ Windsurf, Cline/Roo-family agents, hosted agents, and future AGENTS.md/MCP
152
+ clients.
153
+
154
+ Use `prjct agents doctor --fix` inside a prjct project to refresh the portable
155
+ `AGENTS.md` surface and any repo-local IDE rule adapters prjct manages. The
156
+ command is idempotent and reports what changed.
157
+
158
+ ## Value proof commands
159
+
160
+ prjct should justify itself with project evidence, not vague claims. These
161
+ read-only commands show whether the project is actually compounding:
162
+
163
+ | Command | What it proves |
164
+ |---|---|
165
+ | `prjct value --md` | Durable memory, preventive guardrails, shipped work, sync metrics, and detected agent coverage. |
166
+ | `prjct memory-doctor --md` | Duplicate, stale, low-signal, or untyped memories before they poison recall. |
167
+ | `prjct report 7 --md` | A human weekly report from shipped features, completed tasks, and carry-forward lessons. |
168
+ | `prjct handoff codex --md` | A takeover prompt for the next agent with the checks it should run first. |
169
+ | `prjct guardrails --md` | File-specific warnings for the current changeset from preventive memory. |
170
+
137
171
  ## Execution environments (zero-config)
138
172
 
139
173
  The same binary runs in a plain shell, inside Claude Code, in an OpenAI Codex sandbox, or in CI, and **adapts output automatically with no configuration**. Detection signals (env vars, MCP, `CLAUDE.md`, `~/.claude/`, the `codex` binary on PATH, `process.stdout.isTTY`) are read silently; `--md` / `--json` are the only overrides. Full per-environment table, source-file references, and the detection order: **[docs/environments.md](./docs/environments.md)**.
@@ -208,6 +242,12 @@ Cursor / Windsurf use the same commands with a `/` prefix: `/capture`, `/task`,
208
242
  | `prjct sync` | Re-index files, git co-change, imports; refresh project analysis. |
209
243
  | `prjct regen` | Full rebuild of the Obsidian vault snapshot from SQLite. |
210
244
  | `prjct suggest` | Smart recommendations based on current project state. |
245
+ | `prjct value` | Show whether prjct is paying for itself in this project. |
246
+ | `prjct memory-doctor` | Audit memory quality before noisy context spreads to every agent. |
247
+ | `prjct report [days]` | Generate a human report from shipped work and project memory. |
248
+ | `prjct handoff [agent]` | Prepare the next AI coding agent to continue with context. |
249
+ | `prjct guardrails` | Check the current changeset against known project traps. |
250
+ | `prjct agents doctor` | Show the auditable compatibility matrix for local and project agent runtimes. |
211
251
  | `prjct review-risk` | Advisory change-size + delivery-geometry signal for the branch (read-only; never gates, never splits). |
212
252
  | `prjct seed <add\|list>` | Manage packs (persona, memory types, workflow slots). |
213
253
 
@@ -239,9 +279,9 @@ Five built-in packs (manifests, not bash pipelines):
239
279
 
240
280
  Slots ship **empty** — the human or the agent fills them on demand.
241
281
 
242
- ## Hooks (opt-in)
282
+ ## Claude Hooks Adapter (opt-in)
243
283
 
244
- `prjct install` writes 8 passive hooks to `~/.claude/settings.json`. They inject `additionalContext`; none block by default.
284
+ `prjct install` refreshes the universal project surface (`AGENTS.md`) when run inside a prjct project, and also writes the Claude Code hooks adapter to `~/.claude/settings.json`. The hooks inject `additionalContext`; none block by default. Other agents use the support level shown by `prjct agents doctor`.
245
285
 
246
286
  | Event | Injects |
247
287
  |---|---|