AXEL Expert - delegates to skill-axel-expert for document operations (create, validate, fix, migrate)
Delegates document operations to expert skill for creation, validation, fixing, and migration.
/plugin marketplace add ahmetmeral/axel-marketplace/plugin install axel@axel-marketplace<document type="command" entry="cmd:main">
<enforcement>
<![CDATA[
- Read the `src`, `ref`, or `target` attribute from the document XML to locate referenced files
- ${CLAUDE_PLUGIN_ROOT} resolves to plugin installation directory
- This command delegates to skill-axel-expert
- Request comes from args.0 or interactive prompt
- Command only handles routing, skill handles all operations
]]>
</enforcement>
<objective>
Entry point for AXEL document operations.
Delegates to skill-axel-expert for create, validate, fix, and migrate operations.
</objective>
<documents name="core" load="always" mode="context">
<read src="${CLAUDE_PLUGIN_ROOT}/AXEL-Bootstrap.md"/>
<understanding>
!! MANDATORY: READ → UNDERSTAND → APPLY !!
Bootstrap provides AXEL core rules for document execution.
</understanding>
</documents>
<variables>
<var name="request" from="args.0"/>
</variables>
<command id="cmd:main">
<goto to="invoke-skill"/>
</command>
<execution flow="staged">
<!-- invoke-skill: Delegate to skill-axel-expert -->
<stage id="invoke-skill">
<tasks>
- Invoke skill-axel-expert with user request
- Skill will route to appropriate workflow/agent
</tasks>
<invoke name="Skill" output="skill_result">
<param name="skill" value="axel:skill-axel-expert"/>
<param name="prompt" value="${request}"/>
</invoke>
</stage>
</execution>
<understanding/>
</document>