Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/rm2thaddeus/pixel_detective/fastapi-dependency-injectiongit clone --depth 1 https://github.com/rm2thaddeus/Pixel_DetectiveWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01519 |
| Opus 5 | $0.00000 | $0.00759 |
| Sonnet 5 | $0.00000 | $0.00304 |
| Haiku 4.5 | $0.00000 | $0.00152 |
Grade A, and why
fastapi-dependency-injection scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FastAPI Dependency Injection & Architecture Rules
🚨 CRITICAL: Prevent Circular Import Dependencies
Sprint 10 suffered from circular import issues between main.py and router files. ALWAYS use dependency injection.
✅ MANDATORY PATTERN: Dependency Injection
1. Dependencies Module Setup
# backend/dependencies.py
from qdrant_client import QdrantClient
from sentence_transformers import SentenceTransformer
class AppState:
"""Centralized application state container."""
def __init__(self):
self.qdrant_client: QdrantClient | None = None
self.ml_model: SentenceTransformer | None = None
self.active_collection: str | None = None
# Global instance - safe because it's explicitly typed
app_state = AppState()
# Dependency provider functions
def get_qdrant_client() -> QdrantClient:
"""Dependency function to get the initialized Qdrant client."""
if app_state.qdrant_client is None:
raise RuntimeError("Qdrant client has not been initialized.")
return app_state.qdrant_client
def get_ml_model() -> SentenceTransformer:
"""Dependency function to get the initialized ML model."""
if app_state.ml_model is None:
raise RuntimeError("ML model has not been initialized.")
return app_state.ml_model
def get_active_collection() -> str:
"""Dependency function to get the currently active collection name."""
if app_state.active_collection is None:
return "default_collection" # Or raise HTTPException
return app_state.active_collection
2. Main App Initialization
# backend/main.py
from contextlib import asynccontextmanager
from fastapi import FastAPI
from .dependencies import app_state
from .routers import search, images, collections
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Application lifespan manager for startup/shutdown."""
# --- Startup ---
print("INFO: Starting up services...")
# Initialize services into app_state
app_state.qdrant_client = QdrantClient(host="localhost", port=6333)
app_state.ml_model = SentenceTransformer("clip-ViT-B-32")
app_state.active_collection = "default_collection"
print("INFO: Startup complete.")
yield
# --- Shutdown ---
print("INFO: Shutting down services...")
# Create app with lifespan
app = FastAPI(lifespan=lifespan)
# Include routers - NO circular imports
app.include_router(search.router)
app.include_router(images.router)
app.include_router(collections.router)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 219 lines · 0 tokens per session scan A fe95237184d3
fastapi-dependency-injection is a cursor rule published in the GitHub repository rm2thaddeus/Pixel_Detective (21 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,519 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
test-plan
Plan Katalon True Platform/TestOps testing for a release, sprint, or feature. Use when you need to translate quality goals into scope, prioritize testing by requirement coverage and risk, decide what to test first, or build the executable plan structure (folders, suites, and sprint/release association) that stands in…
cli-forge-schema
Generate GitHub-compatible Mermaid diagrams — auto-picks diagram type, splits complex ones, converts tables/kanban/PERT.
STAGE_S5_TEST_POINTS
AIDocxWorkFlow Stage 5 — 测试点生成(独立阶段).
sprint-planning
BMAD BMM Agent: sprint-planning.
head-of-product
Head of Product persona — planning, user stories, UX decisions, scope guardian. Use when discussing product strategy, PRDs, user research, feature proposals, or backlog prioritization.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.