Files
holocron/plugins/core
Defame1297 1c3af75642 fix(core): make --no-import-syntax actually change the adapter validation
Both branches of the flag reduced to the same expression, so the option was
inert: a caller who asked for the no-import form got the import-form check
anyway and a passing result that meant nothing.

Two further defects in the same validator: --max-lines failed silently when
given a value it could not use, and the Fix text told the agent to edit
AGENTS.md when the offending content is the provider adapter's. The boundary
clauses now name the operation being routed rather than the file type, which
was ambiguous where both skills touch the same file.

Addresses #115.
2026-08-31 08:01:45 +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