Qwen3.6:27b + Custom Go Agent: A Local Alternative to Claude Code

A developer (codehamr) who runs a local LLM integration business describes experimenting with local models as a fallback for Claude Code. They report that Qwen3.6:27b at Q8 on an RTX 6000 with 96GB and 128k context delivers a similar coding experience to Claude Code, and note that a consumer RTX 5090 with 32GB at Q4_M can achieve comparable results.
For the agent layer, they built a minimal, single Go binary named codehamr (MIT open source) — no plugins, no MCP, no themes. The agent handles search, dependencies, and file work through bash on demand. The repo is available at: https://github.com/codehamr/codehamr
Key Details
- Model: Qwen3.6:27b at Q8 quantisation, running on RTX 6000 (96GB) with 128k context — overkill for a 30B model.
- Consumer alternative: RTX 5090 (32GB) at Q4_M should give a similar coding experience with good prompting discipline.
- Agent build: Custom Go binary — minimal, no plugins, no MCP. Uses bash for search, dependencies, file operations.
- License: MIT open source, available for fork or ignore.
The developer emphasizes that every step toward local LLMs reduces dependency on cloud tools. This setup, combined with disciplined prompting, is the first local configuration where they don't miss Claude Code.
📖 Read the full source: r/LocalLLaMA
👀 See Also

ConnectSafely AI MCP Server Links LinkedIn to Claude for Direct Control
ConnectSafely AI provides an MCP server that connects LinkedIn directly to Claude, allowing users to send messages, search for people, check profile visitors, and track conversations through prompts without switching tabs.

Fable 5 in Claude Code: Day One Cost Analysis — $210 API-equivalent, $0 Paid
A developer switched to claude-fable-5 in Claude Code and measured token usage across 742 replies. API-equivalent cost: $210.15. Actual paid: $0 during the plan window until June 22.

Paseo: Open-Source Interface for Claude Code, Codex, Copilot, OpenCode, and Pi Agents
Paseo is a self-hosted interface that runs Claude Code, Codex, Copilot, OpenCode, and Pi agents in parallel. It offers voice control, cross-device access, and a CLI. No telemetry, no forced login.

LLMock: HTTP-based mocking server for deterministic LLM testing across processes
LLMock is a real HTTP server that mocks OpenAI, Claude, and Gemini APIs, allowing developers to run deterministic tests across multiple processes without hitting real APIs. It supports SSE streaming, tool calls, predicate routing, and request journaling with zero dependencies.