by CloudAI-X
Universal Claude Code workflow plugin with agents, skills, hooks, and commands
# Add to your Claude Code skills
git clone https://github.com/CloudAI-X/claude-workflow-v2A universal Claude Code workflow plugin with specialized agents, skills, hooks, and output styles for any software project. Compatible with skills.sh — works with Claude Code, Cursor, Codex, and 35+ AI agents.
npx skills add CloudAI-X/claude-workflow-v2
Installs skills to Claude Code, Cursor, Codex, Windsurf, Cline, and 35+ other AI agents automatically.
npx install-claude-workflow-v2@latest
Installs the complete plugin: agents, commands, skills, and hooks.
# Clone the plugin
git clone https://github.com/CloudAI-X/claude-workflow-v2.git
# Run Claude Code with the plugin
claude --plugin-dir ./claude-workflow-v2
import { query } from "@anthropic-ai/claude-agent-sdk";
for await (const message of query({
prompt: "Hello",
options: {
plugins: [{ type: "local", path: "./claude-workflow-v2" }],
},
})) {
// Plugin commands, agents, and skills are now available
}
# Install from marketplace (when available)
claude plugin install project-starter
# Or install from local directory
claude plugin install ./claude-workflow-v2
No comments yet. Be the first to share your thoughts!
After loading the plugin, verify it's working:
> /plugin
Tab to Installed - you should see project-starter listed.
Tab to Errors - should be empty (no errors).
These commands become available:
/project-starter:architect # Architecture-first mode
/project-starter:rapid # Ship fast mode
/project-starter:commit # Auto-generate commit message
/project-starter:verify-changes # Multi-agent verification
| Component | Count | Description | | ------------ | ----- | ----------------------------------------------------------------------- | | Agents | 7 | Specialized subagents for code review, debugging, security, etc. | | Commands | 26 | Slash commands for workflows, output styles, planning, and onboarding | | Skills | 14 | Knowledge domains with on-demand context loading | | Hooks | 14 | Automation scripts for formatting, security, metrics, and notifications |
Auto-commit your changes:
> /project-starter:commit
Looking at staged changes...
✓ Created commit: feat(auth): add JWT refresh token endpoin...