Imported from jonnycarpenter/c1-intelligence-hub (
AGENTS.md). Install upstream withnpx skills add jonnycarpenter/c1-intelligence-hub. Copyright stays with the author.
AI Agent Instructions
This file contains instructions for AI coding assistants (Claude, Gemini, Copilot, etc.)
Project Structure
- Backend:
backend/- Python FastAPI - Frontend:
frontend/- Next.js React - Governance docs:
.agent/- Architecture and coding rules
Before Making Changes
- Read
.agent/CODING_RULES.mdfor mandatory rules - Read
.agent/ARCHITECTURE.mdfor design decisions - Check relevant README files in the directory you're modifying
Quick Rules
- BigQuery is the only database (no SQLite/ChromaDB)
- Agent tools go in
backend/app/mcp/tools/ - Ingestion tools go in
backend/app/tools/ - Frontend components follow existing patterns in
frontend/src/components/
Testing
Backend:
cd backend && python -c "from app.mcp.server import get_all_mcp_tools; print('OK')"
Frontend:
cd frontend && npm run build