HackerTrans
TopNewTrendsCommentsPastAskShowJobs

xcodevn

no profile record

Submissions

[untitled]

1 points·by xcodevn·قبل شهرين·0 comments

Auto Research Engineer

github.com
2 points·by xcodevn·قبل 3 أشهر·2 comments

Nano agent: a minimalistic Python library for building AI agents using DAGs

github.com
2 points·by xcodevn·قبل 6 أشهر·1 comments

comments

xcodevn
·قبل 3 أشهر·discuss
Install the latest claude code to use opus 4.7:

`claude install latest`
xcodevn
·قبل 3 أشهر·discuss
I have a strong feeling that this website was designed by Claude Code using the /frontend-design skill.
xcodevn
·قبل 3 أشهر·discuss
Example run: https://asciinema.org/a/udK1O06TS8f7kXNO
xcodevn
·قبل 3 أشهر·discuss
A Claude Code setup that implements ML papers from arxiv. Give it a paper, it orchestrates a team of AI agents to read the paper, plan the implementation, write the code, verify correctness, optimize performance, train, and compare results against the paper's claims.
xcodevn
·قبل 5 أشهر·discuss
The official document from Anthropic:

> Fast mode is not a different model. It uses the same Opus 4.6 with a different API configuration that prioritizes speed over cost efficiency. You get identical quality and capabilities, just faster responses.
xcodevn
·قبل 5 أشهر·discuss
They failed to grasp the very fundamental point of batching, which is sharing model weights between requests. For more context, this wasn't just one person's mistake, several AI twitter personalities proposed this 'Claude Opus fast = small batching' hypothesis. What I find funny is how confident these AI influencers were, while the people who actually work on LLM serving at frontier labs said nothing. The people who genuinely understand this and work at frontier labs stay quiet. The rest is simply noise.
xcodevn
·قبل 5 أشهر·discuss
I do think Claude Code as a tool gave Anthropic some advantages over others. They have plan mode, todolist, askUserQuestion tools, hooks, etc., which greatly extend Opus's capabilities. Agree that others (Codex, Cursor) also quickly copy these features, but this is the nature of the race, and Anthropic has to keep innovating to maintain its edge over others
xcodevn
·قبل 5 أشهر·discuss
I did something similar in Python, in case people want to see a slightly different perspective (I was aiming for a minimal agent library with built-in tools, similar to the Claude Agent SDK):

https://github.com/NTT123/nano-agent
xcodevn
·قبل 6 أشهر·discuss
For one, these models should be able to understand the physical world via images, audio, and video. I do agree that current models are quite good at coding, but that's mainly because coding is entirely text-based and easily verifiable. It's not obvious that this capability will transfer to other domains that aren't text-based and aren't as easily verifiable.
xcodevn
·قبل 6 أشهر·discuss
> we may have AI that is more capable than everyone in only 1-2 years

There's no evidence this will be the case...
xcodevn
·قبل 6 أشهر·discuss
I'm not familiar with these open-source models. My bias is that they're heavily benchmaxxing and not really helpful in practice. Can someone with a lot of experience using these, as well as Claude Opus 4.5 or Codex 5.2 models, confirm whether they're actually on the same level? Or are they not that useful in practice?

P.S. I realize Qwen3-Max-Thinking isn't actually an open-weight model (only accessible via API), but I'm still curious how it compares.
xcodevn
·قبل 6 أشهر·discuss
IIRC, the Claude Code creator mentioned that all the PRs are reviewed by humans, just like normal human PRs. So yes, humans still look at the code at the review stage. Though I still consider this to be level 3, but anyway, this is just a matter of definition.
xcodevn
·قبل 6 أشهر·discuss
I believe Anthropic is already doing Level 3 vibe coding for >90% of their code.
xcodevn
·قبل 6 أشهر·discuss
My observation is that vibe-coded applications are significantly lower quality than traditional software. Anthropic software (which they claim to be 90% vibe coded) is extremely buggy, especially the UI.
xcodevn
·قبل 6 أشهر·discuss
Over the weekend, I wrote this small Python library to teach myself the core idea behind modern agentic systems. This kind of software sits at the core of Claude Code, Codex, etc. I wanted to see if I could build it from scratch, so this is mostly educational for me.

The result is a surprisingly simple piece of software. At its core are immutable DAGs, which keep the design simple and easy to reason about.

I also added a set of built-in tools that are inspired by Claude Code's built-in tools.

A bonus point: it can also capture Claude Code auth tokens, so you can use it with your Claude Code subscription. However, there is a chance that Anthropic will ban you if they detect this, so use it at your own risk.

P.S.: One additional point I also want to mention is that Claude Code (SDK) is closed-source, so I cannot modify it for my use case or fix its buggy UI on my own. This is one of the factors for why I'm creating this library.
xcodevn
·قبل 6 أشهر·discuss
> only ~1/3 of sessions see at least a flicker.

...after many months, for such a visible bug, is such a crazy thing to say.

In case the above comes across as too hostile, to balance this, I would say thank you to the claude code team for such an amazing product!
xcodevn
·قبل 6 أشهر·discuss
I have a hypothesis: they haven't fixed this because they're using Claude Code to develop Claude Code. I'm a fan of Claude Code, but it isn't good enough to fix tricky issues like this. And because no one looks at the codebase themselves, they haven't been able to fix it after many months. Sometimes, all we need is an engineer to sit down for the weekend and fix the damn bug, not spin up 9 different Claude Agents prompted to fix itself.
xcodevn
·قبل 10 أشهر·discuss
Interesting, i can see this being very similar to Nvidia's CUTE DSL. This hints that we are converging to a (local) optimal design for Python-based DSL kernel programming.