Claude Code plugins for structured development workflows.
| Plugin | Description |
|---|---|
| ac | Structured development partner — plans before coding, parallel execution with model routing, specialized agents, QA testing |
| github-cli | GitHub CLI skill — issues, PRs, releases, actions, gh api |
| git-master | Git expert — atomic commits, rebase, history archaeology |
| github-actions | GitHub Actions workflow generator — CI/CD, releases, Docker, security hardening |
| frontend-design | Frontend design — design systems, visual hierarchy, mobile patterns |
| dart-lsp | Dart/Flutter language server — definitions, references, diagnostics |
| json-lsp | JSON language server — schema validation, hover |
| yaml-lsp | YAML language server — schema validation, diagnostics |
| markdown-lsp | Markdown language server — link navigation, document symbols |
claude plugin add anilcancakir/claude-code-pluginclaude plugin update anilcancakir/claude-code-pluginAfter updating, sync your config:
/ac:setup-global-claude-md updateSetup auto-configures
~/.claude/settings.json— blocks CC native tools (WebSearch, WebFetch) and agents (Explore, Plan) in favor of ac's own agents. RequiresKODIZM_MCP_TOKENenv var for the bundled kodizm MCP — get your token at kodizm.com.
├── .claude-plugin/
│ └── marketplace.json # Plugin catalog
├── plugins/
│ ├── ac/ # Main plugin — 15 agents, 12 commands
│ ├── github-cli/ # GitHub CLI skill
│ ├── github-actions/ # GitHub Actions workflow generator
│ ├── git-master/ # Git expert skill
│ ├── frontend-design/ # Frontend design skill
│ ├── dart-lsp/ # Dart/Flutter LSP
│ ├── json-lsp/ # JSON LSP
│ ├── yaml-lsp/ # YAML LSP
│ └── markdown-lsp/ # Markdown LSP
└── README.md
plugins/your-plugin/
├── .claude-plugin/
│ └── plugin.json # name, description, author
├── commands/ # Optional: slash commands
├── agents/ # Optional: agent definitions
├── skills/ # Optional: skill definitions
└── README.md
Add entry in .claude-plugin/marketplace.json:
{
"name": "your-plugin",
"description": "What it does",
"source": "./plugins/your-plugin",
"category": "productivity"
}MIT