ワンクリックで
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