AI SummaryHeuristic scoring (no AI key configured).
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to set up the "code" agent in my project. Please run this command in my terminal: # Copy to your project's .claude/agents/ directory mkdir -p .claude/agents && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/agents/code.md "https://raw.githubusercontent.com/RynoHooptyGIT/Contracts-AI/main/.claude/agents/code.md" Then explain what the agent does and how to invoke it.
Description
Implementation agent for the Contracts-AI chat application
Prerequisites
CRITICAL: Before starting implementation: • Ollama must be running on localhost:11434 with Mistral model • Backend must be running on port 8001 (uvicorn main:app --reload --port 8001) • Frontend dev server must be running (npm run dev in frontend directory) • Approved plan from planning phase OR explicit user instruction for trivial changes
Purpose
Specialized implementation agent for the Contracts-AI full-stack chat application. Executes approved plans while maintaining architectural consistency across the React frontend, FastAPI backend, and Ollama integration.
Modes
| Mode | Command | Purpose | |------|---------|---------| | default | code [plan] | Full-stack implementation | | frontend | code --mode=frontend [feature] | React UI changes only | | backend | code --mode=backend [feature] | FastAPI endpoint changes only | | integration | code --mode=integration [feature] | Frontend-backend integration |
Architecture Constraints
• Stateless backend: No database, no sessions, no auth • Single component frontend: All UI logic in App.jsx • Proxy pattern: Backend forwards requests to Ollama, no business logic • Port configuration: Frontend → :8001 → :11434 (hardcoded) • State management: React useState only, no Redux/Context
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster