▲ 16 r/CommandCode+2 crossposts

Command Code GOAT ten / mo has the best value and usage of DeepSeek now, 60 Flash, 20 Pro, 70 on several models GLM/Hy3

First things first: your usage credits are not changing.

DeepSeek officially raised their prices today, so we've updated our limits and requests accordingly.

Working with many providers to bring you better deals, as one of the largest DeepSeek and open models coding agent. 12T tokens scale.

Beat DeepSeek prices?

We’re hitting this problem in many ways, with solutions like phenomenal harness engineering, free tool repairs, 98%+ cache-hit rates, and free auto plan credits with best subscription plans on the market.

Official announcement:
https://x.com/CommandCodeAI/status/2089057372413337670

Providers? Come help:
https://x.com/MrAhmadAwais/status/2088724056321532054

reddit.com
u/ahmadawaiscom — 3 days ago
▲ 24 r/QwenAI+2 crossposts

Qwen3.7 Flash is now live in Command Code.

Qwen 3.7 Flash is now live in Command Code.

A vision language reasoning model for multimodal agents, visual coding, search and computer interaction.

  • 1M context window
  • Available on all plans (Go, Pro, Max, Team).

Pricing is tiered. For ≤ 32K it's as low as:

  • Input $0.03 Output $0.13
  • Cache read/write: $0.006/$0.038

DeepSeek v4 flash finally has some competition.

// Capabilities include: Text input . Vision . Reasoning

Try now! $ cmd --model qwen/qwen3.7-flash

Upgrade to latest: $ cmd --update

u/ahmadawaiscom — 22 days ago
▲ 448 r/CommandCode+1 crossposts

Kimi K3 vs GPT-5.6 Sol vs Fable 5: Three top-tier models. Same /design prompt. In Command Code

Kimi K3 vs GPT-5.6 Sol vs Fable 5

Three top-tier models. Same /design prompt across all.

Parameters reviewed:
Pace, design sense, gameplay feel

Result:
Kimi K3 nails the design sense and knows exactly what to add in-game. Pace and gameplay held up well.

Fable 5 and GPT-5.6 Sol both play too fast, video isn't sped up.

Ranking (DX, Features & Cost):

  • Kimi K3: 9.5/10 · $0.030
  • Fable 5: 7.5/10 · $0.38
  • GPT-5.6 Sol: 7/10 · $0.11
u/ahmadawaiscom — 1 month ago
▲ 38 r/OpenModels+2 crossposts

Kimi K3 is now live in Command Code! One of the most awaited flagship model from Moonshot AI

Kimi K3 is live in Command Code!

  • First ~3T scale open model
  • Most capable open model ever
  • It's Fable/Sol class open model beating Opus 4.8
  • 1M Context · In $3/M Out $15/M Cache read $0.3/M

What an exciting time to be alive!! Try now!

u/ahmadawaiscom — 1 month ago
▲ 23 r/gameai+2 crossposts

Grok 4.5 is beating Fable 5 and GPT-5.5 in game build/run tests!!

Fable 5 vs Grok 4.5 vs GPT 5.5

We put three top-tier models to build a same game challenge.

Used Command Code /design, and the exact same prompt.

Result:

Grok 4.5 genuinely plays like a polished mobile game.

Fable 5 and GPT 5.5 feel too fast. Everything feels rushed, lacks finish.

Ranking based on DX & Features:

→ Grok 4.5: 9/10

→ Fable 5: 7.5/10

→ GPT 5.5: 7/10

x.com
u/ahmadawaiscom — 1 month ago
▲ 38 r/CommandCode+3 crossposts

Tencent Hy3 model is now available for FREE in Command Code

Hy3 model is now available for free in Command Code.

Super nice open model, Apache 2.0 licensed, hosted in the US.

Available on plans. Till capacity lasts. We just 4x'd the capacity btw. 💙

LIVE NOW

🔹cmd update or npm i -g command-code@latest

🔹Run `cmd` and `/model` select Tencent Hy3 (FREE)

Announcement: https://x.com/CommandCodeAI/status/2074920358180950279

u/ahmadawaiscom — 1 month ago
▲ 47 r/CommandCode+1 crossposts

MiniMax M3 has the best price in Command Code!!

Big news!!

MiniMax M3 is now 62.5% off in Command Code.
Permanent price drop on one of the best open models.

LIVE NOW
Input $0.225/M
Output $0.90/M
Cache Read $0.045/M
1M context (deal pricing on context ≤ 512K)

HOW
$ npm i -g command-code
$ cmd /model MiniMax M3

WHO
For all subscriptions (Go/Pro/Max), PAYG extra credits, and on API Provider.

Announcement
https://x.com/CommandCodeAI/status/2074147114272387577

Discord: https://commandcode.ai/discord

u/ahmadawaiscom — 1 month ago
▲ 68 r/CommandCode+3 crossposts

how did we make deepseek outperform opus [harness eng deep dive]

how did we make deepseek outperform opus?

i've been thinking about why "open model bad at tool calling" is almost always a harness problem, not a model problem.

first posted on X (1.7M views)
full writeup: https://x.com/MrAhmadAwais/status/2050956678502420612

video version (more detailed): https://www.youtube.com/watch?v=f61DCDwvFis

context: spent the two days looking at billions of tokens in Command Code (tb open source ai cli) using deepseek. I ended up writing a tool-input repair layer. the trigger was watching deepseek-flash fail on the simplest /review run, every shellCommand and readFile call bouncing back with a raw zod issues blob, the model unable to recover because the error wasn't in a form it could read. by the end deepseek v4 pro was beating opus 4.7 6/10 times on our internal evals.

a few things i learned that feel general:

1/ the failure modes aren't random they're a small finite compositional set.

across deepseek-flash, deepseek v4 pro, glm, qwen, the same four mistakes repeat almost exactly:

- sending `null` for an optional field instead of omitting it

- emitting `["a","b"]` as a json *string* instead of an actual array

- wrapping a single arg in `{}` where the schema expected an array (an "empty placeholder")

- passing a bare string where an array was expected (`"foo"` instead of `["foo"]`)

four repairs, ~30-100 lines each, ordered carefully (json-array-parse must run before bare-string-wrap or `'["a","b"]'` becomes `['["a","b"]']`). that is the whole catalogue. when i hear "this open source model can't do tool calls" i now assume one of those four, and so far that's been right ~90% of the time.

2/ the funniest failure mode is also the most revealing.

deepseek-flash, when asked to edit or write a file, sometimes emits the path as a *markdown auto-link*:

filePath: "/Users/x/proj/[notes.md](http://notes. md)"

our writeFile tool obediently trued creating files literally named `[notes.md](http://notes .md)` until we caught it. this is not a hallucination. it's the post-training chat distribution leaking through the tool boundary the model has been rewarded for auto-linking in conversational output, and is applying that prior in a context where it makes no sense. the fix is two regex lines that unwrap only the degenerate case where link text equals url-without-protocol real markdown like `[click](https://x .com)` passes through untouched.

this is also conditioning of their own tools during RL which were different from all other tools we write and ofc can't predict.

"tool confusion" is a more useful frame than "capability gap." the model knows how to format a path. it just hasn't been told clearly enough that this path is going to fopen, not into a chat bubble. so we encode that hint at the schema level `pathString()` instead of `z.string()` and the leak is plugged for every path field at once.

3/ the design choice that mattered was inverting preprocess-then-validate to validate-then-repair.

my first attempt was the obvious one: a preprocessing pass that normalized inputs (strip nulls, parse stringified arrays, etc.) before zod ever saw them. it broke immediately, writeFile content that *happened* to be json-shaped got rewritten before it hit disk. silent corruption, easy to miss in a smoke test.

then i made it less greedy

- parse the input as-is. if it succeeds, ship it. valid inputs are never touched.

- on failure, walk the validator's own issue list. for each issue path, try the four repairs in order until one applies.

- parse again. on success, log `tool_input_repaired:${toolName}`. on failure, log `tool_input_invalid:${toolName}` and return a model-readable retry message.

the structural insight here is: when you preprocess, you encode a prior about what's broken. when you let the validator complain first, the schema is the prior, and you only spend repair budget at the exact paths the schema actually disagreed at. the validator is doing the work of localizing the bug for you. it's the same shape as cheap-then-careful everywhere else try the fast path, fall back on evidence.

(this also gives you per-tool telemetry for free. you can watch repair rates per (model, tool) and notice when a model regresses on a specific contract before users do.)

4/ shape invariants and relational invariants need different fixes.

the four repairs above all handle shape problems wrong type, missing key, wrong container. but read_file had a *relational* invariant: "if you provide offset, you must also provide limit, and vice versa." deepseek kept calling `readFile({ absolutePath, limit: 30 })` and getting an `ERROR:` back. you can't fix this with input repair, because each field is independently valid the bug is in the relationship between them.

so i taught the function the model's intent instead. `limit` alone → `offset = 0`. `offset` alone → `limit = 2000` (matches common read tool ops default). then surfaced the decision back to the model in the result:

"Note: limit was not provided; defaulted to 2000 lines. To read more or fewer lines, retry with both offset and limit."

no `Error:` prefix, so the tui doesn't paint it red. the model sees what we picked and can self-correct on the next turn if our guess was wrong. transparency over silent magic wins big.

repair where you can. extend semantics where you can't. surface the choice either way.

zoom out:

a lot of what looks like model capability is actually contract design. a strict schema is a choice with a cost it filters out noise, but it also filters out recoverable noise from any model that hasn't memorized the exact json contract you happened to pick. the largest commercial models eat that cost invisibly and are lenient on tool calling because they've seen enough of every contract during pretraining; open models pay it loudly and get dismissed for it.

the harness is where you mediate between distributions. four small repairs (i'm sure more to follow as we have three more merging today), two regex lines for auto-links, one relational default, one prefix change. the model didn't change. the contract got more forgiving in exactly the places it needed to be.

deepseek v4 pro now beats opus 4.7 6/10 times on our internal evals.

imo "skill issue" applies to the harness more often than the model.

reddit.com
u/ahmadawaiscom — 1 month ago
▲ 34 r/CommandCode+1 crossposts

Why pay 9-14x more for Claude Sonnet 5 when you have GLM 5.2 in Command Code?

https://preview.redd.it/sg4aqfk2hjah1.png?width=1672&format=png&auto=webp&s=46347a5a571df28686d1548b85ff05627d08163f

Why pay more for almost the same level model?

GLM 5.2 is 9x cheaper than Sonnet 5 now.

GLM 5.2 will be 14x cheaper than Sonnet 5 in Sep.

For 1K requests, I did the math with Command Code.

It's $15 vs $138 now vs $208 later.

Open models are going to win!

reddit.com
u/ahmadawaiscom — 2 months ago
▲ 4 r/livesoundadvice+2 crossposts

Looking for pro live stream tuning A/V setup help in Vancouver

Hi folks, I'm in Vancouver and looking for someone with professional audio/video experience to help optimize my live streaming and podcast setup.

I've been streaming and podcasting for a while and have invested in decent equipment, but I know I'm not getting the most out of it. Specifically, I need help with:

  • Audio optimization - making sure my vocal mic sounds professional and is properly balanced with my setup
  • Camera setup - getting the best video quality and settings for live streams
  • Overall A/V workflow - making sure everything works smoothly together

I have a professional-grade setup including a dynamic microphone Shure SM7B, audio interface, preamp DBX 286s, full-frame mirrorless camera Sony Alpha 7C with lenses, lighting, and a MacBook Pro Max.

If you have experience with professional streaming/podcast A/V setups and can help me level up my audio and video quality, I'd love to chat. Happy to pay for consulting/setup help.

Thanks!

reddit.com
u/ahmadawaiscom — 2 months ago
▲ 312 r/CommandCode+2 crossposts

599.5M tokens for less than 1$

599.5M tokens for 1$ plan using deepseek v4 pro

had i used frontier models, this would cost around:
- Claude Opus 4.8 - $3,165
- GPT-5.5 - $3,207

lookin at it rn, this is srsly crazy savings...

is coding basically free now?

u/ServeLegal1269 — 2 months ago
▲ 81 r/CommandCode+1 crossposts

Has Anyone Tried CommandCode's New $1/Month GO Plan?

For $1/month (+ processing fees), it includes:

$10 in credits

~15K requests

Access to the taste-1 model

~$40 worth of DeepSeek V4 Pro usage

~$20 worth of Qwen 3.7 Max usage

Up to 99% off MiMo V2.5

Basic analytics and Discord support

On paper, it seems almost too good to be true for the price, especially if you're experimenting with coding agents or AI workflows.

A few questions:

How does the actual usage compare to the advertised limits?

Are the models fast and reliable?

Any hidden restrictions or rate limits?

Would you recommend it over alternatives like OpenRouter or other low-cost AI platforms?

Would love to hear real-world experiences before giving it a try.

u/SelectionCalm70 — 2 months ago
▲ 561 r/CommandCode+1 crossposts

~390M tokens for 64 cents

it says 6.46 dollars, but in reality it's 64 cents.

i paid for 1$ month go plan on commandcode, i got 10$ credit and that 4x for deepseek v4 pro.

i built an entire android app.

i hope this dream doesnt come to an end

u/ServeLegal1269 — 3 months ago
▲ 12 r/CommandCode+1 crossposts

Hey everyone! I built a pi custom provider for Command Code. The main draw: DeepSeek V4 Pro and Flash at 75% off — Command Code gives 4× usage on both DeepSeek models at no extra cost.

  • /model deepseek/deepseek-v4-pro or /model deepseek/deepseek-v4-flash and you're running
  • Browser /login — select "Command Code", authenticate, key auto-stored
  • You get $10 credits when you invest $1 :)

Disclaimer: This is an unofficial, community-maintained package. I am not affiliated with, endorsed by, or connected to Command Code in any way. This provider simply forwards requests to the public Command Code API using your own API key.

Install

pi install pi-commandcode-provider
/reload

Then /login → select "Command Code".

Source: github.com/patlux/pi-commandcode-provider

Feedback welcome!

u/ahmadawaiscom — 3 months ago

Hi folks, I’ve started live streaming and recording videos. I’m super technical EECS but not an AV Engineer.

I have got Shure SM7B, dbx286s, focusrite, and Somy A7C. But something is off. No matter how much I try the audio isn’t as food as it could be.

I need some AV help, someone who knows what they are doing, have been love streaming, lives in Vancouver to come and help me with this.

How should I go about finding someone to help with this?

reddit.com
u/ahmadawaiscom — 4 months ago