Personal Claude Code configuration — rules, commands, and skills that travel with me across projects.
.claude/
├── CLAUDE.md # Index of all rules, commands, and skills
├── commands/ # Slash commands
│ ├── next-test.md # Write the next test for a class or controller
│ ├── heal-tests.md # Fix failing, broken, or flaky tests
│ ├── code-review.md # Run code review on current diff
│ ├── commit.md # Draft a conventional commit message for staged changes
│ ├── decompose.md # Break scope into epics, stories, tasks + estimates
│ └── estimate.md # Estimate a single described task
├── rules/ # Always-available conventions
│ ├── communication.md # How Claude communicates + my stack experience levels
│ ├── testing.md # Testing philosophy
│ ├── vue.md # Vue 3 Composition API conventions
│ ├── dotnet.md # .NET Core / C# conventions
│ └── no-overengineering.md # Simplest solution first
└── skills/ # Loaded on demand by commands
├── xunit-integration.md # xUnit integration test patterns
├── xunit-unit.md # xUnit unit test patterns
├── playwright-skill/ # testdino-hq/playwright-skill (full install)
├── estimation-decomposition/ # Skill multipliers, AI multipliers, epic/story/task structure
├── code-review-skill/ # Review checklist, severity labels, GitHub PR fetch
└── vitest-skill/ # Placeholder — fastmcp vitest skill
Drop this repo's .claude/ directory into any project, or symlink it to ~/.claude/ to apply globally.
Commands are available as slash commands in Claude Code (e.g. /next-test, /decompose).
| File | Status |
|---|---|
commands/next-test.md |
Done |
skills/xunit-integration.md |
Done |
skills/xunit-unit.md |
Done |
rules/communication.md |
Done |
commands/heal-tests.md |
Placeholder |
commands/code-review.md |
Done |
commands/commit.md |
Done |
commands/decompose.md |
Done |
commands/estimate.md |
Done |
rules/testing.md |
Placeholder |
rules/vue.md |
Placeholder |
rules/dotnet.md |
Placeholder |
rules/no-overengineering.md |
Placeholder |
skills/playwright-skill/ |
Done (testdino-hq/playwright-skill) |
skills/estimation-decomposition/ |
Done |
skills/code-review-skill/ |
Done |
skills/vitest-skill/ |
Pending external skill |