prjct-cli 2.35.0 → 2.36.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 +15 -0
- package/dist/bin/prjct-core.mjs +249 -249
- package/dist/daemon/entry.mjs +247 -247
- package/dist/mcp/server.mjs +28 -28
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/codex/SKILL.md +8 -15
package/package.json
CHANGED
package/templates/codex/SKILL.md
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: prjct
|
|
3
|
-
description: Use when user mentions p., prjct,
|
|
3
|
+
description: Use when the user mentions p., prjct, tasks, specs, shipping, or project memory. Routes to the prjct CLI and MCP tools — run commands on demand, do not preload context.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# prjct —
|
|
6
|
+
# prjct — project memory & workflow
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Run `prjct <command> --md` and follow its output. Pull context on demand; never dump it all.
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
- Flow: `task` → work → `done` → `ship`
|
|
11
|
+
- Memory: `prjct remember <decision|gotcha|learning|fact> "<text>"`, `prjct recall`, `prjct guard <file>` (preventive memory before editing)
|
|
12
|
+
- Capture stray thoughts: `prjct capture "<text>"`
|
|
13
|
+
- Run `prjct --help` for the full command list; prefer the prjct MCP tools (`prjct_*`) when available.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Rules:
|
|
17
|
-
- prjct runs → LLM generates relevant data → prjct stores it → LLM requests it from prjct → LLM uses it
|
|
18
|
-
- prjct remembers and shows the path; the agent decides how to execute with its own tools
|
|
19
|
-
- Treat prjct output as signals, not a prescriptive harness
|
|
20
|
-
- All commits include footer: `Generated with [p/](https://www.prjct.app/)`
|
|
21
|
-
- All storage through `prjct` CLI (SQLite internally)
|
|
22
|
-
- Start code tasks with `p. task` and follow Context Contract from CLI output
|
|
15
|
+
Commit footer: `Generated with [p/](https://www.prjct.app/)`
|