Viewing profile — staticvar
staticvar
HN member- Joined
- Tue, Feb 25, 2014, 7:27 PM UTC
- HN karma
- 329
- Public activity
- 146 items
- HN profile
- View on Hacker News ↗
About staticvar
No profile information was provided.
Recent public activity
-
comment
Comment #49062588
I'm not sure that AI helps us with that last 1%. Just the 99% which is why, instead of having a backlog of 0% projects, we have a backlog of 99% projects. My hope is that we're mor…
-
comment
Comment #48511732
Maybe revenge, but it's a common play to fire a shot across the bow to create leverage in other areas.
-
comment
Comment #48243353
Totally fair argument to make right now. But so funny how this is the opposite movement of "Let me Google that for you".
-
comment
Comment #47463100
> We told Claude Code to block npx using its own denylist. The agent found another way to run it and copied the binary to a new path using /proc/self/root to bypass the deny patter…
-
comment
Comment #47447142
Too many cooks? >.<
-
comment
Comment #47440986
Also on that point about keeping humans in the loop on decisions, I've found following the Research-Plan-Implement process where we humans review at each of those stages, to be rea…
-
comment
Comment #47440761
Yes, plz don't trust it, always review! The idea is that one prompt in Claude Code got you 80% of the way there, but with some automated review/iterate, it gets you 95% of the way …
-
comment
Comment #47440219
Dagu.sh, using yaml files to describe the flow, looks like a nice step up in sophistication from the cook approach that's just trying to make it easy to issue directly from the com…
-
comment
Comment #47438956
Done! @let-it-cook/cli@5.1.0 is out. This works when running loops, but even when you just run `cook "do something"` which itself is not a loop, just a call to your agent.
-
comment
Comment #47438781
Exactly! That's my vibe. https://rjcorwin.github.io
-
comment
Comment #47438756
Good to hear that you're having luck with small models. Note that cook exposes a --model param, also workflow specific model params (--model-work, --model-review, etc) so you can h…
-
comment
Comment #47438680
I would be interested in which stories you are thinking of. Stories of Claude breaking out of the restrictions set in its sandbox or stories of people not configuring Claude's sand…
-
comment
Comment #47438616
That's right. However if you use the v3 operator, you get three parallel versions being built, and then combined depending on which resolver you use (pick, merge, and compare).
-
comment
Comment #47438502
Hey scrappyejoe, way looks pretty cool. The goal of cook is to be unopinionated, exposing primitives for the shape of workflows as opposed to defining what happens in those workflo…
-
comment
Comment #47437175
Your getcook.dev tool has a nice form factor for a coding agent, keeping users out of a TUI, instead staying on the command line. An option I'd be interested in exploring is one th…
- comment
-
comment
Comment #47437137
Haha, not far off. Only difference is I'm not spending my tokens at work. I use this on a side project video game that I'm developing.
-
comment
Comment #47437093
To a certain extent, yes it does! For my cases, I'm often running 3 parallel implementations that get 10 to 20 iterations deep, and then Claude has to sort out the pros and cons of…
-
comment
Comment #47437070
By default it's locked down to the permissions you have granted in your Claude config. If you use the docker sandbox mode, then you can really let it fly as it can issue more comma…
-
comment
Comment #47437059
On asking for user input during implementation, it's best to use this when you have a plan sufficiently written up that you can point it to. To prep that plan, you can also use coo…
-
comment
Comment #47437017
Ah sorry about that. I have weird tastes in design. The README.md is less detailed but covers the basics: https://github.com/rjcorwin/cook/
-
comment
Comment #47436997
Oh ya, lots of tools out there orchestrating these days, and just writing a script is a valid option. On the control bit, note that if you `cook init` in your project, it generates…
-
comment
Comment #47436958
This is a fantastic idea and I'll add it!
-
comment
Comment #47436932
Nice! You found the no-code option that just has the outer agent perform the duties of the workflows that cook describes. It's a bit experimental (the whole thing is really), but i…
-
comment
Comment #47436884
That's totally a valid approach! Especially for a very specific workflow you are looking for. For the cases I cover in cook, I had done those patterns enough times that I figured i…