codingbuddy-rules 2.3.2 → 2.3.3

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.
@@ -19,23 +19,25 @@ Create `.antigravity/rules/instructions.md` to reference common rules:
19
19
 
20
20
  This project follows shared AI coding rules from `.ai-rules/` for consistency across all AI assistants (Cursor, Claude Code, Antigravity, etc.).
21
21
 
22
- ### 📚 Core Workflow (PLAN/ACT/EVAL)
22
+ ### 📚 Core Workflow (PLAN/ACT/EVAL/AUTO)
23
23
 
24
24
  **Source**: `.ai-rules/rules/core.md`
25
25
 
26
26
  #### Work Modes
27
27
 
28
- You have three modes of operation:
28
+ You have four modes of operation:
29
29
 
30
30
  1. **PLAN mode** - Define a plan without making changes
31
- 2. **ACT mode** - Execute the plan and make changes
31
+ 2. **ACT mode** - Execute the plan and make changes
32
32
  3. **EVAL mode** - Analyze results and propose improvements
33
+ 4. **AUTO mode** - Autonomous PLAN → ACT → EVAL cycle until quality achieved
33
34
 
34
35
  **Mode Flow**:
35
36
  - Start in PLAN mode by default
36
37
  - Move to ACT when user types `ACT`
37
38
  - Return to PLAN after ACT completes (automatic)
38
39
  - Move to EVAL only when user explicitly types `EVAL`
40
+ - Move to AUTO when user types `AUTO` (autonomous cycle)
39
41
 
40
42
  **Mode Indicators**:
41
43
  - Print `# Mode: PLAN` in plan mode
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codingbuddy-rules",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "AI coding rules for consistent practices across AI assistants",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",