NewsTradingSentimentCalendarCommunityBriefing
Tech

Recreating AI coding workflows with local hardware

By Tech Desk · 2026-09-09 · 2 min read
A laptop computer connected to a local network hub
Illustration: Tradingbird

A developer demonstrates that a local Qwen model can replicate the workflow of commercial AI coding tools, offering a cost-free alternative despite slower processing speeds.

Commercial AI coding assistants like Claude Code are often viewed as indispensable tools for modern software development, but a recent report from XDA Developers highlights a viable alternative. By combining the Qwen 3.5 model with local inference software, users can create a system that performs similar tasks without sending data to external servers. This approach prioritizes privacy and cost efficiency over raw speed.

The setup described in the report uses LM Studio to host the model and Hermes Agent to execute commands. While this local configuration is not as fast or polished as proprietary cloud services, it successfully handles file inspection, code editing, and test execution. The trade-off is a slower response time and a limited context window, which restricts the complexity of tasks the model can manage simultaneously.

Local infrastructure replaces cloud dependency

The core of this workflow relies on running a 14-billion parameter version of Qwen 3.5 on a MacBook Pro with 24GB of unified memory. LM Studio loads this model and exposes it through a local API interface, eliminating the need for internet connectivity during inference. This setup allows the model to run alongside the operating system and other development tools without requiring dedicated enterprise hardware.

Hermes Agent acts as the operational layer, connecting to the local model and providing it with the necessary tools to interact with the file system. It handles specific functions such as searching for files, reading code, and running terminal commands. This separation of duties means the user is managing three distinct components: the model, the inference engine, and the agent framework, rather than relying on a single integrated product.

Performance trades speed for privacy

In practical testing, the local setup successfully identified and fixed a configuration bug by searching for relevant code, applying a patch, and running tests. When the initial fix failed, the model read the error output, adjusted the logic, and retried the process autonomously. This capability demonstrates that local models can handle iterative debugging tasks without human intervention for every step.

However, the experience is noticeably slower than using cloud-based services. Each step in the debugging process takes longer to complete, particularly when the model needs to process large files or extensive terminal outputs. The limited context window of 32,768 tokens also imposes a hard boundary on how much code and documentation the model can consider at once, which can hinder performance on larger, more complex projects.

Safety controls mitigate local risks

Running an AI agent directly on a personal computer introduces security risks if the model makes incorrect edits. To mitigate this, the developer enabled command approval modes and restricted file access to specific project directories. Working on a separate Git branch ensures that any failed experiments do not corrupt the main codebase, providing a safety net for the autonomous actions of the agent.

Based on reporting by XDA Developers, compiled by the Tradingbird desk.

Read next

More in Tech

More from the Tech desk

All desk stories