Use when building web APIs, backend services, or encountering FastAPI/Django/Express/GraphQL questions, microservices architecture, authentication, or message queues - routes to 11 specialist skills rather than giving surface-level generic advice
View on GitHubtachyon-beep/skillpacks
axiom-web-backend
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-web-backend/skills/using-web-backend/SKILL.md -a claude-code --skill using-web-backendInstallation paths:
.claude/skills/using-web-backend/# Using Web Backend Skills ## Overview **This router directs you to specialized web backend skills. Each specialist provides deep expertise in their domain.** **Core principle:** Different backend challenges require different specialist knowledge. Routing to the right skill gives better results than generic advice. ## When to Use Use this router when encountering: - **Framework-specific questions**: FastAPI, Django, Express implementation details - **API design**: REST or GraphQL architecture, versioning, schema design - **Architecture patterns**: Microservices, message queues, event-driven systems - **Backend infrastructure**: Authentication, database integration, deployment - **Testing & documentation**: API testing strategies, documentation approaches ## How to Access Reference Sheets **IMPORTANT**: All reference sheets are located in the SAME DIRECTORY as this SKILL.md file. When this skill is loaded from: `skills/using-web-backend/SKILL.md` Reference sheets like `fastapi-development.md` are at: `skills/using-web-backend/fastapi-development.md` NOT at: `skills/fastapi-development.md` ← WRONG PATH When you see a link like `[fastapi-development.md](fastapi-development.md)`, read the file from the same directory as this SKILL.md. --- ## Quick Reference - Routing Table | User Question Contains | Route To | Why | |------------------------|----------|-----| | FastAPI, Pydantic, async Python APIs | [fastapi-development.md](fastapi-development.md) | FastAPI-specific patterns, dependency injection, async | | Django, ORM, views, middleware | [django-development.md](django-development.md) | Django conventions, ORM optimization, settings | | Express, Node.js backend, middleware | [express-development.md](express-development.md) | Express patterns, error handling, async flow | | REST API, endpoints, versioning, pagination | [rest-api-design.md](rest-api-design.md) | REST principles, resource design, hypermedia | | GraphQL, schema, resolvers, N+1 | [graph