원클릭으로
create-directory-list
Discover directories and create the tracking JSON for instruction generation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Discover directories and create the tracking JSON for instruction generation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Explain code at a high level and surface gotchas
Review a PR diff with focused, actionable feedback
Improve readability of a source file without changing behavior
Turn a user story into a concrete plan, skeletons, and tests
Refactor legacy code toward a stated goal with safety
Break a feature spec into sprint-ready engineering tasks
| name | create-directory-list |
| description | Discover directories and create the tracking JSON for instruction generation. |
Interactively discover directories in the monorepo that should have Cursor rules files generated.
Examine the codebase to identify directories that would benefit from instruction files. Look for:
packages/* - Shared packages/librariesapps/* - Application directoriesservices/* - Microserviceslibs/* - Shared librariesmodules/* - Feature modulesPresent a list of discovered directories with brief descriptions:
Proposed directories for instruction files:
1. packages/api - REST API client library
2. packages/ui - Shared UI components
3. apps/web - Main web application
4. apps/mobile - React Native mobile app
5. services/auth - Authentication service
...
Ask the user:
Continue iterating until the user confirms the list is complete.
Once confirmed, create directory-instructions.json in the working directory with this structure:
{
"items": [
{
"id": "1",
"directory": "packages/api",
"output_file": "api.mdc",
"status": "pending",
"analyzed_at": null
},
{
"id": "2",
"directory": "packages/ui",
"output_file": "ui.mdc",
"status": "pending",
"analyzed_at": null
}
]
}
packages/api → api.mdcapps/web-dashboard → web-dashboard.mdcpackages-api.mdc