From reactant
Scans a file for <@skill: prompt> tags like <@edit:>, <@proofread>, dispatches sequentially to matching subagents, re-reading file after each.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reactant:executeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Route all `<@skill-name: ...>` annotations in a file to their matching skill subagents.
Route all <@skill-name: ...> annotations in a file to their matching skill subagents.
/execute <filename>
<@skill-name: prompt>
Tags are written inline, directly in the original text. <@output: ...> is a special data tag — never dispatched, only consumed by other skills.
Prompts may contain context references ( path ) that point the skill agent to external resources (files, sections, etc.). The execute router does not interpret these — they are passed through to the subagent as part of the prompt.
| Tag | Skill | Description |
|---|---|---|
<@edit: ...> | edit | Generic edit per prompt. |
<@proofread> | proofread | Fix grammar, spelling, punctuation. |
<@plan: ...> | plan | Produce a revision plan. |
<@ph> / <@ph: ...> | ph | Fill placeholder from context. |
<@resolve> | resolve | Apply preceding plan/output chain. |
<@figure: ...> | figure | Generate a figure. (Placeholder — needs Gemini API.) |
<@cite: ...> | cite | Find and insert citations to support a claim. |
<@plot: ...> | plot | Generate and execute a data visualization script. |
To add a new skill: create skills/<name>/SKILL.md and add a row to this table.
Every subagent receives:
<@output: ...>).Each subagent is responsible for applying its own changes directly to the file. The execute skill does not write back results — it only dispatches.
<@...> tags, top to bottom.<@output: ...> — it is data, not a dispatch target.<@output: ...> tags.npx claudepluginhub a554b554/reactant --plugin reactantCreates new Claude Code skills from prompt files or workflows by analyzing structure, inferring frontmatter like context and tools, and generating formatted SKILL.md files.
Create SKILL.md files from auto-detected workflow prompts. USE WHEN user types /cac-create-skill or wants to generate a skill from detected patterns.
Guides authoring SKILL.md files for Claude Code: structure, frontmatter fields, invocation controls, argument hints, hooks. Use when creating skills for reference, methodology, or workflows.