← ClaudeAtlas

agent-docs-writinglisted

Use when reading, creating, or updating agent documentation, module docs, roadmaps, or AGENTS.md. Understands the full .augment/, agents/, and copilot-instructions structure.
event4u-app/agent-config · ★ 7 · AI & Automation · score 84
Install: claude install-skill event4u-app/agent-config
# agent-docs ## When to use Use this skill when: - Navigating the documentation structure to find relevant information - Creating or updating agent documentation after changes - Setting up documentation for a new module or package - Understanding what documentation exists and where Do NOT use when: - Creating code or making technical changes (use coding skills) - Looking for coding guidelines (use `guidelines` skill) ## Documentation hierarchy The documentation is organized in layers, from cross-project to module-specific: ### Layer 1: `.augment/` — Cross-project (identical in all repos) ``` .augment/ ├── rules/ ← Always-active rules (coding, docker, scope, language, etc.) ├── commands/ ← Slash commands (fix-ci, create-pr, quality-fix, etc.) ├── skills/ ← Reusable skill definitions (coder, code-refactoring, etc.) ├── contexts/ ← Shared contexts about the agent system itself ├── templates/ ← Templates for features, roadmaps, contexts └── guidelines/ ← Coding guidelines by language └── php/ ← PHP guidelines (controllers, eloquent, patterns, etc.) ``` **Purpose:** Universal agent behavior that applies to ALL projects and packages. **Language:** English. **Key rule:** This directory is **identical** across repos. Never add project-specific content here. **Templates** are the single source of truth for document structure — never store templates in `agents/`. ### Layer 2: `AGENTS.md` — Project-level entry point Located in t