Pārlūkot izejas kodu

docs: Update counts and fix deprecated command references

- AGENTS.md: Update counts (21 agents, 10 commands, 18 skills)
- WORKFLOWS.md: Replace /saveplan, /loadplan, /showplan with /plan flags

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0xDarkMatter 5 mēneši atpakaļ
vecāks
revīzija
2435a05b9a
2 mainītis faili ar 8 papildinājumiem un 8 dzēšanām
  1. 3 3
      AGENTS.md
  2. 5 5
      docs/WORKFLOWS.md

+ 3 - 3
AGENTS.md

@@ -3,9 +3,9 @@
 ## Project Overview
 ## Project Overview
 
 
 This is **claude-mods** - a collection of custom extensions for Claude Code:
 This is **claude-mods** - a collection of custom extensions for Claude Code:
-- **24 expert agents** for specialized domains (React, Python, AWS, etc.)
-- **11 slash commands** for workflows (/sync, /plan, /review, etc.)
-- **11 skills** for CLI tool integration (git-workflow, code-stats, tool-discovery, etc.)
+- **21 expert agents** for specialized domains (React, Python, AWS, etc.)
+- **10 slash commands** for workflows (/sync, /plan, /review, /atomise, etc.)
+- **18 skills** for CLI tool integration (git-workflow, code-stats, tool-discovery, etc.)
 
 
 ## Installation
 ## Installation
 
 

+ 5 - 5
docs/WORKFLOWS.md

@@ -207,14 +207,14 @@ Using claude-mods commands for persistent state:
 Session 1:
 Session 1:
   /sync                              # Bootstrap context
   /sync                              # Bootstrap context
   [work on tasks]
   [work on tasks]
-  /saveplan "Stopped at auth module" # Save state
+  /plan --save "Stopped at auth"     # Save state
 
 
 Session 2:
 Session 2:
   /sync                              # Bootstrap context
   /sync                              # Bootstrap context
-  /loadplan                          # Restore tasks
-  /showplan                          # Check status
+  /plan --load                       # Restore tasks
+  /plan --status                     # Check progress
   [continue work]
   [continue work]
-  /saveplan "Completed auth"         # Save progress
+  /plan --save "Completed auth"      # Save progress
 ```
 ```
 
 
 ---
 ---
@@ -282,6 +282,6 @@ User: "Implement rate limiting"
 | **Debugging** | Reproduce, investigate, fix, test | Bug investigation |
 | **Debugging** | Reproduce, investigate, fix, test | Bug investigation |
 | **Refactoring** | Test, small changes, verify | Code improvement |
 | **Refactoring** | Test, small changes, verify | Code improvement |
 | **Multi-Agent** | Parallel instances | Large tasks |
 | **Multi-Agent** | Parallel instances | Large tasks |
-| **Session Continuity** | /sync, /saveplan, /loadplan | Multi-session work |
+| **Session Continuity** | /sync, /plan --save/--load | Multi-session work |
 | **Visual Iteration** | Mock → implement → screenshot → iterate | UI development |
 | **Visual Iteration** | Mock → implement → screenshot → iterate | UI development |
 | **Subagent Verification** | Complete → verify → fix | Critical code |
 | **Subagent Verification** | Complete → verify → fix | Critical code |