From agentic
Audit a Claude Code plugin skill across 12 dimensions: purpose, contract, communication style, response patterns, workflow, instruction content, dependencies, lifecycle, skill interactions, resources, configuration, and permissions. Surfaces bugs and gaps with severity ratings. Use when the user asks to audit, review, or analyse a Claude Code plugin or specific skill.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic:audit_skill [plugin-name-or-path] [skill-name][plugin-name-or-path] [skill-name]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a comprehensive audit of a Claude Code plugin skill. $ARGUMENTS specifies the
Produce a comprehensive audit of a Claude Code plugin skill. $ARGUMENTS specifies the plugin (name or path) and optionally a single skill to focus on. If no arguments are provided, ask the user which plugin and skill(s) to audit before proceeding.
Before doing any analysis, fetch the Claude Code plugin reference documentation so you are working from the live specification:
Read these before continuing. Do not rely on prior training knowledge about these APIs — the fetched content is authoritative.
Parse $ARGUMENTS:
Resolution order for a plugin name:
.claude/plugins/<name>/ in the current project.claude-plugin/ at <name>/ relative to cwd~/.claude/plugins/cache/ — look for <name> under any marketplace subdirectory; pick the latest versionFor a path argument: use it directly.
Once you have the plugin directory, confirm the path to the user and proceed.
Read the following (all that exist):
.claude-plugin/plugin.json — manifestskills/*/SKILL.md — all skill files (or just the named skill if one was specified)skills/*/reference.md — any sibling reference filescontext/*.md — context files if the directory existsreferences/*.md — reference files if the directory existshooks/hooks.json — hook configuration if it existsList the skills found and confirm with the user before proceeding to the audit. If a specific skill was requested and it doesn't exist, list what is available and ask.
Produce a comprehensive audit covering all 12 dimensions. If a specific skill was requested via $ARGUMENTS, focus on that skill — but keep the whole-plugin context in mind for dependency and interaction dimensions.
Purpose & intent — What problem does this plugin/skill solve? Who uses it? When is it invoked? What is it trying to accomplish?
Contract — Arguments ($ARGUMENTS usage, argument-hint), invocation modes,
triggers, preconditions, expected outcomes. What must be true before it runs?
What must be true when it's done?
Communication style — How does it talk to the user? Tone, verbosity, format, use of headers and sections. Does it match what the stated audience would expect?
Response patterns — What it returns, in what format, under which conditions. How does it handle errors, empty states, ambiguous inputs, or missing data?
End-to-end process — Step-by-step workflow from invocation to completion. Are the steps ordered correctly? Are any steps missing or unreachable?
Instruction content — What the SKILL.md says. Are the instructions clear? Complete? Internally consistent? Are there gaps the LLM would have to guess at?
Dependencies — Other skills invoked, memory files read or written, git operations, external tools or services. Are these explicit or implicit? Are there undocumented assumptions about what must exist?
Lifecycle — When is this invoked? Is it session-persistent or one-shot?
How does it relate to hook bindings in hooks.json? What triggers it?
Skill interactions — What does it call? What calls it? Note sibling skills by name. Do not recursively audit siblings unless the user asks.
Resources & files — What it reads, writes, creates, or deletes. Side effects on the filesystem or external state. Are side effects documented?
Settings & configuration — What is configurable? What uses hardcoded defaults? Are defaults reasonable? Is the configuration surface documented?
Permissions model — What access does it require? Any security-relevant operations? Does it validate inputs before using them in commands or file paths?
For each issue found, assign a severity:
CRITICAL — Makes the skill non-functional in its stated purpose. Broken preconditions, missing required steps, unreachable states, fatal contradictions.
WARNING — Ambiguous instructions, edge case risk, missing validation, implicit assumptions that could break under realistic conditions, gaps that require the LLM to guess.
NOTE — Style issues, inconsistent terminology, incomplete coverage of minor paths, things that could be clearer without affecting correctness.
Do not propose fixes unless the user explicitly asks. For each issue: state it, explain the concern, and cite the specific content that causes it.
When something cannot be determined from the content alone — intended behavior for an ambiguous path, an undocumented dependency, an implicit assumption — ask the user. Keep questions purposeful and grouped.
When all dimensions are covered and issues surfaced: produce a structured narrative spec document. Choose a form that fits the plugin's complexity and the user's evident needs.
At the end, explicitly seek user concurrence:
npx claudepluginhub nominexhq/agentic-plugin --plugin agenticProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.