managing-agents-md — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited managing-agents-md (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
AGENTS.md is a README for AI agents. It tells any AI coding tool — Claude Code, Copilot, Cursor, Codex — how to navigate and work with your codebase. Keep it updated as the project evolves.
Create AGENTS.md when:
Update AGENTS.md when:
Do NOT create for:
For monorepos or large projects, use a hierarchical approach:
Root AGENTS.md → Project overview, tech stack, global conventions
├── app/AGENTS.md → App-specific architecture, commands, patterns
│ └── feature/AGENTS.md → Feature-specific extension pointsEach tier adds specificity. Agents read from root down to the most relevant file.
# AGENTS.md — [Project or Directory Name]
Brief one-line description of this part of the codebase.
## Commands
\`\`\`bash
npm run dev # Start development server
npm test # Run tests
npm run build # Production build
\`\`\`
## Project Structure
\`\`\`
src/
├── api/ # REST endpoints (~12 files)
├── services/ # Business logic (~8 files)
├── models/ # Data models (~6 files)
└── utils/ # Shared utilities (~4 files)
\`\`\`
## Key Patterns
[Describe the main architectural patterns, data flow, or conventions]
## Boundaries
### Always
- [Pattern to always follow]
- [Convention to always use]
### Never
- [Anti-pattern to avoid]
- [Dangerous operation]
### Ask First
- [Risky change that needs confirmation]If the project also uses Claude Code, create a CLAUDE.md that imports the AGENTS.md:
@AGENTS.md
## Claude-Specific
- [Any Claude Code-specific instructions, hooks, or skill references]This avoids duplicating content while adding Claude-specific configuration.
Stale documentation: An outdated AGENTS.md is worse than none. Update it when the code changes.
Too granular: Don't create AGENTS.md for every directory. Only for significant architectural boundaries.
Duplicating README: AGENTS.md is for AI agents, not humans. Focus on what an agent needs to navigate and modify code correctly — commands, patterns, boundaries.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.