Universal Claude Code workflow plugin with agents, skills, hooks, and commands
# project-starter
[](https://opensource.org/licenses/MIT)
[](https://code.cursor.com)
[](https://github.com/CloudAI-X/cursor-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/cursor-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-cursor-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/cursor-workflow-v2.git
# Run Claude Code with the plugin
cursor --plugin-dir ./cursor-workflow-v2
```
### Option 4: Agent SDK
```typescript
import { query } from "@anthropic-ai/cursor-agent-sdk";
for await (const message of query({
prompt: "Hello",
options: {
plugins: [{ type: "local", path: "./cursor-workflow-v2" }],
},
})) {
// Plugin commands, agents, and skills are now available
}
```
### Option 5: Install Permanently
```bash
# Install from marketplace (when available)
cursor plugin install project-starter
# Or install from local directory
cursor plugin install ./cursor-workflow-v2
```
### Verify Installation
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-fiAgent that generates comprehensive documentation, API references, architecture diagrams, and developer onboarding guides from existing code.
Agent configuration for systematic bug investigation that traces issues from error logs through the codebase to root cause with suggested fixes.
Agent for integrating third-party APIs including SDK setup, type generation, error handling, retry logic, and rate limit management.
Cursor's built-in autonomous coding agent that can make multi-file edits, run terminal commands, search the codebase, and iteratively build features with minimal human intervention.
Cloud-based autonomous coding agent that runs in the background on remote sandboxed environments, handling complex multi-step tasks while you continue working.
Cursor's multi-file editing agent within Composer mode that can create, edit, and delete files across your entire project in a single conversation.