1.7 KiB
1.7 KiB
| name | description | argument-hint |
|---|---|---|
| prime-simple | Quick context priming for Archon development - reads essential files and provides project overview | none |
Prime Context for Archon Development
You need to quickly understand the Archon V2 Beta codebase. Follow these steps:
1. Read Project Documentation
- Read
CLAUDE.mdfor development guidelines and patterns - Read
README.mdfor project overview and setup
2. Understand Project Structure
Use tree -L 2 or explore the directory structure to understand the layout:
archon-ui-main/- Frontend React applicationpython/- Backend services (server, MCP, agents)docker-compose.yml- Service orchestrationmigration/- Database setup scripts
3. Read Key Frontend Files
Read these essential files in archon-ui-main/:
src/App.tsx- Main application entry and routing- Make your own decision of how deep to go into other files
4. Read Key Backend Files
Read these essential files in python/:
src/server/main.py- FastAPI application setup- Make your own decision of how deep to go into other files
5. Review Configuration
.env.example- Required environment variablesdocker-compose.yml- Service definitions and ports- Make your own decision of how deep to go into other files
6. Provide Summary
After reading these files, explain to the user:
- Project Purpose: One sentence about what Archon does and why it exists
- Architecture: One sentence about the architecture
- Key Patterns: One sentence about key patterns
- Tech Stack: One sentence about tech stack
Remember: This is beta software focused on rapid iteration. Prioritize understanding the core functionality