prjct-cli 1.35.0 → 1.37.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 +38 -1
- package/README.md +16 -13
- package/dist/bin/prjct-core.mjs +510 -361
- package/dist/cli/linear.mjs +34 -9
- package/dist/daemon/entry.mjs +450 -268
- package/dist/templates.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,49 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.37.0] - 2026-02-14
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Context7 integration, pattern extraction, and p-command resolver (#184)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- preserve all projects in global AI tool configs during sync
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.36.2] - 2026-02-13
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- current work
|
|
18
|
+
|
|
19
|
+
## [1.36.1] - 2026-02-13
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- current work
|
|
23
|
+
|
|
24
|
+
## [1.36.0] - 2026-02-14
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
- Custom workflows with agentic auto-configuration (#183)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [1.36.0] - 2026-02-13
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
- Custom workflows with agentic auto-configuration (#183)
|
|
36
|
+
- Create user-defined workflows beyond built-in (task/done/ship/sync)
|
|
37
|
+
- Dynamic template generation at ~/.claude/commands/p/{name}.md
|
|
38
|
+
- CLI commands: create, list, delete, run
|
|
39
|
+
- Full test coverage (21 new tests)
|
|
40
|
+
|
|
3
41
|
## [1.35.0] - 2026-02-13
|
|
4
42
|
|
|
5
43
|
### Features
|
|
6
44
|
|
|
7
45
|
- add diff between consecutive analysis runs (PRJ-275) (#182)
|
|
8
46
|
|
|
9
|
-
|
|
10
47
|
## [1.34.0] - 2026-02-13
|
|
11
48
|
|
|
12
49
|
### Features
|
package/README.md
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
**Context layer for AI coding agents.**
|
|
4
4
|
|
|
5
|
-
Works with Claude Code, Gemini CLI, Antigravity, Cursor IDE, and more.
|
|
5
|
+
Works with Claude Code, Gemini CLI, OpenAI Codex, Antigravity, Cursor IDE, and more.
|
|
6
6
|
|
|
7
7
|
[](CLAUDE.md)
|
|
8
8
|
[]()
|
|
9
|
+
[]()
|
|
9
10
|
[]()
|
|
10
11
|
[]()
|
|
11
12
|
[](https://www.npmjs.com/package/prjct-cli)
|
|
@@ -38,7 +39,7 @@ npm install -g prjct-cli
|
|
|
38
39
|
|
|
39
40
|
## Quick Start
|
|
40
41
|
|
|
41
|
-
### Claude Code / Gemini CLI
|
|
42
|
+
### Claude Code / Gemini CLI / OpenAI Codex
|
|
42
43
|
|
|
43
44
|
```bash
|
|
44
45
|
# 1. One-time global setup
|
|
@@ -48,13 +49,15 @@ prjct start
|
|
|
48
49
|
cd my-project
|
|
49
50
|
prjct init
|
|
50
51
|
|
|
51
|
-
# 3. Open in Claude Code
|
|
52
|
+
# 3. Open in Claude Code, Gemini CLI, or Codex and use:
|
|
52
53
|
p. sync # Analyze project
|
|
53
54
|
p. task "add user auth" # Start a task
|
|
54
55
|
p. done # Complete subtask
|
|
55
56
|
p. ship # Ship with PR
|
|
56
57
|
```
|
|
57
58
|
|
|
59
|
+
> **Note (Codex):** `prjct sync` generates `AGENTS.md` for project-level Codex context, `prjct start` installs `~/.codex/skills/prjct/SKILL.md`, and `prjct doctor` validates the `p.` router health.
|
|
60
|
+
|
|
58
61
|
### Google Antigravity
|
|
59
62
|
|
|
60
63
|
```bash
|
|
@@ -93,19 +96,19 @@ prjct init
|
|
|
93
96
|
### Core Workflow
|
|
94
97
|
|
|
95
98
|
```
|
|
96
|
-
Claude/Gemini/Antigravity: p. sync → p. task "..." → [code] → p. done → p. ship
|
|
99
|
+
Claude/Gemini/Codex/Antigravity: p. sync → p. task "..." → [code] → p. done → p. ship
|
|
97
100
|
Cursor: /sync → /task "..." → [code] → /done → /ship
|
|
98
101
|
```
|
|
99
102
|
|
|
100
103
|
## How It Works
|
|
101
104
|
|
|
102
|
-
| Component | Claude Code | Gemini CLI | Antigravity | Cursor IDE |
|
|
103
|
-
|
|
104
|
-
| Router | `~/.claude/commands/p.md` | `~/.gemini/commands/p.toml` | Skill | `.cursor/commands/*.md` |
|
|
105
|
-
| Config | `~/.claude/CLAUDE.md` | `~/.gemini/GEMINI.md` | `~/.gemini/antigravity/skills/prjct/` | `.cursor/rules/prjct.mdc` |
|
|
106
|
-
| Storage | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` |
|
|
107
|
-
| Scope | Global | Global | Global | Per-project |
|
|
108
|
-
| Syntax | `p. command` | `p. command` | `p. command` | `/command` |
|
|
105
|
+
| Component | Claude Code | Gemini CLI | OpenAI Codex | Antigravity | Cursor IDE |
|
|
106
|
+
|-----------|-------------|------------|--------------|-------------|------------|
|
|
107
|
+
| Router | `~/.claude/commands/p.md` | `~/.gemini/commands/p.toml` | Skill (`~/.codex/skills/prjct/SKILL.md`) | Skill | `.cursor/commands/*.md` |
|
|
108
|
+
| Config | `~/.claude/CLAUDE.md` | `~/.gemini/GEMINI.md` | `AGENTS.md` | `~/.gemini/antigravity/skills/prjct/` | `.cursor/rules/prjct.mdc` |
|
|
109
|
+
| Storage | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` | `~/.prjct-cli/projects/` |
|
|
110
|
+
| Scope | Global | Global | Project + Global skill | Global | Per-project |
|
|
111
|
+
| Syntax | `p. command` | `p. command` | `p. command` | `p. command` | `/command` |
|
|
109
112
|
|
|
110
113
|
All agents share the same project storage, so you can switch between them freely.
|
|
111
114
|
|
|
@@ -167,8 +170,8 @@ const features = await stateStorage.getTaskHistoryByType(projectId, 'feature')
|
|
|
167
170
|
## CLI Commands
|
|
168
171
|
|
|
169
172
|
```bash
|
|
170
|
-
prjct start # First-time setup (Claude/Gemini)
|
|
171
|
-
prjct init # Initialize project (+
|
|
173
|
+
prjct start # First-time setup (Claude/Gemini/Codex skill install)
|
|
174
|
+
prjct init # Initialize project (+ AI tool setup)
|
|
172
175
|
prjct sync # Analyze project and generate context
|
|
173
176
|
prjct verify # Verify analysis integrity (cryptographic)
|
|
174
177
|
prjct verify --semantic # Verify analysis consistency (semantic)
|