prjct-cli 0.10.9 → 0.10.10

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,40 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.10] - 2025-11-28
4
+
5
+ ### Refactored - Agentic Architecture Optimization
6
+
7
+ Major refactoring to make prjct-cli truly agentic with 70% context reduction:
8
+
9
+ - **CLAUDE.md** - Reduced from 1,079 to 204 lines (81% reduction)
10
+ - Removed verbose examples and implementation pseudocode
11
+ - Kept only critical rules and command reference
12
+ - Cleaner, more focused instructions for Claude
13
+
14
+ - **Templates Expanded to Executable Specs**
15
+ - `done.md`: 24 → 138 lines with step-by-step instructions
16
+ - `ship.md`: 36 → 257 lines with full decision trees
17
+ - `feature.md`: 35 → 276 lines with value analysis flow
18
+ - `sync.md`: 72 → 263 lines with agent generation rules
19
+
20
+ - **patterns.md** - Simplified from 207 to 61 lines (70% reduction)
21
+ - Removed verbose SOLID explanations
22
+ - Focused on detection steps and output format
23
+
24
+ - **prompt-builder.js** - Conditional injection for efficiency
25
+ - Agents only injected for code-modifying commands
26
+ - Pattern summary extraction (800 bytes vs 6KB)
27
+ - File list compressed (5 files vs 20)
28
+
29
+ ### Impact
30
+ - Context per command: ~54KB → ~18KB (67% reduction)
31
+ - Templates now executable specifications with:
32
+ - Explicit paths and variables
33
+ - Decision trees with IF/ELSE
34
+ - Error handling at each step
35
+ - JSONL format specifications
36
+ - Concrete examples
37
+
3
38
  ## [0.10.9] - 2025-11-28
4
39
 
5
40
  ### Added