Install
openclaw skills install project-coordinatorSpawns an isolated Project Coordinator session that owns a project's context, breaks work into tasks, and spawns subagents for parallel execution.
openclaw skills install project-coordinatoropenclaw skills install project-coordinator
# or
clawhub install project-coordinator
# Clone the repo
git clone https://github.com/KaigeGao1110/Project-Coordinator.git ~/.openclaw/skills/project-coordinator
# Or download directly
curl -L https://github.com/KaigeGao1110/Project-Coordinator/archive/refs/heads/main.zip -o /tmp/project-coordinator.zip
unzip /tmp/project-coordinator.zip -d ~/.openclaw/skills/
mv ~/.openclaw/skills/Project-Coordinator-main ~/.openclaw/skills/project-coordinator
A skill for structuring multi-agent project execution with isolated session architecture.
name: project-coordinator
version: 1.0.11
description: |
Spawns an isolated Project Coordinator session that owns a project's context,
breaks work into tasks, and spawns subagents for parallel execution.
The Coordinator reports back to the main session when done.
permissions:
- spawn: subagent sessions (via sessions_spawn)
- read: workspace files
- exec: shell commands via subagents
dataPolicy:
archivedData: internal workspace only
neverExternal: true
Main Session (never runs code directly)
└── Project Coordinator (spawned per project, mode="run")
└── Subagents (spawned by Coordinator, run tasks in parallel)
Token efficiency: Each project Coordinator is isolated. Old project sessions accumulate zero main-session tokens after completion.
Least-privilege design: The Coordinator does NOT read session transcript files directly. All transcript reading, sanitization, and archiving is delegated to a dedicated archive-subagent using the archive-project skill.
Activated when:
Do NOT activate for: quick questions, simple lookups, one-liner tasks.
Type //start followed by your project description to activate the Project Coordinator.
Example: "//start build a Chrome extension"
Collect from the user:
sessions_spawn(
task=f"""You are the Project Coordinator for {project_name}.
Project: {project_description}
Your job:
1. Understand the full scope of this project
2. Break it into independent tasks
3. Spawn subagents to execute tasks in parallel
4. Monitor subagent progress
5. Compile results and report back to main session
When done, write a summary and await further instructions.
""",
label=f"coordinator-{project_name}",
runtime="subagent",
model="minimax-m2.7-highspeed",
mode="run"
)
subagents(action="list") to track subagent statusWhen all subagents complete:
When a project is complete and archiving is requested:
The Coordinator itself does NOT read session transcript files directly.
Note: The Coordinator should NOT directly read, copy, move, or delete session transcript files. All such operations must be performed by a dedicated archive-subagent using the archive-project skill.
Subagent sandboxing: When spawning subagents, each subagent runs in an isolated sandbox with workspace-only filesystem access. Subagents cannot access credentials, environment variables, or session transcripts outside their scope. Network access is restricted per platform policy.
The Coordinator SHOULD directly call tools:
exec — run commands, check fileswrite — create output filesread — examine code or documentssessions_spawn — spawn subagents for parallel worksubagents — monitor subagent statusFormat: {project}-{role}
Examples:
cureforge-gke-migrationcureforge-rabbitmq-queuecureforge-review