prjct-cli 0.54.0 → 0.54.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 +14 -5
- package/dist/bin/prjct.mjs +1 -1
- package/package.json +1 -1
- package/templates/global/CLAUDE.md +48 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.54.
|
|
3
|
+
## [0.54.1] - 2026-01-30
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- Claude over-plans simple commands like p. sync - PRJ-148 (#83)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [0.55.2] - 2026-01-30
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
6
13
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
14
|
+
- **Claude over-plans simple commands** (PRJ-148)
|
|
15
|
+
- Added "⚡ FAST vs 🧠 SMART COMMANDS" section to CLAUDE.md
|
|
16
|
+
- FAST commands (sync, next, dash, pause, resume) now execute immediately without exploration/planning
|
|
17
|
+
- SMART commands (task, ship, bug, done) continue to use intelligent behavior
|
|
18
|
+
- Clarified that "Key Intelligence Rules" only apply to SMART commands
|
|
10
19
|
|
|
11
20
|
|
|
12
21
|
## [0.55.1] - 2026-01-30
|
package/dist/bin/prjct.mjs
CHANGED
|
@@ -25016,7 +25016,7 @@ var require_package = __commonJS({
|
|
|
25016
25016
|
"package.json"(exports, module) {
|
|
25017
25017
|
module.exports = {
|
|
25018
25018
|
name: "prjct-cli",
|
|
25019
|
-
version: "0.54.
|
|
25019
|
+
version: "0.54.1",
|
|
25020
25020
|
description: "Context layer for AI agents. Project context for Claude Code, Gemini CLI, and more.",
|
|
25021
25021
|
main: "core/index.ts",
|
|
25022
25022
|
bin: {
|
package/package.json
CHANGED
|
@@ -16,6 +16,50 @@ p. ship X → templates/commands/ship.md
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## ⚡ FAST vs 🧠 SMART COMMANDS (CRITICAL)
|
|
20
|
+
|
|
21
|
+
**Some commands just run a CLI. Others need intelligence. Know the difference.**
|
|
22
|
+
|
|
23
|
+
### ⚡ FAST COMMANDS (Execute Immediately - NO planning, NO exploration)
|
|
24
|
+
|
|
25
|
+
| Command | Action | Time |
|
|
26
|
+
|---------|--------|------|
|
|
27
|
+
| `p. sync` | Run `prjct sync` | <5s |
|
|
28
|
+
| `p. next` | Run `prjct next` | <2s |
|
|
29
|
+
| `p. dash` | Run `prjct dash` | <2s |
|
|
30
|
+
| `p. pause` | Run `prjct pause` | <2s |
|
|
31
|
+
| `p. resume` | Run `prjct resume` | <2s |
|
|
32
|
+
|
|
33
|
+
**For these commands:**
|
|
34
|
+
```
|
|
35
|
+
1. Read template
|
|
36
|
+
2. Run the CLI command shown
|
|
37
|
+
3. Done
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
**⛔ DO NOT:** explore codebase, create plans, ask questions, read project files
|
|
41
|
+
|
|
42
|
+
### 🧠 SMART COMMANDS (Require intelligence)
|
|
43
|
+
|
|
44
|
+
| Command | Why it needs intelligence |
|
|
45
|
+
|---------|--------------------------|
|
|
46
|
+
| `p. task` | Must explore codebase, break down work |
|
|
47
|
+
| `p. ship` | Must validate changes, create PR |
|
|
48
|
+
| `p. bug` | Must classify severity, find affected files |
|
|
49
|
+
| `p. done` | Must verify completion, update state |
|
|
50
|
+
|
|
51
|
+
**For these commands:** Follow the full INTELLIGENT BEHAVIOR rules below.
|
|
52
|
+
|
|
53
|
+
### Decision Rule
|
|
54
|
+
```
|
|
55
|
+
IF template just says "run CLI command":
|
|
56
|
+
→ Execute immediately, no planning
|
|
57
|
+
ELSE:
|
|
58
|
+
→ Use intelligent behavior (explore, ask, plan)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
19
63
|
## ⛔ CRITICAL RULES - READ BEFORE EVERY COMMAND
|
|
20
64
|
|
|
21
65
|
### 0. FOLLOW TEMPLATES STEP BY STEP (NON-NEGOTIABLE)
|
|
@@ -264,13 +308,15 @@ User Action → Storage (JSON) → Context (MD) → Sync Events
|
|
|
264
308
|
4. Update CHANGELOG
|
|
265
309
|
5. Create git tag
|
|
266
310
|
|
|
267
|
-
### Key Intelligence Rules
|
|
311
|
+
### Key Intelligence Rules (For 🧠 SMART commands only)
|
|
268
312
|
- **Read before write** - Always read existing files before modifying
|
|
269
313
|
- **Explore before coding** - Use Task(Explore) to understand codebase
|
|
270
314
|
- **Ask when uncertain** - Use AskUserQuestion to clarify
|
|
271
|
-
- **Adapt templates** - Templates are guidance, not rigid scripts
|
|
272
315
|
- **Log everything** - Append to memory/events.jsonl
|
|
273
316
|
|
|
317
|
+
**⚠️ These rules apply ONLY to 🧠 SMART commands (task, ship, bug, done).**
|
|
318
|
+
**⚡ FAST commands skip all of this - just run the CLI.**
|
|
319
|
+
|
|
274
320
|
---
|
|
275
321
|
|
|
276
322
|
## OUTPUT FORMAT
|