Generate a complete FastAPI project structure with best practices
/plugin marketplace add Lobbi-Docs/claude/plugin install fastapi-backend@claude-orchestration[project_name] [--template full|minimal|api-only] [--auth] [--db mongo]# Scaffold FastAPI Project Generate a complete FastAPI project with best practices, including directory structure, configuration, and boilerplate code. ## Project Templates ### Full Template (Recommended) Complete setup with all features: API, database, auth, caching, tasks, tests. ### Minimal Template Basic API setup with essential configuration only. ### API-Only Template Pure API without database or authentication. ## Full Project Structure ## Core Files ### main.py ### config.py ### database.py ### security.py ## Configuration Files ### pyproject.toml ### requi...