Files
holocron/plugins/core
Defame1297 e42c055294 refactor(core): retrofit agentsmd-author to the ADR-0020 context contract
Description 960 -> 244 chars, body 470 -> 452 words, Gotchas 36% -> 22%.
Both composition notes move to README.md, which already carried them.

Four of five Gotchas were paraphrases of the step below them and were
deleted with their force folded back into that step. A clean-context
audit overturned the fifth deletion: the provider-file prohibition was
strictly broader than Step 4, so it was never a paraphrase, and Step 4's
'don't rewrite it yourself' is attached to the if-duplicates branch. With
Write and Edit granted, a provider file that was merely stale had nothing
forbidding an edit. Restored as an unconditional Gotcha, read before any
step writes.

Also restores a concrete indirect trigger. The retrofit had replaced two
with the meta-statement 'even when they don't name the file', which
claims an indirect trigger exists rather than being one -- and users
asking to document a repo for AI tools have no reason to know the
filename.

Refs #99
2026-08-30 15:06:48 +00:00
..

core

Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it.

Install

Claude Code:

claude plugin marketplace add <owner>/<repo>
claude plugin install core@<marketplace-name>

GitHub Copilot CLI:

copilot plugin marketplace add <owner>/<repo>
copilot plugin install core

Local (development):

# Claude Code
claude --plugin-dir ./plugins/core

# GitHub Copilot CLI
copilot plugin install ./plugins/core

Contents

Component Path Description
Skills .apm/skills/ → skills/ Slash commands available after install

.apm/ is the authoring source; skills/ is the generated mirror plugin hosts scan (ADR-0017).

Skills

Skill Description
agentsmd-author Create or update a repo's AGENTS.md by exploring real build/test/lint conventions; supports nested monorepo placement and hands off to agentsmd-audit and provider-adapter-author
agentsmd-audit Audit a repo's AGENTS.md for embedded secrets, structural completeness, and drift; produces a findings report
provider-adapter-author Convert a provider-specific instruction file (CLAUDE.md, .cursor/rules/*.mdc, copilot-instructions.md, etc.) into a thin adapter that defers to AGENTS.md

Author

Defame1297