shunsukehayashi/miyabi-claude-plugins
Miyabi Plugins for Claude Code - 25+ Agents, 22 Skills, 50+ Commands
npx skills add shunsukehayashi/miyabi-claude-pluginsREADME
Miyabi Plugins for Claude Code
Complete autonomous AI development operations platform - Transform Claude Code into a powerful development assistant with 25+ AI agents, 22 skills, and 50+ commands.
Table of Contents
- Prerequisites
- Installation Guide
- Verify Installation
- First Steps
- Available Plugins
- Core Features
- Configuration
- Troubleshooting
- Support
Prerequisites
Before installing Miyabi plugins, ensure you have:
Required
| Requirement | Version | Check Command |
|---|---|---|
| Claude Code CLI | Latest | claude --version |
| Node.js | 18.0+ | node --version |
| npm | 9.0+ | npm --version |
Optional (for full features)
| Requirement | Purpose | Setup |
|---|---|---|
| GitHub Token | GitHub integration (issues, PRs) | Create token |
| tmux | Multi-agent orchestration | brew install tmux (macOS) |
Install Claude Code CLI
If you don't have Claude Code CLI installed:
# Install via npm
npm install -g @anthropic-ai/claude-code
# Verify installation
claude --version
Installation Guide
Step 1: Add Marketplace
Open Claude Code and run the following command:
/plugin marketplace add ShunsukeHayashi/miyabi-claude-plugins
Expected output:
✓ Marketplace 'miyabi-plugins' added successfully
Source: https://github.com/ShunsukeHayashi/miyabi-claude-plugins
Plugins available: 8
Step 2: Install Plugin
Choose ONE of the following options:
Option A: Full Package (Recommended)
/plugin install miyabi-full@miyabi-plugins
This includes everything: 38 agents, 56 commands, 25 skills, hooks, and MCP integration.
Option B: Individual Packages
Install only what you need:
# Coding automation
/plugin install miyabi-coding-agents@miyabi-plugins
# Business automation
/plugin install miyabi-business-agents@miyabi-plugins
# Commands only
/plugin install miyabi-commands@miyabi-plugins
# Skills only
/plugin install miyabi-skills@miyabi-plugins
Step 3: Restart Claude Code
After installation, restart Claude Code to load the plugins:
# Exit current session
/exit
# Start new session
claude
Verify Installation
Check Installed Plugins
/plugin list
Expected output:
Installed plugins:
✓ miyabi-full (v2.1.0) - Miyabi 完全パッケージ
Source: miyabi-plugins
Agents: 38 | Commands: 56 | Skills: 25
Test MCP Connection
/miyabi-full:health-check
Expected output:
✓ MCP Server: miyabi-mcp-bundle connected
✓ Tools available: 172
✓ All systems operational
Test a Command
/miyabi-full:dashboard
This should display your project dashboard.
First Steps
Tutorial 1: Your First Agent
Ask Claude to use the CodeGen agent:
Use the CodeGen agent to create a simple React component for a user profile card.
Tutorial 2: Run a Command
Create an issue on GitHub:
/miyabi-full:issue-create --title "Test issue" --body "Testing Miyabi integration"
Tutorial 3: Use a Skill
Trigger the git-workflow skill:
Help me with git workflow - I need to create a feature branch and commit my changes.
Tutorial 4: Agent Orchestration (Advanced)
For multi-agent workflows:
Use the Coordinator agent to:
1. Analyze the current codebase
2. Generate code improvements with CodeGen
3. Review the changes with ReviewAgent
4. Create a PR with PRAgent
Available Plugins
| Plugin | Description | Contents |
|---|---|---|
| miyabi-full | Complete package (recommended) | All agents, skills, commands, hooks |
| miyabi-coding-agents | Development automation | 9 coding agents |
| miyabi-business-agents | Business automation | 16 business agents |
| miyabi-commands | Slash commands | 50+ commands |
| miyabi-skills | Development skills | 22 skills |
| miyabi-hooks | Automation hooks | Pre/Post tool hooks |
| miyabi-guardian | Incident response | Guardian agent |
| miyabi-honoka | Course creation | Udemy specialist |
Core Features
Coding Agents (9)
| Agent | Purpose | Trigger |
|---|---|---|
| CoordinatorAgent | Task orchestration & delegation | "coordinate", "orchestrate" |
| CodeGenAgent | Code generation | "generate code", "implement" |
| ReviewAgent | Code review & quality | "review", "check code" |
| PRAgent | Pull request management | "create PR", "merge" |
| DeploymentAgent | Deployment automation | "deploy", "release" |
| IssueAgent | GitHub issue management | "create issue", "track" |
| RefresherAgent | Context refresh | "refresh context" |
| BatchIssueAgent | Batch operatio |
...