-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack.yaml
More file actions
28 lines (28 loc) · 775 Bytes
/
pack.yaml
File metadata and controls
28 lines (28 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: coding/python-fastapi
version: 1.0.0
description: Python + FastAPI conventions, patterns, and guardrails for AI coding agents
author: stackmemory
license: MIT
runtime:
type: local
ingestion:
sources: []
ontology:
entities:
- endpoint
- model
- schema
- dependency
- middleware
relations:
- handles
- validates
- depends-on
mcp:
tools: []
examples:
- input: "Create a CRUD API endpoint"
output: "Use Pydantic models for request/response, dependency injection for DB session, proper HTTP status codes, async handlers"
- input: "How should I structure a FastAPI project?"
output: "app/ with routers/, models/, schemas/, dependencies/, core/ (config, security). Use APIRouter per domain."
instructions: instructions.md