| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A powerful, fully local AI coding assistant tailored for software engineers. Run high-performance models (like qwen2.5-coder) directly on your hardware (optimized for NVIDIA 3060+) without data ever leaving your machine.
No API costs. No internet required. Full privacy.
graph TD
VSCode[VS Code Extension] -->|port 4000| Agent[Agent Backend]
CLI[Claude Code CLI] -->|port 3000| Proxy[Anthropic Proxy]
Windsurf[Windsurf] -->|port 3000| Proxy
subgraph "Internal Agent Tools"
Agent --> Search[searchRepo]
Agent --> Test[runTests]
Agent --> Web[webSearch/RAG]
end
Agent -->|Claude API| Proxy
Proxy -->|Ollama API| Ollama[Ollama Engine]
Ollama --> Model[qwen2.5-coder:7b]
Ensure you have Ollama installed and running.
# Pull the recommended model
ollama pull qwen2.5-coder:7bRun the automated startup script to launch the proxy and agent backend.
cd "c:\My Project\Claude_local_setup"
.\scripts\start-all.ps1Run the health check script to ensure the proxy is responding correctly.
.\scripts\test-proxy.ps1Point the CLI to your local proxy:
$env:ANTHROPIC_BASE_URL = "http://localhost:3000"
$env:ANTHROPIC_API_KEY = "local-model"
claude| Folder | Responsibility |
|---|---|
| proxy/ | Translates Anthropic API calls to Ollama-compatible requests. |
| agent-backend/ | The "brain" — handles tool use, RAG, and planning. |
| vscode-extension/ | Native VS Code integration for a seamless UI experience. |
| scripts/ | Automation scripts for lifecycle management. |
| windsurf-config/ | Configuration guides for Windsurf users. |
See project_structure.md for a deep dive into the architecture.
AGENT_PORT=4000
PROXY_BASE_URL=http://localhost:3000
WORKSPACE_ROOT=C:\My Project\Claude_local_setup
BRAVE_API_KEY= # Optional for web searchOLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=qwen2.5-coder:7b
PROXY_PORT=3000To safely shut down all backend processes, run:
.\scripts\stop-all.ps1Contributions are welcome! Please feel free to submit a Pull Request.
Built with ❤️ for the developer community.
| Back | FazBrowse Home | New Git URL |