prjct-cli 1.36.0 → 1.37.1

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
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.37.1] - 2026-02-14
4
+
5
+ ### Bug Fixes
6
+
7
+ - neutral banner colors + add Codex to provider selection (#185)
8
+
9
+
10
+ ## [1.37.1] - 2026-02-14
11
+
12
+ ### Fixed
13
+ - Banner colors: neutral warm gray gradient (was loud cyan/pink)
14
+ - Codex provider now appears in `prjct start` selection menu
15
+
16
+ ## [1.37.0] - 2026-02-14
17
+
18
+ ### Features
19
+
20
+ - Context7 integration, pattern extraction, and p-command resolver (#184)
21
+
22
+ ### Bug Fixes
23
+
24
+ - preserve all projects in global AI tool configs during sync
25
+
26
+ ## [1.36.2] - 2026-02-13
27
+
28
+ ### Added
29
+ - current work
30
+
31
+ ## [1.36.1] - 2026-02-13
32
+
33
+ ### Added
34
+ - current work
35
+
3
36
  ## [1.36.0] - 2026-02-14
4
37
 
5
38
  ### 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 Code](https://img.shields.io/badge/Claude%20Code-Ready-6366f1)](CLAUDE.md)
8
8
  [![Gemini CLI](https://img.shields.io/badge/Gemini%20CLI-Ready-4285F4)]()
9
+ [![OpenAI Codex](https://img.shields.io/badge/OpenAI%20Codex-Ready-10A37F)]()
9
10
  [![Antigravity](https://img.shields.io/badge/Antigravity-Ready-EA4335)]()
10
11
  [![Cursor IDE](https://img.shields.io/badge/Cursor%20IDE-Ready-00D4AA)]()
11
12
  [![npm](https://img.shields.io/npm/v/prjct-cli)](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 or Gemini CLI and use:
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 (+ Cursor setup)
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)