skills/brownbull/main-orchestrator/SKILL.md
Decomposes requirements into executable tasks and coordinates domain orchestrators (frontend, backend, data, test, devops). Use when receiving PRDs, user requirements, or feature requests that span multiple domains. Acts as CEO of the AI development system.
npx skillsauth add aiskillstore/marketplace main-orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
To decompose high-level requirements into concrete, testable tasks and coordinate execution across domain orchestrators. Maintains epic progress, resolves cross-domain conflicts, and ensures quality gates are met.
Use this skill when:
Parse incoming requirements to identify:
Generate an epic with decomposed tasks:
epic:
id: "epic-{feature-name}"
priority: "critical|high|medium|low"
contexts: ["frontend", "backend", "data"]
tasks:
- task-001
- task-002
dependencies: {}
success_criteria: "measurable outcomes"
For each task, use this template:
task:
id: "task-{number}-{feature}"
epic: "parent-epic-id"
context: "frontend|backend|data|devops"
when: "Start conditions"
who: "domain-orchestrator-skill"
where: "Code locations"
what: "Feature description"
how: "standards/standard-name.md"
goal: "Success criteria"
check:
valid: "Happy path scenarios"
error: "Error handling tests"
invalid: "Input validation tests"
edge: "Boundary conditions"
functional: "Business logic tests"
visual: "UI tests (if applicable)"
performance: "Load/speed tests"
security: "Security validation"
close: "Final state to record"
Route tasks to appropriate orchestrators:
Track progress by:
operations.log for task completion eventsai-state/active/tasks.yaml with task statusai-state/knowledge/patterns.md - Proven architectural patternsai-state/knowledge/decisions.md - Past architecture decisionsoperations.log - Real-time event stream from all orchestratorsstandards/*.md - Quality standards to enforceai-state/active/tasks.yaml - Task registry (living document)operations.log - Orchestration events (append-only)ai-state/knowledge/decisions.md - Strategic architectural choices{
"event": "requirement.new",
"source": "user|product-manager",
"content": "requirement description"
}
{
"event": "task.created",
"orchestrator": "main",
"task_id": "task-001",
"assigned_to": "frontend-orchestrator",
"dependencies": ["task-002"],
"priority": "high"
}
Decompose into multiple tasks when:
Delegate directly when:
Problem: Frontend needs API that backend hasn't built yet
Resolution:
knowledge/decisions.mdProblem: Task A needs B, Task B needs A
Resolution:
Problem: Multiple critical tasks, limited skill availability
Resolution:
Monitor these metrics:
requirement: "Add OAuth2 login with Google and GitHub"
epic:
id: "epic-oauth2"
priority: "high"
contexts: ["frontend", "backend", "data"]
tasks:
- task-001-oauth-ui:
context: "frontend"
who: "frontend-orchestrator"
what: "Add Google and GitHub login buttons"
how: "standards/frontend-standard.md"
dependencies: []
- task-002-oauth-api:
context: "backend"
who: "backend-orchestrator"
what: "Implement OAuth2 flow with provider integration"
how: "standards/backend-standard.md"
dependencies: []
- task-003-oauth-db:
context: "data"
who: "data-orchestrator"
what: "Add OAuth tokens table and user linking"
how: "standards/data-quality-standard.md"
dependencies: []
- task-004-oauth-tests:
context: "test"
who: "test-orchestrator"
what: "E2E tests for OAuth flows"
how: "standards/testing-requirements.md"
dependencies: ["task-001", "task-002", "task-003"]
frontend-orchestrator:
backend-orchestrator:
data-orchestrator:
test-orchestrator:
devops-orchestrator:
Trigger documentation generation when:
Provide to human-docs:
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.