Claude Sonnet 4.6 Grades Bug Reports from Four Qwen3.5 Local Models

Testing Local Models for Bug Reporting
A developer transitioning from Sonnet/Haiku to local models on a 32GB M5 MacBook Air tested four Qwen3.5 variants for bug reporting capability. Using LM Studio as the server and opencode CLI to call models, they asked each model to research and produce a bug report for an iOS game issue where equipment borders don't properly reset border color after unequipping items.
Models Tested
- Tesslate/OmniCoder-9B-GGUF Q8_0
- lmstudio-community/Qwen3.5-27B-GGUF Q4_K_M
- Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF Q4_K_M
- lmstudio-community/Qwen3.5-35B-A3B-GGUF Q4_K_M
Bug Verification
The core bug is confirmed in the source files. In EquipmentSlotNode.swift, the setEquipment method's if let c = borderColor guard silently skips assignment when nil is passed. In EquipmentNode.swift, updateEquipment(from:) passes borderColor: nil for empty slots, so border color is never reset. The documentation on setEquipment says "pass nil to keep current color" — documenting broken behavior as intentional design.
Report Grades from Claude Sonnet 4.6
bug_report_9b_omnicoder — A−
Best of the four. Proposes the cleanest, most idiomatic Swift fix: borderShape.strokeColor = borderColor ?? theme.textDisabledColor.skColor — a single line replacing the if let block with no unnecessary branching. Only report to mention additional context files (GameScene.swift, BackpackManager.swift) that are part of the triggering flow.
Gap: Like all four reports, the test code won't compile. borderShape is declared private let in EquipmentSlotNode — @testable import only exposes internal, not private. Doesn't mention the doc comment needs updating.
bug_report_27b_lmstudiocommunity — B+
Accurate diagnosis. Proposes a clean two-branch fix: if id != nil { borderShape.strokeColor = borderColor ?? theme.textDisabledColor.skColor } else { borderShape.strokeColor = theme.textDisabledColor.skColor } — more verbose than needed but correct. Correctly identifies EquipmentNode.updateEquipment as the caller and includes integration test suggestion.
Gap: Proposes test in LogicTests/EquipmentNodeTests.swift — a file that already exists and covers EquipmentNode, not EquipmentSlotNode. Same private access problem in test code.
bug_report_27b_jackrong — B−
Correct diagnosis, but weakest proposed fix. Adds reset inside the else block: borderShape.strokeColor = theme.textDisabledColor.skColor // Reset border on clear — technically correct for the specific unequip case but leaves the overall method in a confusing state. The border reset in the else block can be immediately overridden by the if let block below if someone passes id: nil, borderColor: someColor. The fix patches the specific failure without cleaning up redundancy.
The developer used default parameters except for context window size to fit as much as possible in RAM, noting that some tweaking might offer improvement. They tried some unsloth models but had limited success.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Practical Applications of OpenClaw for One-Person Company Operations
A developer shares their experience using OpenClaw for running a one-person company, noting it runs on your own machine in a VM or on a Mac Mini and connects to existing tools. The post suggests it's most applicable for repetitive tasks and small operations work rather than fully autonomous company management.

Local vLLM Hosting on 2x Modded 2080 Ti for OpenClaw: Real-World Experience
A user shares their experience impulse-buying two modded 22GB 2080 Tis from Alibaba with NVLink to host a 20-30B model for OpenClaw via vLLM, seeking advice on suitable models for coding, homelab, and RAG.

OpenClaw user automates cross-platform content formatting with custom skill
A developer built an OpenClaw skill that automatically formats raw drafts for multiple platforms, eliminating manual markdown adjustments for each site's specific requirements.

Open-Source Claude Code Skill for Family Logistics Coordination
A developer built Parent Helper, a Claude Code skill that coordinates family schedules, meal planning, and grocery optimization using a single markdown file and MCP integrations. The tool projects $4.3K/year grocery savings by splitting lists across stores based on price.