KenKaiii/minimal-claude
18 stars · Last commit 2026-03-12
Intelligent Claude Code plugin that auto-configures linting, typechecking, and parallel agent-based fixing
README preview
# Minimal Claude Code Plugin A minimal base setup for creating Claude Code plugins with an intelligent `/setup` command that automatically configures project linting and typechecking. ## Structure ``` minimal-claude/ ├── .claude-plugin/ │ └── plugin.json # Plugin manifest (required) ├── commands/ # Slash commands │ ├── setup-code-quality.md # Generate /fix command │ ├── setup-claude-md.md # Generate CLAUDE.md guidelines │ ├── setup-commits.md # Generate /commit command │ └── example.md ├── agents/ # Subagents │ └── example-agent.md ├── skills/ # Agent Skills │ └── SKILL.md └── hooks/ # Event hooks