Agent Skills
› Chachamaru127/claude-code-harness
› cc-cursor-cc
cc-cursor-cc
GitHub用于双Agent工作流,将头脑风暴内容发送至Cursor PM进行可行性验证。提取目标与技术选型,生成验证请求并更新Plans.md,引导人工复制指令至Cursor执行,最后接收回传结果以推进实现。
Trigger Scenarios
Cursor PM交接
双Agent计划验证
头脑风暴评审
Install
npx skills add Chachamaru127/claude-code-harness --skill cc-cursor-cc -g -y
SKILL.md
Frontmatter
{
"name": "cc-cursor-cc",
"description": "Validate brainstorm with Cursor PM, update Plans.md, handoff back. Cursor↔CC 2-agent workflow. Triggers: Cursor PM handoff, 2-agent plan validation, brainstorm review. Skip for: implementation, single-agent.",
"allowed-tools": [
"Read",
"Write",
"Edit",
"Bash"
],
"description-en": "Validate brainstorm with Cursor PM, update Plans.md, handoff back. Cursor↔CC 2-agent workflow. Triggers: Cursor PM handoff, 2-agent plan validation, brainstorm review. Skip for: implementation, single-agent.",
"description-ja": "Cursor PM でアイデアを検証し Plans.md を更新してバトンタッチ。Cursor ↔ Claude Code 2-Agent ワークフロー対応。Use when user mentions Cursor PM handoff, 2-agent plan validation, CC-Cursor round trip, or brainstorm review. Do NOT load for: implementation work, single-agent tasks, or direct coding.",
"user-invocable": false,
"disable-model-invocation": true
}
CC-Cursor-CC Skill (Plan Validation Round Trip)
Supports the flow of sending brainstormed content from Claude Code to Cursor (PM) for feasibility validation.
Prerequisites
This skill assumes 2-agent operation.
| Role | Agent | Description |
|---|---|---|
| PM | Cursor | Validate plans, update Plans.md |
| Impl | Claude Code | Brainstorming, implementation |
Execution Flow
Step 1: Extract Brainstorming Context
Extract from recent conversation:
- Goal (feature/purpose)
- Technology choices
- Decisions made
- Undecided items
- Concerns
Step 2: Add Provisional Tasks to Plans.md
## 🟠 Under Validation: {{Project}} `pm:awaiting-validation`
### Provisional Tasks (To Validate)
- [ ] {{task1}} `awaiting-validation`
- [ ] {{task2}} `awaiting-validation`
### Undecided Items
- {{item1}} → **Requesting PM decision**
Step 3: Generate Validation Request for Cursor
Generate text to copy-paste to Cursor:
## 📋 Plan Validation Request
**Goal**: {{summary}}
**Provisional tasks**:
1. {{task1}}
2. {{task2}}
### ✅ Requesting Cursor (PM) to:
1. Validate feasibility
2. Break down tasks
3. Decide undecided items
4. Update Plans.md (awaiting → cc:TODO)
Step 4: Guide Next Action
- Copy & paste request to Cursor
- Run
/plan-with-ccin Cursor - Cursor updates Plans.md
- Cursor runs
/handoff-to-claude - Copy & paste back to Claude Code
Overall Flow
Claude Code (Brainstorm)
↓ /cc-cursor-cc
Cursor (PM validates & breaks down)
↓ /handoff-to-claude
Claude Code (/work implements)
Version History
- c220671 Current 2026-07-05 14:47


