원클릭으로
create-plan
Create an implementation plan in _plans/ with embedded repo context and step-by-step task lists
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create an implementation plan in _plans/ with embedded repo context and step-by-step task lists
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute a plan from _plans/, implementing steps, checking off tasks, running tests, and documenting fixes
Clone/pull git repos, verify local folders, auto-register orphans, and regenerate repos.md
Clone a git repo or register a local folder into repos/ and update repos.md with its description
Find and remove stale entries from repos.yaml whose directories no longer exist on disk
Iterate through all sub-repos in repos/ and stage/commit/push each one, then do the same for the master repo
Stage, commit, and push changes for the master repo only (excludes sub-repos in repos/)
| name | create-plan |
| description | Create an implementation plan in _plans/ with embedded repo context and step-by-step task lists |
| user-invocable | true |
| origin | template |
Create a detailed implementation plan before any coding begins. The plan is a markdown file with checkboxes that /implement-plan will later execute and update.
The user provides a description of the work to be done. For example:
/create-plan Add Google OAuth to the login flow/create-plan Migrate user table to new schema/create-plan Update API rate limiting across all servicesBased on the user's description, determine which repos are involved:
repos/repos.yaml to get the list of repos/foldersFormat: YYYYMMDD-<plan-name>.plan.md
20260409)20260409-google-oauth.plan.mdUse the explorer agent pattern (read-only) to gather relevant context from the repos in scope:
repos/repos.md for an overviewCreate _plans/YYYYMMDD-<plan-name>.plan.md with this structure:
---
status: draft
repos: [<repo-names>]
created: <today's date>
---
# Plan: <descriptive title>
## Context
<1-3 sentences: what needs to happen and why>
## Repo Context
<embedded API surfaces, types, schemas from relevant repos>
### <repo-name>
- <key files with brief descriptions>
- <exported types or endpoints relevant to this work>
- <architectural constraints or patterns to follow>
(repeat for each repo in scope)
## Steps
- [ ] Step 1: <brief title>
- **Task**: <detailed explanation of what to do>
- **Files**: <list of files to create or modify, with full paths>
- **Pseudocode**: <high-level pseudocode, NOT real code>
- [ ] Step 2: <brief title>
- **Task**: <detailed explanation>
- **Files**: <file list>
- **Pseudocode**: <pseudocode>
(continue for all steps)
- [ ] Step N: Validate
- **Task**: Run the application and tests, verify everything works
- **Files**: <test files>
Before finishing, verify the plan:
/implement-planTell the user:
/implement-plan _plans/<filename> when ready to build."/implement-plan