Total Skills
4
Skills published by voro6yov with real stars/downloads and source-aware metadata.
Total Skills
4
Total Stars
4
Total Downloads
0
Comparison chart based on real stars and downloads signals from source data.
generate-code
1
api-client-fixtures
1
api-endpoint-test-rules
1
internal-router
1
Implements the REST API layer for a resource from its `<domain_stem>.rest-api.md` spec sibling. Resolves target locations once, scaffolds the per-surface package layout, implements query and command serializers in sequence (so they don't race on shared aggregators), implements endpoint modules, and finally wires everything into the FastAPI app. Invoke with: /rest-api-spec:generate-code <domain_diagram>
API Client Fixtures pattern for REST API testing. Use when writing pytest fixtures for FastAPI TestClient, authentication headers, and DI container overrides in integration/API tests.
API Endpoint Integration Test Rules pattern for REST APIs. Use when writing or reviewing integration tests for HTTP endpoints to ensure correct request handling, service delegation, response serialization, and status code verification.
Internal Router pattern for REST API endpoints. Use when grouping endpoints for service-to-service communication, bypassing user authentication, or separating internal API surface from public/external endpoints.