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/jondoescoding/jondoescoding-coding-rules/fastapi_project_structure_guidegit clone --depth 1 https://github.com/jondoescoding/jondoescoding-coding-rulesWhat 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.00013 | $0.01389 |
| Opus 5 | $0.00006 | $0.00694 |
| Sonnet 5 | $0.00003 | $0.00278 |
| Haiku 4.5 | $0.00001 | $0.00139 |
Grade A, and why
fastapi_project_structure_guide 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 yesterday.
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 — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FastAPI Project Structure Guide
This rule provides a comprehensive outline of a well-organized FastAPI project structure optimized for AI-powered applications with LangChain integration, vector databases, and agent-based architectures.
📁 Project Root Structure
project-root/
├── backend/ # FastAPI backend application
├── frontend/ # Frontend application (Next.js/React)
├── docs/ # Project documentation
├── scripts/ # Deployment and utility scripts
├── .env # Environment variables
├── .gitignore # Git ignore patterns
├── LICENSE # Project license
└── README.md # Project overview
🚀 Backend Structure (backend/)
Core Application Files
backend/
├── src/ # Main source code directory
├── data/ # Data files, CSVs, documents
├── docs/ # Backend-specific documentation
├── logs/ # Application logs
├── scripts/ # Backend utility scripts
├── pyproject.toml # Python project configuration
├── requirements.txt # Python dependencies
├── README.md # Backend documentation
└── start.sh # Application startup script
Source Code Organization (backend/src/)
📋 Main Entry Point
main.py- FastAPI application initialization- App configuration and metadata
- CORS middleware setup
- Router registration
- Environment-based configuration
- Lifespan event handlers
🌐 API Layer (api/)
API route definitions and endpoint handlers:
{feature}_api.py- Feature-specific API routers- Request/response models validation
- Error handling and logging
- Business logic delegation to services
- OpenAPI documentation
Example structure:
# pdf_agent_api.py
from fastapi import APIRouter, HTTPException
from ..models.chatbot import RagChatRequest, ChatResponse
from ..services.pdf_agent_service import run_retrieval_agent
router = APIRouter()
@router.post("/pdf_agent", response_model=ChatResponse)
async def rag_agent_endpoint(chat_request_body: RagChatRequest):
# Endpoint implementation
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.
- yesterday First seen · 194 lines · 13 tokens per session scan A 0ed7a226e548
fastapi_project_structure_guide is a cursor rule published in the GitHub repository jondoescoding/jondoescoding-coding-rules (2 stars, last pushed 1mo ago), licensed MIT. It adds 13 tokens to every session and 1,389 once invoked, about $0.0001 per session on Opus 5. 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-31.
Other cursor rules, from other repositories
code-optimization
Guidelines for optimizing duplicate and poorly structured code.
app-router-patterns
Next.js 14+ App Router patterns — Server Components, Client Components, Route Handlers, Server Actions, and metadata API.
test-patterns
Selenium pytest test patterns — data-driven tests, fixtures, error handling, and performance checks.
testing-fundamentals
Core Cypress testing principles — selector strategy, smart waiting, and spec organization. Apply when writing or reviewing Cypress E2E tests.
new_features
Guidelines for integrating new features into the Task Master CLI.
utilities
// ✅ DO: Create focused, reusable utilities /.