소스 정보
- 저장소
- josstei/maestro-orchestrate
- 최근 소스 활동
- 2026년 4월 30일 05:42
- 감지된 SKILL.md 언어
- 영어
- 스타
- 459
- 포크
- 35
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/josstei/maestro-orchestrate --skill implementation-planning명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | implementation-planning |
| description | Generates detailed implementation plans from finalized designs |
Standard workflow only. If task_complexity is simple and workflow mode is Express, do not activate this skill. Simple tasks use the Express workflow, which does not activate implementation-planning. Return to the Express Workflow section.
Activate this skill during Phase 2 of Maestro orchestration, after the design document has been approved. This skill provides the methodology for generating detailed, actionable implementation plans that map directly to subagent assignments.
Do not generate an implementation plan from guesses about the repository.
Use the built-in codebase_investigator before phase decomposition when:
Ask the investigator for:
Skip the investigator only for greenfield tasks, documentation-only work, or plans where the current turn already established the relevant repo structure from direct reads.
Reuse investigator findings directly in the implementation plan:
Before generating the plan, thoroughly analyze the approved design document for:
task_complexity from the approved design document's frontmatter. Apply phase count guidance and domain analysis scaling accordingly. Record task_complexity in implementation plan frontmatter.Break the implementation into phases following these principles:
Layer 1: Foundation (types, interfaces, configuration)
|
Layer 2: Core Domain (business logic, data models)
|
Layer 3: Infrastructure (database, external services, API layer)
|
Layer 4: Integration (connecting components, middleware)
|
Layer 5: Quality (testing, security review, performance)
|
Layer 6: Documentation & Polish
Before finalizing agent assignments, verify each phase's agent can deliver its requirements:
| Phase Deliverable | Required Tier | Compatible Agents |
|---|---|---|
| Creates/modifies files | Full Access or Read+Write | analytics-engineer, cobol-engineer, coder, copywriter, data-engineer, design-system-engineer, devops-engineer, hlasm-assembler-specialist, i18n-specialist, ibm-i-specialist, integration-engineer, ml-engineer, mlops-engineer, mobile-engineer, observability-engineer, platform-engineer, product-manager, prompt-engineer, refactor, release-manager, technical-writer, tester, ux-designer |
| Runs shell commands | Full Access or Read+Shell | accessibility-specialist, analytics-engineer, cobol-engineer, coder, data-engineer, database-administrator, db2-dba, debugger, design-system-engineer, devops-engineer, hlasm-assembler-specialist, i18n-specialist, ibm-i-specialist, integration-engineer, ml-engineer, mlops-engineer, mobile-engineer, observability-engineer, performance-engineer, platform-engineer, refactor, security-engineer, seo-specialist, site-reliability-engineer, tester, zos-sysprog |
| Analysis/review only | Any tier | All agents |
Scale decomposition granularity to task_complexity (read from design document frontmatter):
Phases can run in parallel when:
Mark parallel-eligible phases with parallel: true and group them into execution batches.
Each phase in the plan must include:
A clear, measurable statement of what this phase delivers.
Which agent(s) execute this phase, with rationale for selection.
For each new file:
For each existing file:
Provide sufficient detail for the assigned agent to execute without ambiguity:
Specific commands to run and expected outcomes:
blocked_by: Phase IDs that must complete before this phase startsblocks: Phase IDs that cannot start until this phase completesList only direct blockers in blocked_by. Do not include transitive dependencies — they inflate dependency depth and prevent parallelism.
Anti-pattern (over-specified):
Result: depths 0, 1, 2, 3 — zero parallel phases.
Correct (minimized):
Result: depths 0, 1, 2 — Phases 2 and 3 run in parallel at depth 1.
Ask for each dependency: "Does this phase truly need the output of that specific phase, or is it transitively covered?"
If validate_plan is available, review its parallelization_profile and redundant_dependency warnings before presenting the plan. Revise blocked_by to eliminate redundancies when possible.
| Task Domain | Primary Agent | Secondary Agent | Rationale |
|---|---|---|---|
| System design, architecture | architect | - | Read-only analysis, design expertise |
| Cloud architecture, multi-region topology | cloud-architect | devops-engineer | Architecture first, implementation second |
| Enterprise integration architecture | solutions-architect | integration-engineer | Cross-team design before implementation |
| API contracts, endpoints | api-designer | coder | Design then implement |
| Feature implementation | coder | - | Full implementation access |
| Code quality review | code-reviewer | - | Read-only verification |
| Database schema, queries | data-engineer | - | Schema + implementation |
| RDBMS tuning, indexes, migration safety | database-administrator | data-engineer | DBA analysis before schema/code changes |
| DB2 administration | db2-dba | data-engineer | DB2-specific operations and design |
| Bug investigation | debugger | - | Read + shell for investigation |
| CI/CD, infrastructure | devops-engineer | - | Full DevOps access |
| Internal platforms, paved paths | platform-engineer | devops-engineer | Platform conventions and implementation |
| B2B integrations, ETL, message brokers | integration-engineer | - | Full integration implementation |
| SLOs, runbooks, reliability | site-reliability-engineer |
max_turns limitEstimate token consumption per phase based on:
Do not invent provider pricing or model tiers. Agent model selection is runtime-owned through agent frontmatter and runtime configuration. Estimate execution size in stable, codebase-derived terms instead:
Include a lightweight plan-level resource summary when useful:
| Phase | Agent | Est. Files Read | Est. Files Written | Retry Risk | Notes |
|---|---|---|---|---|---|
| 1 | [agent] | [N] | [N] | LOW/MEDIUM/HIGH | [why] |
The write path depends on whether your runtime provides a Plan Mode surface (check get_runtime_context, loaded at session start, step 0).
exit_plan_mode with the plan path to present the plan for user approval.Permanent location: <state_dir>/plans/YYYY-MM-DD-<topic-slug>-impl-plan.md (where <state_dir> resolves from MAESTRO_STATE_DIR, default docs/maestro).
If your runtime does not provide a Plan Mode transition, track planning progress using the plan-update mechanism from your runtime context, write directly to the final location, and use the user-prompt tool from runtime context for the approval gate.
Use the implementation-plan template loaded via get_skill_content.
Execution Profile:
- Total phases: [N]
- Parallelizable phases: [M] (in [B] batches)
- Sequential-only phases: [S]
- Estimated parallel wall time: [time estimate based on batch execution]
- Estimated sequential wall time: [time estimate based on serial execution]
Note: Native parallel execution currently runs agents in autonomous mode.
All tool calls are auto-approved without user confirmation.
The implementation plan is complete when:
Before presenting the plan for approval, check whether validate_plan appears in your available tools. If it does, call it with the plan structure and task_complexity to verify phase count constraints, file ownership, acyclic dependencies, and agent validity. If it does not, self-check against the phase count limits above.
After writing the implementation plan:
exit_plan_mode with the plan path to present the plan for user approval. If Plan Mode is not available, present the completed plan for user approval using the user-prompt tool from runtime context.<state_dir>/plans/YYYY-MM-DD-<slug>-impl-plan.md as the permanent project reference (copy from the staging directory if Plan Mode was used)observability-engineer |
| Reliability assessment plus telemetry implementation |
| Observability, metrics, traces | observability-engineer | - | Full telemetry implementation |
| Performance analysis | performance-engineer | - | Read + shell for profiling |
| Code restructuring | refactor | - | Write + shell access (for validation) |
| Security assessment | security-engineer | - | Read + shell for scanning |
| Test creation | tester | - | Full test implementation |
| Documentation | technical-writer | - | Write access for docs |
| Release notes, changelogs, rollout | release-manager | - | Write access for release artifacts |
| Technical SEO audit | seo-specialist | - | Read + shell + web search |
| Marketing copy, content | copywriter | - | Read/write |
| Content planning | content-strategist | - | Read + web search/fetch |
| UX design, user flows | ux-designer | - | Read/write + web search |
| WCAG compliance audit | accessibility-specialist | - | Read + shell + web search |
| Requirements, product | product-manager | - | Read/write + web search |
| Tracking, analytics | analytics-engineer | coder | Implement then instrument |
| Internationalization | i18n-specialist | coder | Implement then localize |
| Design tokens, theming | design-system-engineer | coder | Tokens then consume |
| Legal, regulatory | compliance-reviewer | - | Read + web search/fetch |
| Mobile platform work | mobile-engineer | tester | Mobile implementation plus validation |
| Model training, inference integration | ml-engineer | tester | ML implementation plus evaluation |
| Model registry, drift, model CI/CD | mlops-engineer | devops-engineer | Model operations and deployment |
| Prompt design, few-shot, RAG tuning | prompt-engineer | coder | Prompt spec before integration |
| Mainframe COBOL, JCL, CICS/IMS | cobol-engineer | tester | Mainframe implementation and validation |
| IBM HLASM for z/OS | hlasm-assembler-specialist | - | Assembly implementation |
| IBM i RPG/CL, DB2 for i | ibm-i-specialist | - | IBM i implementation |
| z/OS systems programming, JCL, RACF | zos-sysprog | security-engineer | System-level analysis and controls |
SOC 직업 분류 기준