create-agents-mdlisted
Install: claude install-skill janmarkuslanger/skills
# Create AGENTS.md
When this skill is activated, analyze the current project and produce a project-specific `AGENTS.md` file in the project root. The file gives AI coding agents clear, enforceable engineering standards derived from the actual codebase.
## Steps
1. Read the `AGENTS.template.md` file co-located with this skill to get the base template structure.
2. Explore the project structure: directories, entry points, config files, package manager files
3. Identify the tech stack and major dependencies
4. Determine the architectural layers and how they are structured in the codebase
5. Map out the major components, modules, and their responsibilities
6. Identify existing naming conventions, file structure patterns, and code style choices
7. Look for existing test files to understand testing strategy and coverage expectations
8. Find coupling patterns: which modules import which, where interfaces exist
9. Identify design patterns in use: look for structural patterns (Repository, Factory, Strategy, Observer, Decorator, Command, etc.) and note where they appear
10. Check for existing commit history or CHANGELOG to understand commit style
11. Look for existing documentation (README, ARCHITECTURE.md, docs/DESIGN.md) and extract any stated conventions
## Output
Write a file called `AGENTS.md` in the project root. Use the `AGENTS.template.md` as the base structure and replace every `<!-- ... -->` placeholder with project-specific, concrete content. Do not leave any placeholde