axum-agents-scaffold
Installation
SKILL.md
axum-agents-scaffold
Overview
This is an orchestration skill. It does NOT teach an Axum API. It teaches the ordered sequence of decisions for building a complete Axum service and names the exact skill in this package that owns each decision.
Reach for this skill when the request is "build a service", not "fix this extractor". A single isolated question goes straight to the owning skill. A whole-service build runs the sequence below.
Core principle: an Axum service is built in the same order as the package
dependency chain, core -> syntax -> impl -> errors -> agents. Building out
of order produces rework. ALWAYS classify the service type first, ALWAYS pin
the version second, then follow the sequence.