GoJo

921 posts

GoJo banner
GoJo

GoJo

@raazor5050

Enjoying the ebb and flow of life

Earth Beigetreten Haziran 2020
1.1K Folgt130 Follower
Vipul Gupta
Vipul Gupta@vipulgupta2048·
Heyyo! Looking for folks to beta test /goal that I've been working on at @CommandCodeAI, who's in?
English
10
1
15
900
GoJo
GoJo@raazor5050·
@CommandCodeAI Is there Goal or Loop command supported?
English
1
0
2
82
Command Code
Command Code@CommandCodeAI·
Resume session with ease, now in Command Code. cmd -c or cmd --resume
English
5
3
64
4.8K
Abdur Rahim
Abdur Rahim@_ARahim_·
I kept spotting typos in my Claude Code prompts after I'd sent them. So I built tuipo — Grammarly for your terminal It underlines typos as you type in any TUI — CC, Codex, Aider, vim, your shell — and never touches the app it wraps. github.com/ARahim3/tuipo @steipete @bcherny
English
86
11
407
123.9K
Noctus
Noctus@noctus91·
Got a lot of DMs and comments asking how to run @liquidai LFM2.5-8B-A1B with Hermes Agent locally, so I put together a complete step bystep guide. It covers macOS, Linux, and Windows. Hope it helps everyone who reached out.
Noctus@noctus91

x.com/i/article/2064…

English
8
30
354
42.1K
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
@theZachChen Wait till you try it in @CommandCodeAI $1 plan and $40 effective usage
Ahmad Awais@MrAhmadAwais

how did we make deepseek outperform opus 4.7? i've been thinking about why "open model bad at tool calling" is almost always a harness problem, not a model problem. context: spent the two days looking at billions of tokens in @CommandCodeAI (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 linient 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.

English
2
0
9
550
Zach Chen
Zach Chen@theZachChen·
found deepseek to be a really good explainer of concepts
English
4
1
13
1.4K
Peter Yang
Peter Yang@petergyang·
Who are some women building amazing things with AI agents right now? I’d love to follow and learn from more of them.
English
78
9
156
34.1K
GoJo
GoJo@raazor5050·
@MrAhmadAwais @CommandCodeAI Why does $1 plan still offer only $40 of Deepseek V4 Pro? I see Community Notes being posted in some of your posts saying that the pricing is outdated and should offer more Deepseek V4 pro usage.
English
1
0
1
58
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
@CommandCodeAI Now my favorite model replacing all other flash models. dang, it's supa fast!!
English
1
0
4
533
Command Code
Command Code@CommandCodeAI·
NVIDIA Nemotron 3 Ultra now available in Command Code! Strongest US open model yet! 🍀 • 1M context • 5x faster inference • 550B MoE frontier-intelligence open model DEAL 2.3x usage 🎟️ $1 Go plan gets you ~$23 usage on Nemotron Woah, it's fast x taste compliance is great!
Command Code tweet media
English
10
4
104
22.1K
GoJo
GoJo@raazor5050·
Yes Really good for local models. They have released a new model just days ago. I use CommandCode for other non coding tasks and have been seriously dabbling with local models on laptop. It would be great if you can allow some form of GGUF or local model deployment to be run via CLI!
English
1
0
0
56
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
my new fav supa fast (400tps) and cheap open model. Step 3.7 Flash just shipped in Command Code.
English
18
2
87
6.2K
GoJo
GoJo@raazor5050·
@MrAhmadAwais Is this $1 plan to remain there forever or is it just an early user plan to onboard people into the platform?
English
1
0
0
261
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
You can now get like 100x more usage on MiMo models on Command Code. MiMo-V2.5-Pro & MiMo-V2.5 are now ~99% off. Command Code $1 Go plan with $10 in credits will effectively stretches to $50 usage now. On all plans and even extra top-ups. Pick from /model and let's go!
Ahmad Awais tweet media
English
23
7
127
7K
Alex Lieberman
Alex Lieberman@businessbarista·
I want to start an AI community for executives. This will be a space for people to share killer use cases, agentic workflows/agents, post-AI org structure, AI governance, AI training/enablement, change management, and more. Comment “AI-native” if you want to join.
English
1.8K
33
1.1K
183.6K
Jatin K Malik
Jatin K Malik@jatinkrmalik·
Dev update: Friendship ended with @Zai_org coding plan❌ Now @opencode Go is my new best friend✅ --- On a serious note, the value opencode Go provides is absolutely unbeatable for state-of-the-art open source models. Kudos to @thdxr and team!! Zai got greedy and did not honor my quarterly renewal price and hiked it up! I really did enjoy using GLM 5/5.1 as well.
Jatin K Malik tweet media
San Francisco, CA 🇺🇸 English
11
2
94
74.7K
GoJo
GoJo@raazor5050·
@hansent @ChatGPTapp Could you please help with the prompt? This seems really good!
English
0
0
0
199
thomas hansen
thomas hansen@hansent·
absolutely wild. we gave up on the 2D sprites, but @ChatGPTapp Codex with GPT 5.5 is amazing at three.js. Shipping evening sessions with the kids straight to PoC at jellingstone.com if you want to try it out. A couple of hours of prompting and fun with the kids and now we have Harald Bluethooth in 3D, auto loading world sections, procedural map generation with editor, killable wolves, a ship we can sail around in, much better visuals, sound effects and NPCs with dialog!
thomas hansen tweet mediathomas hansen tweet mediathomas hansen tweet media
English
7
7
86
3.3K
GoJo
GoJo@raazor5050·
@hansent Can you please help with prompt to make it?
English
2
0
0
34
thomas hansen
thomas hansen@hansent·
ok. GPT-5.5 is super fun for makig games. only a few prompts in and the kids and I already having a blast discussing potential game mechanics while codex is working on actual sprites even though it already look s kind of cool with placeholder tiles
thomas hansen tweet media
English
1
0
5
215
GoJo
GoJo@raazor5050·
@akiraxtwo Can you help with workflow? Need one for my project
English
0
0
0
146
Akiraxtwo Super
Akiraxtwo Super@akiraxtwo·
Built with GPT-5.5: a single-file Three.js voxel art scene you can open directly in Chrome. A colorful pagoda garden with cherry blossoms, koi pond, red bridge, torii gate, stone lanterns, bamboo, drifting petals, and lots of tiny voxel details. #GPT55 #ThreeJS #VoxelArt #WebGL #AIart️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️
English
6
9
95
5.8K
GoJo
GoJo@raazor5050·
@akiraxtwo Can you help with prompts please? Or workflow
English
1
0
1
728
Akiraxtwo Super
Akiraxtwo Super@akiraxtwo·
Built with GPT-5.5: a single-file Three.js voxel action-adventure scene. This version adds stronger physics-style effects: inertia-driven movement, jump and dodge-roll dust, motion trails, hit stop, camera shake, knockback, launch effects, falling objects, and voxel debris with gravity, bounce, and spin. I also added a musou-style crowd combat system: enemies chase the player, and the player can clear groups with normal attacks or a right-click spinning slash. Enemy count is adjustable with a slider, now capped at 1000. #GPT55 #ThreeJS #VoxelArt #WebGL #AI #GameDev
English
13
44
468
33.1K
GoJo
GoJo@raazor5050·
@pranaykotas You can use Kokorro TTS too for free
English
0
0
1
70
Pranay Kotasthane
Pranay Kotasthane@pranaykotas·
New small project: Turn a non-fiction epub or pdf into a 35–45 minute podcast episode and publish it to a private RSS feed you can subscribe to from any podcast app. Code here: github.com/pranaykotas/bo…
English
5
5
76
3.6K
Gregory Wieber
Gregory Wieber@dreamwieber·
@raazor5050 @playcanvas Try doing what I did here and ask the models to get it set up for you! I've done it manually in the past, but you'll likely run into a bunch of questions that it can walk you through.
English
1
0
0
38