Bläddra i källkod

docs: Update README and AGENTS with accurate counts

- Fix command count: 10 → 11 (add archive)
- Fix agent count in description: 21 → 23 (Go, Rust)
- Add go-expert and rust-expert to agents table
- Add Rules section with all 4 rules
- Update AGENTS.md rules reference

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0xDarkMatter 5 månader sedan
förälder
incheckning
4f04b51778
2 ändrade filer med 18 tillägg och 7 borttagningar
  1. 2 2
      AGENTS.md
  2. 16 5
      README.md

+ 2 - 2
AGENTS.md

@@ -4,7 +4,7 @@
 
 This is **claude-mods** - a collection of custom extensions for Claude Code:
 - **23 expert agents** for specialized domains (React, Python, Go, Rust, AWS, etc.)
-- **10 slash commands** for workflows (/sync, /plan, /review, /atomise, etc.)
+- **11 slash commands** for workflows (/sync, /plan, /review, /atomise, etc.)
 - **30 skills** for CLI tool integration, patterns, and workflows
 - **Custom output styles** for response personality (e.g., Vesper)
 
@@ -29,7 +29,7 @@ cd claude-mods && ./scripts/install.sh  # or .\scripts\install.ps1 on Windows
 | `skills/` | Skill definitions with SKILL.md |
 | `output-styles/` | Response personalities (vesper.md) |
 | `hooks/` | Hook examples (pre/post execution) |
-| `rules/` | Claude Code rules (cli-tools.md, thinking.md) |
+| `rules/` | Claude Code rules (4 files: cli-tools, thinking, commit-style, naming-conventions) |
 | `tools/` | Modern CLI toolkit documentation |
 | `tests/` | Validation scripts + justfile |
 | `scripts/` | Install scripts |

+ 16 - 5
README.md

@@ -2,7 +2,7 @@
 
 A comprehensive extension toolkit for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that transforms your AI coding assistant into a powerhouse development environment.
 
-**23 expert agents. 10 slash commands. 30 skills. Custom output styles. One plugin install.**
+**23 expert agents. 11 slash commands. 30 skills. 4 rules. Custom output styles. One plugin install.**
 
 ## Why claude-mods?
 
@@ -10,7 +10,7 @@ Claude Code is powerful out of the box, but it has gaps. This toolkit fills them
 
 - **Session continuity** — TodoWrite tasks vanish when sessions end. We fix that with `/plan --save` and `/plan --load`, implementing Anthropic's [recommended pattern](https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents) for long-running agents.
 
-- **Expert-level knowledge on demand** — 21 specialized agents covering React, TypeScript, Python, AWS, PostgreSQL, and more. Each agent is deeply researched with real-world patterns, not generic advice.
+- **Expert-level knowledge on demand** — 23 specialized agents covering React, TypeScript, Python, Go, Rust, AWS, PostgreSQL, and more. Each agent is deeply researched with real-world patterns, not generic advice.
 
 - **Modern CLI tools** — Stop using `grep`, `find`, and `cat`. Our rules automatically prefer `ripgrep`, `fd`, `eza`, and `bat` — 10-100x faster and token-efficient.
 
@@ -34,7 +34,7 @@ Claude Code is powerful out of the box, but it has gaps. This toolkit fills them
 claude-mods/
 ├── .claude-plugin/     # Plugin metadata
 ├── agents/             # Expert subagents (23)
-├── commands/           # Slash commands (10)
+├── commands/           # Slash commands (11)
 ├── skills/             # Custom skills (30)
 ├── output-styles/      # Response personalities
 ├── hooks/              # Hook examples & docs
@@ -101,6 +101,7 @@ Then symlink or copy to your Claude directories:
 | [atomise](commands/atomise.md) | Atom of Thoughts reasoning - decompose problems into atomic units with confidence tracking and backtracking. |
 | [pulse](commands/pulse.md) | Generate Claude Code ecosystem news digest from blogs, repos, and community sources. |
 | [setperms](commands/setperms.md) | Set tool permissions and CLI preferences. |
+| [archive](commands/archive.md) | Archive completed plans and session state. |
 
 ### Skills
 
@@ -145,6 +146,7 @@ Then symlink or copy to your Claude directories:
 | [craftcms-expert](agents/craftcms-expert.md) | Craft CMS content modeling, Twig, plugins, GraphQL |
 | [cypress-expert](agents/cypress-expert.md) | Cypress E2E and component testing, custom commands, CI/CD |
 | [firecrawl-expert](agents/firecrawl-expert.md) | Web scraping, crawling, parallel fetching, structured extraction |
+| [go-expert](agents/go-expert.md) | Go idioms, concurrency, error handling, performance |
 | [javascript-expert](agents/javascript-expert.md) | Modern JavaScript, async patterns, optimization |
 | [laravel-expert](agents/laravel-expert.md) | Laravel framework, Eloquent, testing |
 | [payloadcms-expert](agents/payloadcms-expert.md) | Payload CMS architecture and configuration |
@@ -153,17 +155,26 @@ Then symlink or copy to your Claude directories:
 | [project-organizer](agents/project-organizer.md) | Reorganize directory structures, cleanup |
 | [python-expert](agents/python-expert.md) | Advanced Python, testing, optimization |
 | [react-expert](agents/react-expert.md) | React hooks, state management, Server Components, performance |
+| [rust-expert](agents/rust-expert.md) | Rust ownership, lifetimes, async, unsafe patterns |
 | [sql-expert](agents/sql-expert.md) | Complex SQL queries, optimization, indexing |
 | [typescript-expert](agents/typescript-expert.md) | TypeScript type system, generics, utility types, strict mode |
 | [vue-expert](agents/vue-expert.md) | Vue 3, Composition API, Pinia state management, performance |
 | [wrangler-expert](agents/wrangler-expert.md) | Cloudflare Workers deployment, wrangler.toml |
 
-### Tools, Rules & Hooks
+### Rules
+
+| Rule | Description |
+|------|-------------|
+| [cli-tools.md](rules/cli-tools.md) | Modern CLI tool preferences (fd, rg, eza, bat, etc.) |
+| [thinking.md](rules/thinking.md) | Extended thinking triggers (think → ultrathink) |
+| [commit-style.md](rules/commit-style.md) | Conventional commits format and examples |
+| [naming-conventions.md](rules/naming-conventions.md) | Component naming patterns for agents, skills, commands |
+
+### Tools & Hooks
 
 | Resource | Description |
 |----------|-------------|
 | [tools/](tools/) | Modern CLI toolkit - token-efficient replacements for legacy commands |
-| [rules/cli-tools.md](rules/cli-tools.md) | Tool preference rules (fd, rg, eza, bat, etc.) |
 | [hooks/](hooks/) | Hook examples for pre/post execution automation |
 
 ### Output Styles