npx claudepluginhub levifig/loaf --plugin loafWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Coordinates multi-agent work: agent delegation, session management, Linear integration, and council workflows.
This skill is limited to using the following tools:
references/background-agents.mdreferences/context-management.mdreferences/councils.mdreferences/cross-session.mdreferences/delegation.mdreferences/linear.mdreferences/local-tasks.mdreferences/parallel-agents.mdreferences/planning.mdreferences/product-development.mdreferences/session-resume.mdreferences/sessions.mdreferences/specs.mdreferences/subagent-development.mdscripts/check-linear-format.pyscripts/extract-decisions.pyscripts/extract-magic-words.shscripts/format-progress.shscripts/get-config.pyscripts/git-context-summary.shPM Orchestration
Comprehensive patterns for PM-style orchestration: coordinating multi-agent work, managing sessions, running councils, delegating to specialized agents, and integrating with Linear.
Contents
- Philosophy
- Quick Reference
- Topics
- Configuration
- Artifact Locations
- Available Scripts
- Three-Phase Workflow
- Critical Rules
Philosophy
PM is the orchestrator, not the implementer.
The PM agent:
- Creates issues and session files for tracking
- Breaks down work into delegable tasks
- Spawns specialized agents for implementation
- Coordinates outcomes and updates external systems
- Never implements code, tests, or documentation directly
Every release should be complete, polished, and delightful.
Quick Reference
| Task | Action |
|---|---|
| Multi-step work | Create session file, spawn agents |
| Complex decision | Convene council (5-7 agents, odd) |
| Linear update | Checkboxes, no emoji, no local paths |
| Feature planning | Define appetite, shape before building |
| Agent selection | Match domain expertise to task |
| Stuck on task | Check circuit breaker, consider reshaping |
| Pre-compaction | Spawn context-archiver to preserve state |
| Low-priority work | Spawn background-runner with run_in_background |
| New feature workflow | Research -> Architecture -> Shape -> Breakdown -> Implement |
Topics
| Topic | Reference | Use When |
|---|---|---|
| Product Development | references/product-development.md | Following Research -> Vision -> Architecture -> Specs workflow |
| Specifications | references/specs.md | Creating specs, shaping work, defining test conditions |
| Local Tasks | references/local-tasks.md | Managing tasks locally or with Linear backend |
| Agent Delegation | references/delegation.md | Choosing agents, spawning subagents, decision trees |
| Parallel Agents | references/parallel-agents.md | Dispatching independent work concurrently |
| Subagent Development | references/subagent-development.md | Delegating to specialized agents |
| Background Agents | references/background-agents.md | Running non-interactive work in background |
| Council Workflow | references/councils.md | Convening councils for complex decisions |
| Session Management | references/sessions.md | Creating sessions, handoffs, validation |
| Session Resume | references/session-resume.md | Resuming sessions, checkpoints, context recovery |
| Context Management | references/context-management.md | Using /clear, /compact, managing context limits |
| Linear Integration | references/linear.md | Updating Linear issues, magic words, status conventions |
| Product Planning | references/planning.md | Shape Up methodology, setting appetite, roadmaps |
Configuration
This skill uses paths from .agents/config.json:
{
"sessions": {
"directory": ".agents/sessions",
"councils_directory": ".agents/councils"
},
"linear": {
"workspace": "your-workspace-slug",
"project": { "id": "...", "name": "..." },
"default_team": "Platform"
}
}
Artifact Locations
| Artifact | Location | Archive | Naming |
|---|---|---|---|
| Sessions | .agents/sessions/ | .agents/sessions/archive/ | YYYYMMDD-HHMMSS-description.md |
| Councils | .agents/councils/ | .agents/councils/archive/ | YYYYMMDD-HHMMSS-topic.md |
| Transcripts | .agents/transcripts/ | N/A | Copied from tool output |
| Reports | .agents/reports/ | N/A | YYYYMMDD-HHMMSS-subject.md |
| Tasks | .agents/tasks/ | N/A | Per task manager conventions |
Rule: Agents write artifacts to disk, PM reasons over artifacts, users retrieve from disk.
Available Scripts
| Script | Usage | Description |
|---|---|---|
new-session.sh | new-session.sh <description> [linear-issue] | Generate session file |
new-council.sh | new-council.sh <topic> <session> <agents...> | Generate council file |
validate-session.py | validate-session.py <file> | Validate session format |
validate-council.py | validate-council.py <file> | Validate council format |
validate-roadmap.py | validate-roadmap.py <file> | Validate roadmap format |
get-config.py | get-config.py [key.path] | Read config values |
suggest-team.py | suggest-team.py "task desc" | Suggest Linear team |
check-linear-format.py | check-linear-format.py <file> | Validate Linear text |
format-progress.sh | format-progress.sh "Done" -- "Todo" | Format progress update |
extract-magic-words.sh | extract-magic-words.sh HEAD~10..HEAD | Extract Linear refs |
Three-Phase Workflow
BEFORE (Planning)
- Create/check external issue (Linear, GitHub)
- Create session file following session template
- Break down into tasks, identify agents, get user approval
DURING (Execution)
- Spawn specialized agents (never implement directly)
- Track progress in session file and external issue
- Convene councils for uncertain decisions
AFTER (Completion)
- Code review + QA testing
- Update external issue to Done
- Ensure knowledge captured in permanent locations
- Archive session (status +
archived_at+archived_by+ move + update links)
Critical Rules
Sessions
- Create following session template
- Required sections: Context, Current State, Next Steps
- Archive when complete (status +
archived_at+archived_by+ move) - PreCompact hook: spawn context-archiver for Resumption Prompt
- Post-compaction: copy transcript to
.agents/transcripts/, add to session'stranscripts:array
Councils
- Always odd number: 5 or 7 agents
- Councils advise, users decide
- PM coordinates but doesn't vote
- Spawn all agents in parallel
Linear
- Checkboxes only (
- [x]), no emoji - Outcome-focused, self-contained, no local file references
- Magic words in commit body, not subject
Planning (Shape Up)
- Appetite over estimates (decide time, flex scope)
- Shape before building (boundaries, not tasks)
- Circuit breakers at 50% to reassess
- No backlogs -- bet or let go
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.