Creates AGENTS.md with concise instructions if needed.
Installation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Creates AGENTS.md with concise instructions if needed.
create-instructions
Analyze the project's coding conventions and produce a concise AGENTS.md.
Steps
Check for existing AGENTS.md — if one already exists at the project root, stop and tell the user it already exists. Do not overwrite it.
Explore the codebase — read a representative sample of source files (not config files) to identify patterns. Look at:
How files and types are named
How state management is handled
Error handling patterns
Testing conventions
Any custom abstractions or wrappers used instead of primitives
Patterns that deviate from the language/framework defaults
If a folder convention is used what that convention is
Write AGENTS.md — create it at the project root with these rules:
At most 20 instructions
Each instruction is a single line (no multi-line bullets)
Only include things that are unique to this project and non-obvious
Do NOT list the project's directory structure
Do NOT include anything that is standard practice for the language or framework
Do NOT include things a competent developer would infer automatically (e.g. "use Swift", "follow MVC")
Focus on: project-specific patterns, naming conventions that deviate from defaults, custom abstractions the AI must use, gotchas specific to this codebase