9arm's skills repo is small, but it has one AI cost idea worth stealing 9arm, a Thai creator, released a small Claude Code skills repo called 9arm-skills that includes a cost-saving skill named qwen-agent. The skill splits work between a cheap model like Qwen for menial tasks and an expensive model for judgment calls, an idea absent from larger repos. A companion skill, qwenchance, prevents token waste by detecting loops or excessive thinking. Quick answer: 9arm-skills is a small Claude Code skills repo by 9arm, a Thai creator: 6 skills, buckets modeled on Matt Pocock's repo. The part worth taking is a skill called qwen-agent , about handing menial work to a cheap model and keeping the expensive one for judgment. It's a cost idea none of the four bigger repos I reviewed have. I have reviewed four Claude Code skill repos so far, some with hundreds of thousands of stars. This one is different. 9arm, a Thai creator, has a repo of around 2,900 stars, far smaller, just 6 skills, and its bucket layout is borrowed straight from Matt Pocock's repo. To be straight: on scale or fame, this repo isn't in the same league as the other four. But it has one skill sharp enough to be worth writing up, and it covers something the other four don't: controlling cost by choosing which model does which job . So this isn't a review of the whole set. It's taking the single most useful idea. Terms, defined once, right here: If you came here to find what skills are inside the 9arm-skills repo, here they are, read straight from the SKILL.md files, in two buckets. Engineering Productivity The two I would actually reach for are the Qwen pair, qwen-agent and qwenchance , because they are the cost idea I unpack below. The rest are solid but common enough to find elsewhere. The skill called qwen-agent does one thing, and does it well. It splits work into two piles. The repetitive, low-thought work — renaming variables across a file, writing boilerplate, summarizing long logs — gets sent to a cheap model like Qwen instead . The more expensive main model is kept for the work that genuinely needs judgment. What makes it hold up in practice is that it forces large jobs to be split into pieces that fit the cheap model's smaller context, rather than dumping the whole thing and hoping. There's a companion skill, qwenchance , that watches for the agent re-reading the same file in a loop, or thinking for a thousand words without acting , and makes it break or hand off, so tokens don't quietly burn. This lines up with a principle I hold anyway: don't push everything through the single most expensive model. Jobs aren't worth the same. Work that's easy to check and needs no interpretation should sit with the cheapest thing that can do it, a cheap model or plain code. Work that needs context or a judgment call is where you pay for the expensive model. Think this way and cost follows the value of the work instead of being flat and high across everything. And it doesn't cost you quality, because the work that needs a strong model still gets one. You just stop melting the expensive one on jobs a cheap tool handles fine. Once you want to try it for real, the first question is how 9arm actually wires this up. The answer is in qwen-agent 's own SKILL.md. The core is a command called claude-9arm , an alias of claude --model qwen3.6-35b-a3b routed through his gateway. To hand off a job, you run it headless with -p : claude-9arm -p "