AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Coordinator Mode

skill-sefaertunc-worclaude-coordinator-mode · by sefaertunc

Multi-agent orchestration patterns: when to use coordinator mode, worker prompts, parallel execution

— No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-sefaertunc-worclaude-coordinator-mode

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sefaertunc-worclaude-coordinator-mode)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Coordinator Mode? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Coordinator Mode

When to Use Multi-Agent Coordination

Use coordinator patterns when:

  • A task has independent research + implementation phases
  • Multiple file areas can be worked on in parallel
  • Verification should run alongside implementation
  • You need to synthesize findings before directing follow-up work

Don't use coordinator patterns when:

  • The task is small enough for one session
  • Steps are strictly sequential with no parallelism
  • The overhead of coordination exceeds the work itself

Phase-Based Workflow

Most coordinated tasks follow four phases:

| Phase | Who | Purpose | |-------|-----|---------| | Research | Workers (parallel) | Investigate codebase, find files, understand problem | | Synthesis | You (coordinator) | Read findings, understand the problem, craft implementation specs | | Implementation | Workers | Make targeted changes per spec, commit | | Verification | Workers | Test changes work, try to break them |

The synthesis phase is the coordinator's most important job. When workers report research findings, you must understand them before directing follow-up work. Read the findings. Identify the approach. Then write a prompt that proves you understood by including specific file paths, line numbers, and exactly what to change.

Never write "based on your findings" or "based on the research." These phrases delegate understanding to the worker instead of doing it yourself.

Worker Prompt Best Practices

Workers cannot see your conversation. Every prompt must be self-contained:

Good — synthesized spec: "Fix the null pointer in src/auth/validate.ts:42. The user field is undefined when sessions expire but the token is still cached. Add a null check before user.id access. Commit and report the hash."

Bad — lazy delegation: "Based on your findings, fix the auth bug." "The worker found an issue. Please fix it."

Purpose Statement

Include a brief purpose so workers calibrate depth:

  • "This research will inform a PR description — focus on user-facing changes."
  • "I need this to plan an implementation — report file paths, line numbers, and type signatures."
  • "This is a quick check before we merge — just verify the happy path."

Continue vs Spawn Decision

| Situation | Action | Why | | ----------------------------------------------------- | ------------------------ | ---------------------------------- | | Research explored exactly the files that need editing | Continue existing worker | Worker has files in context | | Research was broad, implementation is narrow | Spawn fresh worker | Avoid context noise | | Correcting a failure | Continue existing worker | Worker has error context | | Verifying code a different worker wrote | Spawn fresh worker | Fresh eyes, no implementation bias | | Wrong approach entirely | Spawn fresh worker | Clean slate avoids anchoring |

Parallel Execution

Parallelism is the primary advantage. Launch independent workers concurrently:

  • Read-only tasks (research) — run in parallel freely
  • Write-heavy tasks (implementation) — one at a time per set of files
  • Verification can sometimes run alongside implementation on different file areas

Scratchpad Pattern

For durable cross-worker knowledge, use a shared scratchpad file:

  • Workers write findings to a known location
  • Other workers read from it when they need context
  • Structure files by topic, not by worker

Multi-Terminal Workflow

When running multiple Claude Code terminals (Boris Mode):

  • Each terminal works on a separate feature branch or file area
  • Use /sync on develop after merging to reconcile shared-state files
  • Use /conflict-resolver if merges produce conflicts
  • Shared-state files (PROGRESS.md, SPEC.md, package.json version) are ONLY modified on develop

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.