بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف 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 | 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
}
]
}