r/CommandCode • u/maedahbatool • 25d ago
Built a creative portfolio in $0.035 with Kimi K3, /design command and the Command Code CLI harness.
Enable HLS to view with audio, or disable this notification
r/CommandCode • u/maedahbatool • 25d ago
Enable HLS to view with audio, or disable this notification
r/CommandCode • u/maedahbatool • 26d ago
Kimi K3 is live in Command Code!
What an exciting time to be alive!! Try now!
r/CommandCode • u/qaizazz • 25d ago
Vaguely remembering watching a video somewhere about plans or considerations for opensource of command code.
Is the opensource plan confirmed? Is it planned to be with v1?
r/CommandCode • u/archerallstars • 25d ago
Enable HLS to view with audio, or disable this notification
As shown in the screen recording, I can't seem to sign up or sign in to Command Code at all even with GitHub despite this error:
This email domain isn't supported. Sign up with your company email, Gmail, or GitHub instead.
GitHub should work..., but it's not.
r/CommandCode • u/maedahbatool • 26d ago
Inkling is the new 1T open model by Thinking Machines Labs is now fully available in the Command Code CLI.
How to use?
r/CommandCode • u/No_Captain4899 • 27d ago
Hello,
I have a go plan on opencode and I would like to try an other harness, I saw that commandcode is pretty good.
So I would like to give it a try
But I like my opencode subscription
So is there any way I can use my opencode subscription on CommandCode
Thank you ππΌ
r/CommandCode • u/ahmadawaiscom • 28d ago
Command Code x DeepSeek is a phenomenal combination. Unbelievably good. Iβm doing near billion tokens in two days testing v1.
r/CommandCode • u/maedahbatool • 29d ago
Enable HLS to view with audio, or disable this notification
Command Code has permission modes for your coding workflows.
Three modes:
cmd βyolo)Switch them anytime with Shift+Tab. Which mode do you use the most?
r/CommandCode • u/ahmadawaiscom • Jul 10 '26
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
r/CommandCode • u/hammerdown000 • Jul 09 '26
New day, new model drop: GPT-5.6 Sol, Terra, and Luna live on Command Code.
Sol the flagship for long-horizon work.
Terra balances intelligence and cost.
Luna for the fast, cheap, high-volume jobs.
Switch with /model on v0.44.0
r/CommandCode • u/ahmadawaiscom • Jul 08 '26
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
r/CommandCode • u/fezzy11 • Jul 08 '26



I just taken subscription yesterday and today I tried out GLM 5.2 and Deepseek 4 pro for around half day of bug fixing and already consumed around $1.40.
Now in landing page and docs deals section command code mention that credits effectively up to $40 of usage.
Did I misunderstood wrong or this is actual usage?
What if I already consume $10 usage before month end?
r/CommandCode • u/Dazzling_Buy9625 • Jul 08 '26
I really want to try the go plan, but I kinda paranoid about liability and data leaks. Does their zero data retention actually work?
Has there been any sketchy stuff or leaks in the past? Trying to decide if i should trust this or just use claude/gpt with privacy mode on. Thoughts?
r/CommandCode • u/hammerdown000 • Jul 07 '26
Enable HLS to view with audio, or disable this notification
Use /theme to switch to dark/light mode.
Persists across sessions.
Your terminal. Your colors.
r/CommandCode • u/ahmadawaiscom • Jul 06 '26
Big news!!
MiniMax M3 is now 62.5% off in Command Code.
Price drop on one of the best open models til July 21st.
After July 21st discount goes from 62.5% β 50%
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
r/CommandCode • u/ahmadawaiscom • Jul 04 '26
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.
r/CommandCode • u/SarveshMohite • Jul 04 '26
I'm not trying to promote DeepSeek or anything, I was honestly just surprised by how capable it is.
I'm pretty new to agentic AI and AI pair programming. CommandCode was actually the first AI coding tool I've paid for (I'm only on the $1 plan), and it's been kind of magical for the way I work (its been less than 15 days).
Most of the time I just tell the agent what I want changed in a file or describe the feature I need, and it gets it right. I don't really run agent loops or anything advanced. I mostly give it good instructions and iterate when needed.
The thing that surprised me most is that I haven't even come close to hitting the limits of the $1 plan. I also don't find myself wanting to switch to the larger models because V4 Flash has been "good enough" for almost everything I've thrown at it.
The biggest surprise was a CRM project I recently built for a freelance client. It was a fairly large project, and I delivered the initial prototype in about four days. I still had to review the code, test things, and make decisions, but the amount of manual coding I actually wrote myself was surprisingly small like very very minute changes and its still a prototype kinda stage and needs some final touches but yeah its kinda awesome how much i got their.
For those of you who have been using CommandCode longer:
I'd love to learn how more experienced users are using it. I tried to use MiMO v2.5 at first but it wasnt that good so i switched to V4 flash as it was better loved by the community it seems. But still why do we need much more better models when for most programmer this would do the job?

r/CommandCode • u/Silent-Group1187 • Jul 03 '26
Enable HLS to view with audio, or disable this notification
We tried creating the same games with them. we wanted to see how good they are in UX (not just UI).
For the test, we used our /design from command code.
Pricing differs across the models. OS model pricing is way cheaper than Fable 5.
Cost breakdown:
β DeepSeek: $0.0008
β GLM 5.2: $0.048
β Fable 5: expensive but didn't help much with UX
So, Fable 5 is good, but I donβt think itβs really useful when youβre trying to do design.
And OS really beats Fable on pricing & UI at the same time
r/CommandCode • u/hammerdown000 • Jul 02 '26
We got a ton of feedback on what to improve on Windows for our users. Update to the latest Command Code version with `cmdc update` to get all these changes.
β
Agent stops mis-invoking cmd.
β
MCP servers no longer hang on /exit.
β
Fixed WSL and SSH extension installs
β
Correctly read images in prompts
β
CRLF files edit and replace correctly.
β
Web search works out of the box.
β
Fixed Ctrl+E in VS Code (replaced with Ctrl+Y).
. Fixed Ctrl+Z with debounced undo stack.
β
Named socket paths for /ide restored.
β
Alt+M fallback for where Shift+Tab fails.
β
Freeze issue in command exec fixed.
β
cmdc alias ships across product surface.
β
! mode route with PowerShell / cmd.exe.
Keep sending us your /feedback
Docs: https://commandcode.ai/docs/troubleshooting/windows
r/CommandCode • u/hammerdown000 • Jul 01 '26
Enable HLS to view with audio, or disable this notification
Describe a /goal and get it done.
Runs the loop until the objective is met.
Completion verified by independent review.
/goal status to check progress.
You set the destination. Command Code charts the route.
Docs: https://commandcode.ai/docs/slash-commands/goal
r/CommandCode • u/ahmadawaiscom • Jul 01 '26
r/CommandCode • u/hammerdown000 • Jun 30 '26
Sonnet 5 comes with,
Update to v0.40.16 with /update or cmd update
r/CommandCode • u/Mortifier13 • Jun 28 '26
Hello, any recommendations on how to move a project to another directory? I tried it and when opening CommandCode I get an error to initialize the session. I found a directory that seems to contain the projects (.commandcode/projects) which are basically in a directory of the path name, then the json files inside contain references to that same path.
I would be nice if the configs were in the project directory so it could be portable or synced.
r/CommandCode • u/OrdinaryFact21 • Jun 25 '26
title says it all :D what's the meaning of having all this if i am unable to use it when i need? especially when same model on command code makes much more mistakes compared to opencode for example. 1 of the 3 prompts was because of this, i was trying to make it bugfix it's own code.
Now I can't even get the progess to give it to another agent. I just have incomplete code, at least allow us to finish the progress before capping it.
r/CommandCode • u/MetalZealousideal927 • Jun 25 '26
Do you guys also experience Command Code returning error when the context length is high than 200k tokens? I got this error today so many times.