Copilot & AGENTS Optimizer Skill
When to use
Use this skill when:
- Running
/docs-optimize to refactor AGENTS.md and copilot-instructions.md
- Adding new content to either file and needing to check if it belongs there
- After changes to
.augment/ (new skills, rules, guidelines) that may make content in these files redundant
- When either file exceeds the line budget
Do NOT use when:
- Writing application code
- Creating new skills or commands
Procedure: Optimize copilot/agents files
0. Analyze current state
Before changing anything, read and understand:
- Read
AGENTS.md — current content, line count, what's duplicated vs. unique.
- Read
.github/copilot-instructions.md — same analysis.
- Scan
.augment/ — which skills, rules, and guidelines already cover topics from the files above.
- Identify duplication — what content exists in both AGENTS.md and
.augment/?
Only after this analysis, proceed with optimization.
AGENTS.md — Project Entry Point for AI Agents
| Property |
Value |
| Audience |
Augment Agent, other AI agents |
Can read .augment/? |
✅ Yes — can follow references |
| Line budget |
Max 1000, ideal ≤ 500 |
| Purpose |
Project-specific setup, Docker, testing, quality tools |
What belongs here:
- Tech stack and framework versions
- Development setup (Docker, Make targets, env files)
- Database and multi-tenancy setup
- Testing framework, suites, and conventions
- Quality tool commands (PHPStan, Rector, ECS)
- Project structure overview (brief, link to module docs)
- Agent infrastructure overview (layer table, key references)
What does NOT belong here:
- Coding standards (→
.augment/rules/ and .augment/guidelines/)
- Architecture principles like SOLID, KISS, DRY (→
.augment/rules/architecture.md)
- PHP conventions (→
../../../docs/guidelines/php/)
- Scope control rules (→
.augment/rules/scope-control.md)
- Language/tone rules (→
.augment/rules/language-and-tone.md)
- Detailed module documentation (→
app/Modules/README.md)
.github/copilot-instructions.md — Self-Contained for Copilot
| Property |
Value |
| Audience |
GitHub Copilot (Code Review bot + Chat) |
Can read .augment/? |
❌ Code Review cannot, ✅ Chat can |
| Line budget |
Max 1000, ideal ≤ 500 |
| Purpose |
Coding standards, review rules, architecture constraints |
What belongs here:
- Architecture rules (thin controllers, service layer, policies)
- PHP 8.2 patterns (readonly, final, enums — with exceptions)
- Project-specific conventions (custom helpers, environment config, naming)
- Code review scope and comment behavior rules
- Language rules (English comments, bilingual PR comments)
- Known issues / false positives that Copilot should avoid
- Package management rules
What does NOT belong here:
- Docker setup or Make targets (Copilot doesn't run commands)
- Testing setup details (Copilot doesn't run tests)
- Agent infrastructure (Copilot doesn't use agents/)
- Things auto-enforced by ECS/Rector (code style, formatting, trailing commas)
- Detailed pattern documentation (too long, Copilot needs concise rules)
Deduplication Strategy
Rule: Content lives in ONE canonical place
.augment/rules/ ← Canonical for behavior rules
.augment/guidelines/ ← Canonical for coding conventions
.augment/skills/ ← Canonical for domain expertise
agents/ ← Canonical for project-specific docs
When duplication is acceptable
copilot-instructions.md must duplicate essential rules because Copilot Code Review
cannot read other files. But keep duplicated content:
- Concise — one-liner summaries, not full explanations
- Focused — only what Copilot needs for code suggestions and PR reviews
- Stable — rules that rarely change (architecture, naming, key conventions)
When duplication is NOT acceptable
AGENTS.md should never duplicate .augment/ content because Augment Agent can read
both. Instead, reference with a table:
| What | Where |
|---|---|
| PHP coding rules | `.augment/rules/php-coding.md` |
| Controller guidelines | `../../../docs/guidelines/php/controllers.md` |
Line Budget Enforcement
| File |
🟢 Good |
🟡 Warning |
🔴 Over budget |
AGENTS.md |
≤ 500 |
501–800 |
> 1000 |
copilot-instructions.md |
≤ 500 |
501–800 |
> 1000 |
Reduction strategies (when over budget)
- Extract to
agents/ — Move project-specific details to dedicated files in agents/
and link from AGENTS.md (e.g., agents/reference/docs/database-setup.md, agents/reference/docs/testing.md)
- Remove duplicates — If content exists in
.augment/, remove from AGENTS.md
- Condense — Turn verbose explanations into concise tables or bullet points
- Remove ECS/Rector-enforced rules — From copilot-instructions.md (auto-fixed anyway)
- Move examples to guidelines — Detailed code examples belong in
.augment/guidelines/
Portability and Stack Coherence
Duplication is not the only way these files go wrong. They also lie
about the project over time:
- Legacy identifiers — references to a former repo name, a sibling
project in the same monorepo, or content that was copied from another
codebase as a starting template and never adapted.
- Stack drift — the file claims "Laravel 11 + MariaDB" but the repo
was converted to a Python library; or it names Docker services that
no longer exist.
- Dead commands —
make start in the docs, but Makefile no
longer has that target.
Before deduplicating, run three scans:
- Legacy identifier scan — compare both files against the package's
FORBIDDEN_IDENTIFIERS blocklist (see scripts/check_portability.py)
plus any project names from agents/ module docs that don't match
the current project.
- Stack coherence scan — auto-detect the actual stack from
composer.json / package.json / pyproject.toml / etc. and flag
any claim that no longer matches reality.
- Dead-command scan — verify every
make X, task X, composer X,
php artisan X, or npm X still resolves.
Every hit from scan 1 is a 🔴 blocker: leaking another project's name
into a consumer's own docs is the failure mode this skill exists to
prevent. Fix or remove those BEFORE any dedup/condense work — there's
no point deduplicating content that is about to be rewritten.
When the drift is severe (whole sections are wrong), recommend
/agents init to scaffold a clean replacement rather than
patching forever.
agent-config Path Conventions — Preserve, Don't "Fix"
copilot-instructions.md ships a "Known False Positives" section that
tells Copilot Code Review not to flag agent-config path patterns as
broken. When optimizing, keep that section intact — never delete
it as "redundant" and never trim its bullets. The patterns it covers:
- Relative cross-references inside
.augment/ rules / skills
(../docs/guidelines/foo.md, ../contexts/bar.md) — paths resolve
from the file's delivered location, not from the symlink in
.claude/rules/ etc. (per road-to-path-fixes.md Strategy A).
path_prefix: triggers containing .agent-src.uncondensed/ —
literal match patterns, not file refs (per Modified Option 1,
P2.2).
- Symlinked rule files under
.claude/rules/, .cursor/rules/,
.clinerules/ — targets resolve into .augment/rules/.
If the consumer project's copilot-instructions.md is missing the
section, add it during optimization using the canonical block
from .augment/templates/copilot-instructions.md. Surfaces include
/agents init and /agents optimize.
Optimization Checklist
When optimizing either file, check:
Related
- Command:
/agents optimize
- Skill:
copilot-config — Copilot behavior and PR review patterns
- Skill:
agent-docs-writing — documentation hierarchy
- Context:
augment-infrastructure.md — full .augment/ overview
Output format
- Optimized file(s) with deduplication applied and line budget respected
- Summary of what was removed, moved, or consolidated
- Line count before/after for each file
Gotcha
- AGENTS.md is read by GitHub Copilot and other tools — changes affect all AI assistants, not just Augment.
- Don't remove content from AGENTS.md that other tools depend on — verify cross-tool compatibility first.
- The model tends to over-optimize by removing "obvious" content that other models actually need.
Do NOT
- Do NOT add content to AGENTS.md that belongs in .augment/ files.
- Do NOT exceed the recommended line budget for copilot-instructions.md.
- Do NOT duplicate rules between AGENTS.md and .augment/rules/.
Auto-trigger keywords
- AGENTS.md optimization
- copilot-instructions
- deduplication
Source: event4u-app/agent-config — distributed by TomeVault.
1---2name: copilot-agents-optimization3description: Use when optimizing AGENTS.md or copilot-instructions.md — deduplicates against .augment/ content, enforces line budgets, and focuses each file on its audience.4---56# Copilot & AGENTS Optimizer Skill78## When to use910Use this skill when:11- Running `/docs-optimize` to refactor AGENTS.md and copilot-instructions.md12- Adding new content to either file and needing to check if it belongs there13- After changes to `.augment/` (new skills, rules, guidelines) that may make content in these files redundant14- When either file exceeds the line budget151617Do NOT use when:18- Writing application code19- Creating new skills or commands2021## Procedure: Optimize copilot/agents files2223### 0. Analyze current state2425Before changing anything, read and understand:26271. **Read `AGENTS.md`** — current content, line count, what's duplicated vs. unique.282. **Read `.github/copilot-instructions.md`** — same analysis.293. **Scan `.augment/`** — which skills, rules, and guidelines already cover topics from the files above.304. **Identify duplication** — what content exists in both AGENTS.md and `.augment/`?3132Only after this analysis, proceed with optimization.3334### `AGENTS.md` — Project Entry Point for AI Agents3536| Property | Value |37|---|---|38| **Audience** | Augment Agent, other AI agents |39| **Can read `.augment/`?** | ✅ Yes — can follow references |40| **Line budget** | Max 1000, ideal ≤ 500 |41| **Purpose** | Project-specific setup, Docker, testing, quality tools |4243**What belongs here:**44- Tech stack and framework versions45- Development setup (Docker, Make targets, env files)46- Database and multi-tenancy setup47- Testing framework, suites, and conventions48- Quality tool commands (PHPStan, Rector, ECS)49- Project structure overview (brief, link to module docs)50- Agent infrastructure overview (layer table, key references)5152**What does NOT belong here:**53- Coding standards (→ `.augment/rules/` and `.augment/guidelines/`)54- Architecture principles like SOLID, KISS, DRY (→ `.augment/rules/architecture.md`)55- PHP conventions (→ `../../../docs/guidelines/php/`)56- Scope control rules (→ `.augment/rules/scope-control.md`)57- Language/tone rules (→ `.augment/rules/language-and-tone.md`)58- Detailed module documentation (→ `app/Modules/README.md`)5960### `.github/copilot-instructions.md` — Self-Contained for Copilot6162| Property | Value |63|---|---|64| **Audience** | GitHub Copilot (Code Review bot + Chat) |65| **Can read `.augment/`?** | ❌ Code Review cannot, ✅ Chat can |66| **Line budget** | Max 1000, ideal ≤ 500 |67| **Purpose** | Coding standards, review rules, architecture constraints |6869**What belongs here:**70- Architecture rules (thin controllers, service layer, policies)71- PHP 8.2 patterns (readonly, final, enums — with exceptions)72- Project-specific conventions (custom helpers, environment config, naming)73- Code review scope and comment behavior rules74- Language rules (English comments, bilingual PR comments)75- Known issues / false positives that Copilot should avoid76- Package management rules7778**What does NOT belong here:**79- Docker setup or Make targets (Copilot doesn't run commands)80- Testing setup details (Copilot doesn't run tests)81- Agent infrastructure (Copilot doesn't use agents/)82- Things auto-enforced by ECS/Rector (code style, formatting, trailing commas)83- Detailed pattern documentation (too long, Copilot needs concise rules)8485## Deduplication Strategy8687### Rule: Content lives in ONE canonical place8889```90.augment/rules/ ← Canonical for behavior rules91.augment/guidelines/ ← Canonical for coding conventions92.augment/skills/ ← Canonical for domain expertise93agents/ ← Canonical for project-specific docs94```9596### When duplication is acceptable9798`copilot-instructions.md` **must** duplicate essential rules because Copilot Code Review99cannot read other files. But keep duplicated content:100- **Concise** — one-liner summaries, not full explanations101- **Focused** — only what Copilot needs for code suggestions and PR reviews102- **Stable** — rules that rarely change (architecture, naming, key conventions)103104### When duplication is NOT acceptable105106`AGENTS.md` should **never** duplicate `.augment/` content because Augment Agent can read107both. Instead, reference with a table:108109```markdown110| What | Where |111|---|---|112| PHP coding rules | `.augment/rules/php-coding.md` |113| Controller guidelines | `../../../docs/guidelines/php/controllers.md` |114```115116## Line Budget Enforcement117118| File | 🟢 Good | 🟡 Warning | 🔴 Over budget |119|---|---|---|---|120| `AGENTS.md` | ≤ 500 | 501–800 | > 1000 |121| `copilot-instructions.md` | ≤ 500 | 501–800 | > 1000 |122123### Reduction strategies (when over budget)1241251. **Extract to `agents/`** — Move project-specific details to dedicated files in `agents/`126 and link from AGENTS.md (e.g., `agents/reference/docs/database-setup.md`, `agents/reference/docs/testing.md`)1272. **Remove duplicates** — If content exists in `.augment/`, remove from AGENTS.md1283. **Condense** — Turn verbose explanations into concise tables or bullet points1294. **Remove ECS/Rector-enforced rules** — From copilot-instructions.md (auto-fixed anyway)1305. **Move examples to guidelines** — Detailed code examples belong in `.augment/guidelines/`131132## Portability and Stack Coherence133134Duplication is not the only way these files go wrong. They also **lie135about the project** over time:136137- **Legacy identifiers** — references to a former repo name, a sibling138 project in the same monorepo, or content that was copied from another139 codebase as a starting template and never adapted.140- **Stack drift** — the file claims "Laravel 11 + MariaDB" but the repo141 was converted to a Python library; or it names Docker services that142 no longer exist.143- **Dead commands** — `make start` in the docs, but `Makefile` no144 longer has that target.145146Before deduplicating, run three scans:1471481. **Legacy identifier scan** — compare both files against the package's149 `FORBIDDEN_IDENTIFIERS` blocklist (see `scripts/check_portability.py`)150 plus any project names from `agents/` module docs that don't match151 the current project.1522. **Stack coherence scan** — auto-detect the actual stack from153 `composer.json` / `package.json` / `pyproject.toml` / etc. and flag154 any claim that no longer matches reality.1553. **Dead-command scan** — verify every `make X`, `task X`, `composer X`,156 `php artisan X`, or `npm X` still resolves.157158Every hit from scan 1 is a 🔴 blocker: leaking another project's name159into a consumer's own docs is the failure mode this skill exists to160prevent. Fix or remove those BEFORE any dedup/condense work — there's161no point deduplicating content that is about to be rewritten.162163When the drift is severe (whole sections are wrong), recommend164`/agents init` to scaffold a clean replacement rather than165patching forever.166167## agent-config Path Conventions — Preserve, Don't "Fix"168169`copilot-instructions.md` ships a "Known False Positives" section that170tells Copilot Code Review not to flag agent-config path patterns as171broken. When optimizing, **keep that section intact** — never delete172it as "redundant" and never trim its bullets. The patterns it covers:173174- Relative cross-references inside `.augment/` rules / skills175 (`../docs/guidelines/foo.md`, `../contexts/bar.md`) — paths resolve176 from the file's delivered location, not from the symlink in177 `.claude/rules/` etc. (per `road-to-path-fixes.md` Strategy A).178- `path_prefix:` triggers containing `.agent-src.uncondensed/` —179 literal match patterns, not file refs (per Modified Option 1,180 P2.2).181- Symlinked rule files under `.claude/rules/`, `.cursor/rules/`,182 `.clinerules/` — targets resolve into `.augment/rules/`.183184If the consumer project's `copilot-instructions.md` is missing the185section, **add it** during optimization using the canonical block186from `.augment/templates/copilot-instructions.md`. Surfaces include187`/agents init` and `/agents optimize`.188189## Optimization Checklist190191When optimizing either file, check:192193- [ ] "Known False Positives" section present and unmodified?194- [ ] No identifiers from other projects (FORBIDDEN_IDENTIFIERS blocklist)?195- [ ] Tech stack claims match actual project dependencies?196- [ ] All referenced commands/targets exist (Makefile, composer scripts, artisan, task)?197- [ ] Line count within budget?198- [ ] No content duplicated with `.augment/rules/`?199- [ ] No content duplicated with `.augment/guidelines/`?200- [ ] No content duplicated between the two files unnecessarily?201- [ ] AGENTS.md references `.augment/` instead of duplicating?202- [ ] copilot-instructions.md is self-contained for Code Review?203- [ ] No ECS/Rector-enforced rules in copilot-instructions.md?204- [ ] Project structure is brief (link to module docs for details)?205- [ ] All sections still relevant (no outdated references)?206- [ ] Cross-references to `agents/` docs are valid?207208## Related209210- **Command:** `/agents optimize`211- **Skill:** `copilot-config` — Copilot behavior and PR review patterns212- **Skill:** `agent-docs-writing` — documentation hierarchy213- **Context:** `augment-infrastructure.md` — full `.augment/` overview214215216## Output format2172181. Optimized file(s) with deduplication applied and line budget respected2192. Summary of what was removed, moved, or consolidated2203. Line count before/after for each file221222## Gotcha223224- AGENTS.md is read by GitHub Copilot and other tools — changes affect all AI assistants, not just Augment.225- Don't remove content from AGENTS.md that other tools depend on — verify cross-tool compatibility first.226- The model tends to over-optimize by removing "obvious" content that other models actually need.227228## Do NOT229230- Do NOT add content to AGENTS.md that belongs in .augment/ files.231- Do NOT exceed the recommended line budget for copilot-instructions.md.232- Do NOT duplicate rules between AGENTS.md and .augment/rules/.233234## Auto-trigger keywords235236- AGENTS.md optimization237- copilot-instructions238- deduplication239240---241> Source: [event4u-app/agent-config](https://github.com/event4u-app/agent-config) — distributed by [TomeVault](https://tomevault.io).242<!-- tomevault:4.0:skill_md:2026-06-15 -->