From context-engine
Python backend patterns - FastAPI, Django, Flask, project structure, async. Auto-loaded when working with Python backend files.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
- Pydantic models for all request/response schemas (never raw dicts)
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
async def for I/O-bound endpoints, regular def for CPU-boundselect_related/prefetch_related to prevent N+1 queriescreate_app())app/
api/ Route definitions
models/ Database models/schemas
services/ Business logic (no HTTP concerns)
repositories/ Data access layer
schemas/ Pydantic/serializer models
utils/ Shared utilities
config.py Settings from environment
tests/ Mirror app/ structure
async on I/O endpoints (blocks the event loop)except: catching everything including KeyboardInterrupt