prjct-cli 2.67.1 → 2.68.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 +16 -0
- package/README.md +11 -6
- package/dist/bin/prjct-core.mjs +393 -389
- package/dist/daemon/entry.mjs +318 -314
- package/dist/mcp/server.mjs +200 -197
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.68.0] - 2026-06-24
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- transparent auto-harness task start and Codex status line install
|
|
9
|
+
- `prjct task` now creates a transparent auto-harness (H0-H3) with expected evidence and advisory completion warnings, shared by CLI and MCP task starts.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- `prjct install` now repairs detected Codex `~/.codex/config.toml` with the prjct MCP server and TUI `status_line`, matching the setup flow.
|
|
13
|
+
|
|
14
|
+
## [2.67.2] - 2026-06-24
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- route upgrade alias through update (#465)
|
|
19
|
+
- route upgrade alias through update
|
|
20
|
+
|
|
5
21
|
## [2.67.1] - 2026-06-23
|
|
6
22
|
|
|
7
23
|
### Fixed
|
package/README.md
CHANGED
|
@@ -216,6 +216,7 @@ In a real terminal — branded, animated, colored:
|
|
|
216
216
|
$ prjct task "add OAuth refresh"
|
|
217
217
|
⚡ prjct ✓ Task started: add OAuth refresh
|
|
218
218
|
branch: task/add-oauth-refresh · status: active
|
|
219
|
+
harness: H2 feature/medium · evidence: focused-tests, scope-check, spec-or-design
|
|
219
220
|
```
|
|
220
221
|
|
|
221
222
|
Inside Claude Code / Codex / CI (non-TTY) — the same line, **static** (no
|
|
@@ -226,6 +227,7 @@ can consume directly:
|
|
|
226
227
|
$ prjct task "add OAuth refresh" --md
|
|
227
228
|
> Task started: **add OAuth refresh**
|
|
228
229
|
> branch `task/add-oauth-refresh` · status `active`
|
|
230
|
+
> harness `H2 feature/medium` · evidence `focused-tests, scope-check, spec-or-design`
|
|
229
231
|
```
|
|
230
232
|
|
|
231
233
|
## Quick start (post-install)
|
|
@@ -316,7 +318,7 @@ Slots ship **empty** — the human or the agent fills them on demand.
|
|
|
316
318
|
|
|
317
319
|
## Claude Hooks Adapter (opt-in)
|
|
318
320
|
|
|
319
|
-
`prjct install` refreshes the universal project surface (`AGENTS.md`) when run inside a prjct project,
|
|
321
|
+
`prjct install` refreshes the universal project surface (`AGENTS.md`) when run inside a prjct project, writes the Claude Code hooks adapter to `~/.claude/settings.json`, and repairs detected Codex config in `~/.codex/config.toml` (prjct MCP + TUI `status_line`). The Claude hooks inject `additionalContext`; none block by default. Other agents use the support level shown by `prjct agents doctor`.
|
|
320
322
|
|
|
321
323
|
| Event | Injects |
|
|
322
324
|
|---|---|
|
|
@@ -350,7 +352,7 @@ The broker model: if you already have `linear`, `jira`, `posthog`, `gmail` MCPs
|
|
|
350
352
|
```bash
|
|
351
353
|
prjct start First-time setup wizard (AI providers + commands)
|
|
352
354
|
prjct init Initialize project in current directory
|
|
353
|
-
prjct install Install Claude
|
|
355
|
+
prjct install Install agent surfaces, Claude hooks, Codex status line
|
|
354
356
|
prjct uninstall Complete system removal
|
|
355
357
|
prjct sync Sync project state, rebuild indexes
|
|
356
358
|
prjct regen Full vault rebuild from SQLite
|
|
@@ -518,15 +520,17 @@ the SQLite store at `~/.prjct-cli/projects/<projectId>/`, and generates the vaul
|
|
|
518
520
|
|
|
519
521
|
**How do I add a development task?**
|
|
520
522
|
Run `prjct task "<description>"` from the repo. It registers the task in SQLite,
|
|
521
|
-
|
|
523
|
+
auto-classifies a lightweight harness (H0-H3) with expected evidence, and marks
|
|
524
|
+
it active — worked example:
|
|
522
525
|
|
|
523
526
|
```bash
|
|
524
527
|
$ prjct task "add OAuth refresh"
|
|
525
528
|
⚡ prjct ✓ Task started: add OAuth refresh
|
|
526
529
|
branch: task/add-oauth-refresh · status: active
|
|
530
|
+
harness: H2 feature/medium · evidence: focused-tests, scope-check, spec-or-design
|
|
527
531
|
|
|
528
532
|
$ prjct tag type:feature domain:auth # optional: categorize it
|
|
529
|
-
$ prjct status done #
|
|
533
|
+
$ prjct status done # closes it; warns if harness evidence is missing
|
|
530
534
|
$ prjct ship # bump version, commit, PR
|
|
531
535
|
```
|
|
532
536
|
|
|
@@ -584,9 +588,10 @@ sandbox is non-interactive/non-TTY, so prjct-cli emits the same static, prompt-f
|
|
|
584
588
|
status line as any agent; add `--md` for fully markdown-structured output.
|
|
585
589
|
|
|
586
590
|
**What does Codex get from prjct?**
|
|
587
|
-
|
|
591
|
+
Four surfaces, all installed/healed automatically: a compact skill at
|
|
588
592
|
`~/.codex/skills/prjct/SKILL.md` (kept under Codex's ~1KB skill cap), the
|
|
589
|
-
prjct MCP server wired into `~/.codex/config.toml` (`prjct_*` tools),
|
|
593
|
+
prjct MCP server wired into `~/.codex/config.toml` (`prjct_*` tools), a Codex
|
|
594
|
+
TUI `status_line` in that same config unless the user already set one, and a
|
|
590
595
|
vendor-neutral routing block in the project's `AGENTS.md` written by
|
|
591
596
|
`prjct init`. Codex has no lifecycle hooks, so AGENTS.md + MCP are its
|
|
592
597
|
session-start context and live tool surface.
|