Claude Skill
CloudAI-X/claude-workflow-v2
Enhance your Claude Code workflow with this Python plugin featuring agents, Claude Skill system, hooks, and commands. Streamline AI-assisted development in Cursor and similar environments.
Overview
Repository
Install this Skill
npx skills add CloudAI-X/claude-workflow-v2Registry
npx skills add CloudAI-X/claude-workflow-v2npx install-claude-workflow-v2@latestgit clone https://github.com/CloudAI-X/claude-workflow-v2.git
Summary
Claude Workflow V2 is a universal Python plugin for Claude Code, designed to enhance AI-assisted development workflows. It integrates agents, skills, hooks, and commands to streamline coding tasks within compatible environments like Cursor.
通用Claude代码工作流插件,包含代理、技能、钩子和命令功能
Key features
- Universal Claude Code workflow plugin
- Agent-based architecture for task automation
- Extensible skills system (Claude Skill)
- Custom hooks for workflow interception
- Command system for direct interactions
- Python-based implementation
Use cases
- AI-assisted code generation and review
- Automating repetitive development tasks
- Extending IDE capabilities with custom skills
- Creating personalized coding workflows
- Integrating AI agents into development environments
- Building plugins for Cursor and similar tools
README excerpt
# project-starter [](https://opensource.org/licenses/MIT) [](https://code.claude.com) [](https://github.com/CloudAI-X/claude-workflow-v2/pulls) A universal Claude Code workflow plugin with specialized agents, skills, hooks, and output styles for any software project. Compatible with [skills.sh](https://skills.sh) — works with Claude Code, Cursor, Codex, and 35+ AI agents. --- ## Quick Start ### Option 1: skills.sh (Recommended — Any Agent) ```bash npx skills add CloudAI-X/claude-workflow-v2 ``` Installs skills to Claude Code, Cursor, Codex, Windsurf, Cline, and 35+ other AI agents automatically. ### Option 2: npx (Claude Code — Full Plugin) ```bash npx install-claude-workflow-v2@latest ``` Installs the complete plugin: agents, commands, skills, and hooks. ### Option 3: CLI (Per-Session) ```bash # 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 ``` ### Option 4: Agent SDK ```typescript 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 } ``` ### Option 5: Install Permanently ```bash # Install from marketplace (when available) claude plugin install project-starter # Or install from local directory claude plugin install ./claude-workflow-v2 ``` ### Verify Installation After loading the plugin, verify it's working: ``` > /plugin ```