一键导入
create-directory-list
Interactively discover monorepo directories and create a JSON list for AGENTS.md generation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactively discover monorepo directories and create a JSON list for AGENTS.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 AGENTS.md generation |
Interactively discover directories in the monorepo that should have
AGENTS.md files generated.
Examine the codebase to identify directories that would benefit from
AGENTS.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 AGENTS.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": "AGENTS.md",
"status": "pending",
"analyzed_at": null
},
{
"id": "2",
"directory": "packages/ui",
"output_file": "AGENTS.md",
"status": "pending",
"analyzed_at": null
}
]
}