wiki-agents-md

Solid

Generates AGENTS.md files for repository folders — coding agent context files with build commands, testing instructions, code style, project structure, and boundaries. Only generates where AGENTS.md is missing.

Data & Documents 2,429 stars 272 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AGENTS.md Generator Generate high-quality `AGENTS.md` files for repository folders. Each file provides coding agents with project-specific context — build commands, testing instructions, code style, structure, and operational boundaries. ## What is AGENTS.md `AGENTS.md` complements `README.md`. README is for humans; AGENTS.md is for coding agents. - **Predictable location** — Agents look for `AGENTS.md` in the current directory, then walk up the tree - **Nested files** — Subfolders can have their own `AGENTS.md` that takes precedence over the root one - **Separate from README** — Keeps READMEs concise; agent-specific details (exact commands, boundaries, conventions) go here - **NOT the same as `.github/agents/*.agent.md`** — Those are agent persona definitions (who the agent is). `AGENTS.md` is project context (what the agent should know about this code) ## Critical Guard: Only Generate If Missing > **This is the single most important rule.** **NEVER overwrite an existing AGENTS.md.** Before generating for ANY folder: ```bash # Check if AGENTS.md already exists ls AGENTS.md 2>/dev/null ``` - If it exists → **skip** and report: `"AGENTS.md already exists at <path> — skipping"` - If it does not exist → proceed with generation - This check applies to **every folder independently** ## Pertinent Folder Detection Identify which folders should have an `AGENTS.md`: ### Always generate for: - **Repository root** (`/`) - **Wiki folder** (`wiki/`) — if generated by deep-...

Details

Author
microsoft
Repository
microsoft/skills
Created
4 months ago
Last Updated
2 days ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category