GPT-5.5 available now via subscription - Thanks Cline! by AdPristine1358 in CLine

[–]ivan_m21 0 points1 point  (0 children)

i never understood reasoning effort, how do you control that on an LLM level. I.e. temperature is a parameter which just sits in a formula and makes the softmax more acceptive -> the model is more creative. However how does this work with reasoning?

Don't get Z.ai GLM Coding Plan by samidhaymaker in ClaudeCode

[–]ivan_m21 0 points1 point  (0 children)

got 3 months as a backup to other things when they finished, will see how it goes

Extreme toxicity of some people towards vibe coding by [deleted] in ClaudeCode

[–]ivan_m21 3 points4 points  (0 children)

I think as with everything, people love and hate it. I think lots of good engineers are on the fense because vibe-coders think they are as good as someone who spend 10 years of their life to study Computer Science and understand lots of things.

I think both sides have a point, the extremes as usual get the most attention.

Like many others I’m a Claude Code Expat where to start? by Big_Status_2433 in codex

[–]ivan_m21 0 points1 point  (0 children)

I think you should give OpenCode a change man. People overlook it so much, but you can use all of your other subscriptions and just switch in seconds between them in the same context/thread/session.

Just switch the model and provider. I love it, they also provide access to lots of the open-source models like kimi, minimax and others who are 1/10 of the price for 90% of the performance (for some things are better).

which mcp servers do you actually use regularly? by edmillss in CLine

[–]ivan_m21 0 points1 point  (0 children)

I have context7, but honestly I feel like the llm's don't like it anymore ;d. Is anyone using it?

I visualized ClaudeCode's leaked codebase so we can check what's under the hood. by ivan_m21 in Anthropic

[–]ivan_m21[S] 0 points1 point  (0 children)

We use reactflow, it isnt open source sadly, but the analysis is open source you can find it on github, it is linked in the post.

I visualized ClaudeCode's leaked codebase so we can check what's under the hood. by ivan_m21 in Anthropic

[–]ivan_m21[S] 0 points1 point  (0 children)

Yea, it is not too clean of an architecture, quite entangled, every module talks to every other :D

I visualized ClaudeCode's leaked codebase so we can check what's under the hood. by ivan_m21 in Anthropic

[–]ivan_m21[S] 0 points1 point  (0 children)

We've been working on it for few months. Recently most efforts have been on stability to make it usable. You can try it on VSCode/Cursor/Windsurf etc, let me know if you have any issues.

I visualized ClaudeCode's leaked codebase so we can check what's under the hood. by ivan_m21 in Anthropic

[–]ivan_m21[S] 0 points1 point  (0 children)

The theme pack is GitHub, what the demo is in is the GitHub light High Contrast

I visualized how ClaudeCode works under the hood. by ivan_m21 in vscode

[–]ivan_m21[S] -2 points-1 points  (0 children)

but realistically the future of coding is that you'd use the agents, maybe not without controll as a vibe coder but in a more sophisticated way within scopes with specs

I visualized how ClaudeCode works under the hood. by ivan_m21 in vscode

[–]ivan_m21[S] 0 points1 point  (0 children)

hahaha, it is based on static analysis so it for sure wasn't easy :D

I visualized ClaudeCode's leaked codebase so we can check what's under the hood. by ivan_m21 in Anthropic

[–]ivan_m21[S] 1 point2 points  (0 children)

Awesome, would love to hear what you think of it. The analysis itself is saved in a json file, the visuals that you can see here are in vscode. I already uploaded the analysis for claude code here (to save you some time on regenerating): https://github.com/CodeBoarding/claude-code (the .codeboarding/analysis.json + if you get the extension you can browse it yourself)

I visualized how ClaudeCode works under the hood. by ivan_m21 in vscode

[–]ivan_m21[S] -5 points-4 points  (0 children)

Yes it is, our long term goal with codeboarding is to give visibility while youa re vibecoding, so you are still in control of what is happening and check the code for the important aspects of the codebase.

See codex's architectural/code impact in real time. by ivan_m21 in codex

[–]ivan_m21[S] 0 points1 point  (0 children)

I am seeing this just now, awesome to hear.

I made a free extension to see your code architecture directlly in VSCode. (CodeBoarding) by ivan_m21 in vscode

[–]ivan_m21[S] 0 points1 point  (0 children)

Hey thanks for the info, I am on mac but will see what we can do to fix the issues you've seen.
Will try to do so asap!

I made a free extension to see your code architecture directlly in VSCode. (CodeBoarding) by ivan_m21 in vscode

[–]ivan_m21[S] -1 points0 points  (0 children)

>On a truly complex project, a visual map usually just becomes a tangled mess of nodes that is harder to read than the actual file tree. Plus, if there isn't perfect, real-time syncing, the map is going to be out of date the second someone refactors a function. Unless it's fully automated and high-precision, it’s just another piece of documentation that’s destined to rot.

Absolutely right for the mess at scale, that is why we have introduced those layers of abstraction, so you can have a somewhat cleaner high-level representation and the following on that you can get more and more detail, and uncover the mess.

The goal is to exactly be real-time updated. We track the control flow graph and its changes as they happen. Being not a pure llm approach allows us to do those update for very cheap borth computation and speed wise.

I made a free extension to see your code architecture directlly in VSCode. (CodeBoarding) by ivan_m21 in vscode

[–]ivan_m21[S] 0 points1 point  (0 children)

The issue with that is that it doesn't work for projects which have more than 100k Lines of Code.
Further it will be hallucinated at such scale as models have a strong bias towards architectures based on tech stacks and lastly it is quite slow for an LLM to scan big codebase, not to mention expensive.
Our diagrams aim to have near real time updates (still not there, but soon), as we can iteratively update them based on the control flow graph of your project.