skills/agentsmd-generator/SKILL.md
Generate project-level AGENTS.md guides that capture conventions, workflows, and required follow-up tasks. Use when a repository needs clear agent onboarding covering structure, tooling, testing, task flow, README expectations, and conventional commit summaries.
npx skillsauth add asteroid-belt-llc/skills agentsmd-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
.gitignore-aware tree output, and record automation entry points (preferring just/make tasks when available)AGENTS.md file following the opinionated section order below, honoring scope rules for nested directoriesfind alternative (glob or repo tree) to discover current files. Determine scope inheritance so you can update or extend instead of duplicating.README.md, CONTRIBUTING.md, and other onboarding docs for project philosophy, setup, and workflows.docs/ or documentation/ exists, scan for architectural or process references worth surfacing.src/ui maintained by Frontend team").plans/, docs/, or other knowledge directories. Flag must-read files (ADR indexes, architecture overviews, runbooks) to reference later in AGENTS.md.tree command with the --gitignore flag (tree ≥ 2.0) so ignored paths stay hidden: tree --gitignore -a -L 3 > tmp/tree.txt.tree build lacks --gitignore, run tree -a -L 3 --prune and manually prune any ignored directories noted in .gitignore, or install an updated version via your package manager.Justfile exists, run just --list (or just --list --unsorted for extra notes).Makefile exists (and just does not), run make help or inspect phony targets for canonical tasks..env.example, config/, or secrets documentation that agents must review.plans/ or documentation directories are authoritative or stale, and clarify what canon to reference.Outcome: A structured notes list describing layout, tooling, commands, testing, release process, documentation references, pending questions, and update expectations.
Follow this opinionated order to keep files consistent and scannable:
just recipes first, then make targets, then raw commands.README.md, architecture diagrams, or other docs.For deeper directories (e.g., services/api/), include a "Scope" note at the top clarifying inheritance from parent AGENTS instructions. Always confirm with the developer before drafting new per-directory AGENTS files so you do not duplicate existing guidance or create unnecessary overhead.
Use the template below and adapt each section to the project:
# Project Agent Guide
> Scope: Root project (applies to all subdirectories unless overridden)
## Quick Facts
- **Primary language:**
- **Package manager:**
- **Entrypoints:**
- **CI/CD:**
## Repository Tour
- `path/` — description & owner
## Tooling & Setup
- Install instructions (per OS)
- Required environment variables (with purpose)
- Secrets management notes
## Common Tasks
- `just <task>` — what it does (preferred)
- `make <target>` — what it does
- Raw command fallback when automation missing
## Testing & Quality Gates
- Unit/integration test commands
- Lint/format commands
- Coverage expectations & thresholds
- CI status command or dashboard link
## Workflow Expectations
- Branch naming and review rules
- Feature toggles or release cadence
- Any approval or ticket linkage requirements
## Documentation Duties
- Update `README.md` when features, setup steps, or developer ergonomics change materially
- List other docs to refresh (architecture, ADRs, etc.)
## Finish the Task Checklist
- [ ] Update relevant docs (& `README.md` if significant changes landed)
- [ ] Summarize changes in conventional commit format (e.g., `feat: ...`, `fix: ...`)
# <Directory Name> Agent Guide
> Scope: ./path/to/directory (inherits root AGENTS.md unless noted)
## Purpose
- What lives here
- Who owns it (team/contact)
## Key Files
- `file_or_folder/` — why it matters
## Common Tasks
- `just <task>` / `make <target>` / command snippets scoped to this directory
## Testing & Quality
- Specific tests, linters, or data fixtures for this directory
## Hand-off Notes
- Docs or runbooks to reference
- Open questions captured during discovery
Only create these per-directory guides after confirming with the developer which areas need dedicated context and what information should be emphasized.
Writing Notes:
just format before opening a PR").scripts/bootstrap.sh).tree --gitignore snapshot (or link to the saved artifact) so readers grasp layout quickly.plans/, docs/, design docs, or ADRs live if present.Use this skill whenever a repo lacks AGENTS context or when existing instructions are incomplete or outdated. The goal is to leave future agents with a single, trustworthy map of the project, its tooling, and the expectations for finishing tasks responsibly.
development
Transforms technical documents into rigorous learning journeys with collegiate-level mastery requirements. Uses Bloom's taxonomy progression, 80%+ mastery thresholds, and multi-level verification before advancing. Treats learning as a high school to college graduation progression. Use when user wants deep understanding, not surface familiarity.
development
Use when starting significant features, epics, or complex tasks. Creates multi-phase implementation plans with parallelizable phases, poker estimates, TDD-first acceptance criteria, and quality gates. Detects tech stack from CLAUDE.md/AGENTS.md (bypassing internet research if complete) or via codebase scan.
development
Generates a docs/ directory of markdown files giving AI and humans deep context on WHAT a codebase is, HOW it works, and WHY decisions were made. Scans any codebase, produces structured documentation. Re-runnable — detects existing docs, monorepos, and git-based staleness. Runs automatically without user interaction.
development
Weekly codebase hygiene skill that identifies and fixes AI-generated code problems ("slop") using Martin Fowler's refactoring techniques. Scans for 15 common issues, prioritizes by severity, and generates superplan-compatible plans for systematic improvement.