Claude Skill
CloudAI-X/claude-workflow-v2
通过这款Python插件增强您的Claude Code工作流,它包含代理、Claude Skill技能系统、钩子和命令。在Cursor及类似环境中简化AI辅助开发流程。
概览
仓库信息
安装这个 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
项目简介
Claude Workflow V2 是一个通用的 Claude Code Python 插件,旨在增强AI辅助开发工作流。它集成了代理、技能、钩子和命令,以简化在 Cursor 等兼容环境中的编码任务。
Universal Claude Code workflow plugin with agents, skills, hooks, and commands
要点
- 通用的 Claude Code 工作流插件
- 基于代理的自动化任务架构
- 可扩展的技能系统(Claude Skill)
- 用于工作流拦截的自定义钩子
- 用于直接交互的命令系统
- 基于 Python 实现
使用场景
- AI辅助代码生成与审查
- 自动化重复性开发任务
- 使用自定义技能扩展IDE功能
- 创建个性化的编码工作流
- 将AI代理集成到开发环境中
- 为 Cursor 及类似工具构建插件
README 摘要
# 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 ```