Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Multi-Cursor orchestration for parallel task execution and AI council deliberation. Use when needing to run multiple Cursor agents in parallel, coordinate complex multi-step coding tasks, get diverse perspectives from different AI models (Opus/Sonnet/GPT) on technical decisions, or synthesize multi-agent discussions into actionable recommendations.
Multi-Cursor orchestration for parallel task execution and AI council deliberation. Use when needing to run multiple Cursor agents in parallel, coordinate complex multi-step coding tasks, get diverse perspectives from different AI models (Opus/Sonnet/GPT) on technical decisions, or synthesize multi-agent discussions into actionable recommendations.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Cursor CLI 需要真实 TTY,所以一切都通过 tmux 操作。 这个 skill 的本质:用 tmux 管理多个 Cursor 实例,让它们并行干活或者扮演大牛帮我分析问题。
which tmux && agent --version 需要 cursor-agent skill 已配置好、agent login 已完成。
场景:一个大任务可以拆成互不冲突的子任务,多个 Cursor 同时干。 核心原则: 每个 Cursor 负责不同的文件/模块,绝对不能有文件冲突 有依赖关系的任务必须等前置完成后再启动 最好每个 Cursor 在不同分支上工作 操作流程: # 1. 拆任务——先想清楚再动手 # 问自己:这些子任务之间有没有文件交叉?有没有先后依赖? # 2. 创建 tmux sessions PROJECT_DIR=~/Codes/my-project for name in frontend backend tests; do tmux kill-session -t cursor-$name 2>/dev/null || true tmux new-session -d -s cursor-$name tmux send-keys -t cursor-$name "cd $PROJECT_DIR" Enter done # 3. 派活 tmux send-keys -t cursor-frontend "agent -p '重构 src/components/ 下的表单组件,统一用 composables 模式' --force" Enter tmux send-keys -t cursor-backend "agent -p '给 src/api/ 下所有接口加上错误处理和重试逻辑' --force" Enter tmux send-keys -t cursor-tests "agent -p '补全 tests/ 下缺失的单元测试,覆盖率要到 80%' --force" Enter # 4. 巡查进度 for s in cursor-frontend cursor-backend cursor-tests; do echo "=== $s ===" tmux capture-pane -t $s -p | tail -10 done # 5. 全部完成后合并验证 任务拆分策略: 策略适用场景示例按模块Monorepo、前后端分离frontend / backend / shared按分支多个独立 featurefeat/auth / feat/dashboard按类型实现+测试+文档*.ts / *.test.ts / *.md 注意事项: 16GB 内存建议最多 3-4 个并行 Cursor 如果某个 session 5 分钟没输出,可能卡住了,tmux send-keys -t $session C-c 中断 看到 "waiting for approval" 就 tmux send-keys -t $session y 用 --force 要谨慎——确保在独立分支上、文件有 git 追踪 → 更多细节见 references/parallel-execution.md
根据问题领域选择合适的"前辈":
前辈哲学适合问Joe Armstrong (Erlang)Let it crash、进程隔离并发安全、容错设计Leslie Lamport (Paxos)形式化验证、分布式共识一致性、状态机Martin Kleppmann (DDIA)数据密集型应用、CRDT数据一致性、分区
前辈哲学适合问TJ Holowaychuk (Express)极简主义、一个函数搞定最佳实践、API 设计Ryan Dahl (Node/Deno)反思与重构、承认错误架构反思、根因分析Sindre Sorhus (1000+ npm)小而美、单一职责工具库设计、代码简化
前辈哲学适合问Martin Fowler渐进式改进、模式语言重构策略、设计模式Uncle Bob整洁代码、SOLID 原则代码质量、可维护性Linus Torvalds务实、性能优先、直言不讳代码审查、性能问题
前辈哲学适合问Rich Hickey (Clojure)简单≠容易、不可变性复杂性分析、状态管理Simon Peyton Jones (Haskell)类型系统、纯函数类型设计、抽象建模 → 完整人设库和 prompt 示例见 references/persona-engineering.md
常见场景的"前辈团"速配: 架构设计评审:Fowler(架构模式)+ DHH(约定优于配置)+ Torvalds(过度设计批评) 并发问题诊断:Armstrong(Let it crash)+ TJ(异步模式)+ Dahl(反思根因) 代码质量整治:Fowler(渐进重构)+ Uncle Bob(Clean Code)+ Hickey(复杂性根源) 技术选型决策:Lamport(理论分析)+ Sorhus(简单实用)+ Dahl(长期后悔点)
Round 1:各自给出立场 Round 2:互相批评对方的方案 Round 3:考虑批评后给出最终建议
Opus:提出方案 GPT:全力攻击方案,找弱点 Sonnet:防守和修补弱点
把所有人的观点展示给每个模型,问"考虑了这些视角后,你的新观点是什么?" 重复直到观点趋于稳定
会议记录必须持久化保存,不要放 /tmp(重启会清空)。 ~/.openclaw/workspace/pr-review/ └── council-YYYY-MM-DD[-topic]/ ├── README.md # 会议概览(用模板) ├── council-opus-prompt.txt # Opus 的 prompt ├── council-opus-output.txt # Opus 的完整输出 ├── council-sonnet-prompt.txt ├── council-sonnet-output.txt ├── council-gpt-prompt.txt └── council-gpt-output.txt 归档步骤: ARCHIVE=~/.openclaw/workspace/pr-review/council-$(date +%Y-%m-%d)-topic mkdir -p "$ARCHIVE" cp /tmp/council-*.txt "$ARCHIVE/" # 然后写 README.md(模板见 references/session-readme-template.md) → README 模板见 references/session-readme-template.md
--force 会自动执行所有变更,务必在独立分支上使用 并行任务之间不能有文件冲突,否则会互相覆盖 每个 session 完成后先 tmux capture-pane 保存输出再关闭 人设是激活知识用的,不是角色扮演秀——保持专业分析为主
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.