ワンクリックで
create-directory-list
Interactively discover monorepo directories and create a JSON list for CLAUDE.md generation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Interactively discover monorepo directories and create a JSON list for CLAUDE.md generation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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
SOC 職業分類に基づく
| name | create-directory-list |
| description | Interactively discover monorepo directories and create a JSON list for CLAUDE.md generation |
Interactively discover directories in the monorepo that should have CLAUDE.md files generated.
Examine the codebase to identify directories that would benefit from CLAUDE.md 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 CLAUDE.md 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 with this structure:
{
"items": [
{
"id": "1",
"directory": "packages/api",
"output_file": "CLAUDE.md",
"status": "pending",
"analyzed_at": null
},
{
"id": "2",
"directory": "packages/ui",
"output_file": "CLAUDE.md",
"status": "pending",
"analyzed_at": null
}
]
}