agent-project-guidelines-example
2
总安装量
2
周安装量
#64208
全站排名
安装命令
npx skills add https://github.com/dokhacgiakhoa/antigravity-ide --skill agent-project-guidelines-example
Agent 安装分布
amp
2
github-copilot
2
codex
2
kimi-cli
2
gemini-cli
2
cursor
2
Skill 文档
Project Guidelines Skill (Example)
This is an example of a project-specific skill. Use this as a template for your own projects.
Based on a real production application: Zenith – AI-powered customer discovery platform.
When to Use
Reference this skill when working on the specific project it’s designed for. Project skills contain:
- Architecture overview
- File structure
- Code patterns
- Testing requirements
- Deployment workflow
Architecture Overview
Tech Stack:
- Frontend: Next.js 15 (App Router), TypeScript, React
- Backend: FastAPI (Python), Pydantic models
- Database: Supabase (PostgreSQL)
- AI: Agent API with tool calling and structured output
- Deployment: Google Cloud Run
- Testing: Playwright (E2E), pytest (backend), React Testing Library
Services:
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â Frontend â
â Next.js 15 + TypeScript + TailwindCSS â
â Deployed: Vercel / Cloud Run â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â
â¼
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â Backend â
â FastAPI + Python 3.11 + Pydantic â
â Deployed: Cloud Run â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â
âââââââââââââââââ¼ââââââââââââââââ
â¼ â¼ â¼
ââââââââââââ ââââââââââââ ââââââââââââ
â Supabase â â Agent â â Redis â
â Database â â API â â Cache â
ââââââââââââ ââââââââââââ ââââââââââââ
File Structure
project/
âââ frontend/
â âââ src/
â âââ app/ # Next.js app router pages
â â âââ api/ # API routes
â â âââ (auth)/ # Auth-protected routes
â â âââ workspace/ # Main app workspace
â âââ components/ # React components
â â âââ ui/ # Base UI components
â â âââ forms/ # Form components
â â âââ layouts/ # Layout components
â âââ hooks/ # Custom React hooks
â âââ lib/ # Utilities
â âââ types/ # TypeScript definitions
â âââ config/ # Configuration
â
âââ backend/
â âââ routers/ # FastAPI route handlers
â âââ models.py # Pydantic models
â âââ main.py # FastAPI app entry
â âââ auth_system.py # Authentication
â âââ database.py # Database operations
â âââ services/ # Business logic
â âââ tests/ # pytest tests
â
âââ deploy/ # Deployment configs
âââ docs/ # Documentation
âââ scripts/ # Utility scripts