Viewing profile — nulone
nulone
HN member- Joined
- Mon, Jan 19, 2026, 10:42 PM UTC
- HN karma
- 15
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About nulone
Recent public activity
-
comment
Comment #46806037
Nice. Does this work across multiple machines / moved repos (same project, different local path), or is it strictly path-based?
-
comment
Comment #46805885
The ASCII output is the missing piece for AI-assisted coding workflows. LLMs can spit out Mermaid, but you can't see the diagram inline in a terminal/code-review context. This fixe…
-
comment
Comment #46765221
How did you catch it — scanner, review, or just noticed manually? I treat agent-generated diffs as untrusted by default now.
-
comment
Comment #46764562
Makes sense — execution boundary is the right place. I'd prioritize audit logs + correlation IDs, and short-lived creds per tool call. Do you expose tool capabilities to the planne…
-
comment
Comment #46754288
How do you handle side-effectful tools and secrets? Least-privilege and auditing seem hard once any Python function can become a tool (scoped creds, revocation, logs).
-
comment
Comment #46754137
Orchestration buys parallelism, not coherence. More agents means more drift between assumptions. Past a point you're just generating merge conflicts with extra steps.
-
comment
Comment #46750877
NVLink postRxDetLinkMask errors show up right before the hang. Has anyone captured a bug report or stack trace while nvidia-smi is stuck to see what it's blocking on?
-
comment
Comment #46746187
Looks like an airplane, fails under real inspection. Same smell in diffs: bugfix turns into refactor. Review eats the "velocity." Revert rate keeps you honest.
-
comment
Comment #46744901
Merge cost kills this. Does the harness enforce file/ownership boundaries per worker, and run tests before folding changes back into the lead context?
-
comment
Comment #46741653
The “craftsman to Ikea factory manager” line from the interview is the real headline here. AI does the fun creative stuff, you get stuck reviewing 2000 lines you didn’t write. Reve…
-
comment
Comment #46741432
Triage time is the real cost. Even obvious junk takes a couple minutes to read. Surprised bounty platforms dont have a "prove you ran it" step -- version, command, actual output.
-
comment
Comment #46702667
Cognitive overhead is real. Spent the first few weeks fixing agent mess more than actually shipping. One thing that helped: force the agent to explain confidence before anything ir…
-
comment
Comment #46692679
I can never remember jq syntax. Whenever I need to transform JSON, I spend 20 minutes guessing filters until something works. So I built a CLI tool: give it input JSON and desired …
- story
-
comment
Comment #46687986
Solid primitive. Two questions: 1. Crash edge case: If an agent executes a side-effect and dies before signing the receipt, is that action orphaned? Any WAL-style intent/completion…