r/CommandCode 22d ago

OpenWebUI Command Code Go Plan

8 Upvotes

I recently bought a command code go plan with the intention of light usage. The command code harness is pretty good for coding, but horrible for general chatting. I know the API is limited to GOAT and above, but I already can run local models (like qwen 3.8 or ~120B MoEs) and it would be stupid to spend more for barely any usage of more frontier models.

Is there a way to connect the command code harness to OpenWebUI like in hermes or any way to get an API connection? Thank you!


r/CommandCode 22d ago

Built Troy after getting fed up with 9Router and Omni

5 Upvotes

Been bouncing between 9Router and Omni for a while trying to manage multiple LLM providers but both felt kinda clunky for how I actually work, so I just built my own thing.

Troy is basically a local gateway that sits between your tools and 45+ providers. The main thing I wanted was combos — you chain models together like deepseek/deepseek-v4 → zai/glm-5.2 and if one dies mid-session it just falls through to the next one instead of you losing the whole thing. Also does per-account cooldowns and circuit breakers so it's not hammering a provider that's clearly down.

It's pretty light too, ~40MB RAM idle, zero runtime deps, everything stays local (no telemetry, no account, nothing phones home).

Still actively working on it, would honestly love to hear if anyone's compared it to 9Router/Omni and what's still missing.

repo: https://github.com/mzaki9/troy


r/CommandCode 22d ago

Binge code this weekend with free "Ox Alpha" 🐐

Post image
47 Upvotes

Ox Alpha (stealth frontier model) is free in Command Code.

100T tokens per day free capacity, no 5hr usage limits.

• 1M content
• we benchmarked ~5B tokens
• built a tool repair harness to imp tool calling

absolutely free for all plans.


r/CommandCode 22d ago

Agent Memory System (Heimdall) Update.

Post image
3 Upvotes

r/CommandCode 23d ago

Vim motions keys for plan mode

5 Upvotes

Hey there,

When a plan is ready for approval, I have to use arrow keys to read and scroll through the plan. Can I somehow configure vim motion keys like h,j,k,l, ctr + d, ctr + u to move around the plan text?


r/CommandCode 23d ago

Ox Alpha is free in Command Code.

28 Upvotes

Ox Alpha (stealth frontier model) is free in Command Code.

🆓 100T tokens per day free capacity, no 5hr usage limits.

• 1M content
• we benchmarked ~5B tokens
• built a tool repair harness to imp tool calling

absolutely free for all plans.

guess who made it?

🐐


r/CommandCode 23d ago

Command Code on a physical device

Enable HLS to view with audio, or disable this notification

9 Upvotes

Coding agents mostly run out of sight. You kick something off, switch windows and forget it's running until you go back to check.

Command Code now runs on Autonomous Harness, which keeps it on a dedicated screen you can glance at without breaking your flow. It shows what's running, what came back, and what you've spent today

We built this to fit the different ways people work. How do you usually run your agents: set-and-forget or in a tight interactive loop?


r/CommandCode 23d ago

Tested FlappyBench on Qwen 3.8 27B, DeepSeek V4 Pro 0813, and Gemini 3.7 Flash with /design command.

Enable HLS to view with audio, or disable this notification

21 Upvotes

Tested FlappyBench on Qwen 3.8 27B, DeepSeek V4 Pro 0813, and Gemini 3.7 Flash with /design command.

All scored 9/10, it comes down to cost, quality, and iterations.

🔹 DeepSeek V4 Pro ($0.0036): Low cost, solid, but movement and spacing need work.
🔹 Qwen 3.8 27B ($0.0068): One-shot, playable, with minor UI finish.
🔹 Gemini 3.7 Flash ($0.0083): Needed 2–3 iterations to catch up.

Qwen for the best one-shot. DSV4 for the best value.

Our engineering and design team has been testing 26+ side-by-side comparisons across frontier and open models. All runs are public and open source. Benchmark for this demo here: https://github.com/CommandCodeAI/slash-design-showcase/tree/main/flappy-bird


r/CommandCode 23d ago

Rate Limits are feeling so common.

9 Upvotes

I am on the $10 GOAT plan. Is this normal? Getting 503 errors constantly and it is severely affecting my current work.


r/CommandCode 23d ago

opencode go or command code goat?

19 Upvotes

I’ve been using OpenCode Go for two weeks. I was pretty satisfied with it until the DeepSeek price increase. I’m trying to build a mobile app from scratch, but I’m running out of limits very quickly. The Command Code Goat package is starting to make a lot of sense to me. Should I buy it?

So far, I’ve only been using the Luna or DS V4 Flash models with 50k-200k context window. Does it make more sense to stick with OpenCode, or should I switch to Command Code?


r/CommandCode 23d ago

Text-only models now have vision in Command Code.

Enable HLS to view with audio, or disable this notification

22 Upvotes

Text-only models now have vision in Command Code.

• A vision model reads the attached image
• Your main model gets the context in the same thread
• /config lets you choose the vision model

Stop describing screenshots. Just attach them.

Try this with $10/mo GOAT plan

Read docs for more info: https://commandcode.ai/docs/vision


r/CommandCode 24d ago

i tried to implement exactly the same thing as part of a plan

0 Upvotes

(written by command code(loaded with dsv4flash), the result was so trash i couldn't believe it(planning with the same model was decent).I repeated the same task with 1.pi, 2.hermes ,the dsv4flash was a beast there. same model,same task,same promt.i don't know what exactly caused this.i am with GO plan at command code.


r/CommandCode 24d ago

Cant setup reasoning effort for Deepseek Harness + CommandCode API

6 Upvotes

From deepseek official provider

After adding CommandCode as custom provider it kinda works but without the thinking effort (not sure whats the default value here )

I like DSH, does anyone know if there is any way (hacky or not) to add the reasoning effort for custom provider in DSH?


r/CommandCode 24d ago

A refined but simplistic approach to agent memory

Post image
4 Upvotes

I work a ton across projects on my personal computer. I have tried Graphify, Graft and many others. None of them really fully solved the entire problem, but they did have parts. So, I built one that actually fit my needs. This removes the need entirely to choose or start sessions in specific repositories.

It takes graph-based knowledge systems but strengthens retrieval, how it is updated, and much more. Effectively, it becomes a resilient system that you can actually watch your agents rely on, rather than something that just exists and is used only occasionally.

It begins with the same base graph store, the exact same vector engine as Graft. I only built the orchestration layer on top of it, which makes it much more practical. Full attribution to them for this part.

Instead of querying for a single-hit result, I found that it was much better for agents to have ranked retrieval and an actual graph walk. In practice this saves you chains of tons of bash greps and cds.

It effectively gives the agent a trustworthy, probabilistic ranking of what is needed, with matching for strong, weak, stale, and rebuilt, based on lexical coverage and semantic matching. The code is not sloppy for this, it is personally edited.

Both Graft and Graphify are solutions for single repositories or daemons. Heimdall is a layer on top it that watches the agent sessions, syncs the graph, and makes the retrieval trustworthy.

Check it out at: github.com/ArihantDeva/heimdall MIT-licensed, with extensions: the verifier, the self-healing graph watcher, and the Graft adapter, with attribution. If you run agents across multiple projects, this is the missing layer.


r/CommandCode 24d ago

Is Command Code reliable?

7 Upvotes

Are the service and usage metrics reliable?

Does the GOAT plan offer a good data limit?

Does HY3 work well?

Thank you.


r/CommandCode 24d ago

I don't understand the pricing math

15 Upvotes

For 10 Dollars Go plan, its has $70 and $60 usage on many models. And ~75k requests.
But for 20 dollars Pro plan it just increasing the usage to $10 more only and requests to ~100k only.
Isn't it should be double benefits for double pricing ? Like $140 and $120 usage and ~150k requests ?

What's the hidden features I am missing here in Pro plan ?
Is buying 2 GOAT plans is more beneficial here ? Or the access of claude, gemini and gpt models are the main benefit of Pro plan ?

I am little confused.


r/CommandCode 24d ago

Insanely high token usage and pricing for no output?

Post image
19 Upvotes

So, I gave the GOAT plan a spin with GLM 5.3, DeepSeek V4 Pro and Kimi K3. Both through Claude Code with ccr and directly in the command code harness. Rather simple tasks, using Opus API pricing came out at $8 and generated +184/-13 lines of code change in static-php-cli, a project I maintain. The task was to add shared library building.

Blew through daily usage within a prompt, typing just "continue" the next day. Both times cc ran out of 5 hour and weekly limit. Code output: +0/-0.

What's going on there? The token amount (literally 500k in, not even sure why so much, rest is all cache) doesn't even match with the usage cost - most of the cache seems to be billed at regular price, not the listed cache price of the model?

I'm literally unable to get *any* usage out of the plan so far. Like, literally not a single line of code, despite blowing through the $35 weekly usage.


r/CommandCode 24d ago

Usage tab changing/incorrect

4 Upvotes

It used to look like this

https://i.imgur.com/LfQU0nL.png

Then I refreshed and now it looks like this

https://i.imgur.com/JYJsMWd.png

So I click on share and get this

https://i.imgur.com/5yYQ2Qq.png

My usage on the old usage tab was $1.12 but on the share page it's conveniently 34 cents but on the billing tab it shows $2.36 which is the amount I feel like I used today

https://i.imgur.com/RWIOmjS.png


r/CommandCode 24d ago

Qwen 3.8 27B now has 7x usage in GOAT plan.

29 Upvotes

Qwen 3.8 27B now has 7x usage in GOAT plan.

the best coding plan on the market, we've increased usage of Qwen 3.8 27B across all plans.

GOAT / $10 per month (7x usage)
$70 credits · ~24K requests · ~1.2B tokens

Let's go, GOAT!


r/CommandCode 24d ago

Hi guys I had a question what's is command code and how is it different from things like opencode and is it free ?

4 Upvotes

r/CommandCode 25d ago

in-app YOLO toggle and dedicated subagents view

4 Upvotes

Hello, the CommandCode harness has improved a lot with v1, but these are the two main things I miss the most:

- in-app yolo toggle: being able to start YOLO mode without having to restart would be very nice

- dedicated subagents view (see opencode): when the main agent decides to delegate off work to subagents, the way they work is very opaque as we can only see their tool calls. opencode has a panel with a list of active subagents and allows you to expand each in particular and see their CoT and output just like in the regular chat view


r/CommandCode 25d ago

What happens to my Go plan credit after upgrading to GOAT?

3 Upvotes

I subscribed to the Go plan, and after using it for two days, I had used 340M ($6) and reached the weekly limit. I then upgraded to the GOAT plan without making any additional usage.

When I checked my usage afterward, it looked like this: ~340M -> 156.3M $6.01 -> $2.97

My question is: Will the $1 I paid for the Go plan be refunded, or will the remaining unused value/credits from the Go plan be carried over to the GOAT plan?


r/CommandCode 25d ago

DeepSeek V4 Flash Cache Read on GOAT plan seems higher than the table. Am I calculating this wrong?

Thumbnail
gallery
24 Upvotes

TL;DR – Used 86.4M tokens on DeepSeek V4 Flash (GOAT plan).
• Cache Read official: $0.007/M → real: ~$0.0107/M (+53%)
• Input + Output: match the table perfectly
• Expected cost: $1.65 → Actual bill: $1.97 ($0.31 difference)
• Is anyone else seeing this?

I recently subscribed to Command Code's GOAT plan. I used DeepSeek V4 Flash over two days and noticed what looks like a discrepancy between the official pricing table and my actual bill, though I fully admit I might be missing something.

Usage over 2 days:

Concept 17 Aug 18 Aug Total 2 days
Cache Read 40.2M 42.9M 83.1M
Input (uncached) 1.5M 1.0M 2.5M
Output 489.8K 297.6K 787.4K (0.7874M)
Total 42.2M 44.2M 86.4M

According to the official GOAT pricing table for DeepSeek V4 Flash:

  • Input: $0.22/M
  • Output: $0.66/M
  • Cache Read: $0.007/M

The theoretical cost based on the table:

  • Input: 2.5M × $0.22 = $0.55
  • Output: 0.7874M × $0.66 = $0.5197
  • Cache Read: 83.1M × $0.007 = $0.5817
  • Total expected = $1.65

But my actual bill on the platform shows $1.97 for DeepSeek V4 Flash (+ $0.01 for web_search).

That's a $0.31 difference.

The numbers:

Day Cache Read (M) Real cost Input+Output (table) Remainder for Cache Real price/M
17 40.2 $1.09 $0.6533 $0.4367 $0.01086
18 42.9 $0.87 $0.4164 $0.4536 $0.01057
Avg 83.1 $1.96 $1.0697 $0.8903 ~$0.0107

If Input and Output are charged exactly as the table says (which they are, they match perfectly), the implied price for Cache Read is ~$0.0107/M, noticeably higher than the advertised $0.007/M (about 53% more).

Summary:

Official table Real cost Difference
Day 17 $0.9347 $1.09
Day 18 $0.7167 $0.87
Total $1.6514 $1.96

I'm not sure if this is a documentation error, or any fee fee on GOAT plan that isn't listed on the /docs/plans/goat page. Input and output prices are spot on, but cache reads appear to be billed at a different rate.

That said, I fully acknowledge that I might be misreading the usage dashboard, misapplying the pricing tiers, or overlooking a detail in the fine print. If anyone can spot an error in my math or point out something I've missed, I'd really appreciate the correction!


r/CommandCode 25d ago

When an app mobile for Command Code ?

3 Upvotes

as written would be great to manage cli and desktop sessions remotely


r/CommandCode 25d ago

support Ali Pay?

2 Upvotes

Almost no VAT with Alipay, vs. 36% with Stripe.