npx claudepluginhub kenkaiii/minimal-claudeAuto-configure code quality tools and generate custom /fix command for parallel agent-based fixing
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
A minimal base setup for creating Claude Code plugins with an intelligent /setup command that automatically configures project linting and typechecking.
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
└── hooks.json
/setup-code-qualityThe /setup-code-quality command intelligently detects your project type and configures automated code quality checks:
/fix Command: Creates a custom /fix command tailored to your project that:
/setup-code-quality
After running setup, use the generated command:
/fix
This will automatically fix all linting and type errors in your project using parallel agents!
/setup-claude-mdThe /setup-claude-md command creates a minimal, non-bloated CLAUDE.md file with zero-tolerance code quality guidelines:
/setup-claude-md
This creates a CLAUDE.md file that tells Claude to automatically run your linting and typechecking commands after every edit, fixing all issues immediately.
Example generated CLAUDE.md (for a TypeScript project):
# Code Quality Guidelines
**Zero-tolerance policy**: All code must pass linting and type checking.
## After Every Edit
After writing, editing, or updating ANY file, you MUST:
1. Run these commands:
```bash
npm run lint
npm run typecheck
**Minimal, actionable, effective.**
## Featured Command: `/setup-commits`
The `/setup-commits` command creates a `/commit` command that enforces quality checks before committing:
1. **Detects Project Type**: Identifies your project's linting/typechecking tools
2. **Runs Quality Checks**: Executes all checks before allowing commits
3. **Generates Smart Commit Messages**: AI-powered, human-readable commit messages
4. **Auto-push**: Automatically pushes to remote after committing
### Usage
```bash
/setup-commits
This creates a /commit command that:
npm run lint and npm run typecheck (or your project's equivalent)Example workflow:
# Make changes to your code
# Then run:
/commit
# Claude will:
# ✓ Run all quality checks
# ✓ Generate commit message
# ✓ Commit changes
# ✓ Push to remote
/commands)Custom slash commands that users can invoke. Each command is a Markdown file with frontmatter:
---
description: Command description
---
Your command prompt here.
/agents)Specialized subagents that Claude can invoke for specific tasks. Define agents in Markdown files with frontmatter.
/skills)Agent Skills that Claude can invoke autonomously based on context. Skills are defined in SKILL.md files.
/hooks)Event handlers that respond to Claude Code actions. Configure in hooks.json:
PostToolUse - After any tool is usedUserPromptSubmit - When user submits a promptSessionStart - When a session startsOnce you've pushed this to GitHub, users can install it directly:
# Add the marketplace
/plugin marketplace add your-username/minimal-claude
# Install the plugin
/plugin install minimal-claude@your-username