HackerTrans
トップ新着トレンドコメント過去質問紹介求人

shubhamintech

no profile record

投稿

[untitled]

1 ポイント·投稿者 shubhamintech·9 日前·0 コメント

Ask HN: Why are we humans still prompting to make Agents better?

2 ポイント·投稿者 shubhamintech·14 日前·3 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·3 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·3 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·4 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·4 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·4 か月前·0 コメント

Ask HN: Do you find Analytics dashboards cluttered?

2 ポイント·投稿者 shubhamintech·4 か月前·0 コメント

Ask HN: How do you understand what users want when your interface is a chat?

3 ポイント·投稿者 shubhamintech·5 か月前·2 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·5 か月前·0 コメント

Show HN: Agnost AI – Analytics for Conversational Text/Voice Agents

biggest-decisions-702764.framer.app
2 ポイント·投稿者 shubhamintech·5 か月前·0 コメント

Ask HN: What metrics do you track in a Conversational Agent?

4 ポイント·投稿者 shubhamintech·8 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·8 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

[untitled]

1 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

How to create a Claude Code Plugin in 5 minutes

agnost.ai
3 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

Show HN: Testing Your MCP Servers

agnost.ai
2 ポイント·投稿者 shubhamintech·9 か月前·0 コメント

コメント

shubhamintech
·14 日前·議論
If that's the case, how does one make them smarter for their specific use case?

I'd like to believe that vast knowledge is still more than what I have in my mind?
shubhamintech
·3 か月前·議論
The debugging part at this scale is harder than you would expect - behavioral drift between parallel agent instances is nearly invisible without something aggregating what they are actually doing across runs. We hit this ourselves: two agents completing the same task successfully via completely different paths, one of which quietly broke edge cases in prod. The only thing that caught it was treating the conversation traces as a dataset, not just logs.
shubhamintech
·3 か月前·議論
I think one of the very few who actually support ebpf & xdp, which you do need when you're building low level stuff. + the bare metal setup is like out of the world lol.
shubhamintech
·4 か月前·議論
Runtime policies as an actual gate rather than prompt instructions is the right model. Most frameworks just bolt governance on as a wrapper and hope the model obeys. What I'd want on top of this: observability into why agents are hitting policy blocks, not just that they were blocked.
shubhamintech
·4 か月前·議論
The oracle problem is tractable when the output is code: you can compile it, run tests, diff the output. For conversational AI it's much harder. We've seen teams use LLM-as-judge as their validation layer and it works until the judge starts missing the same failure modes as the generator.
shubhamintech
·4 か月前·議論
The MoE point matters here ie sparse activation means you're not reading all 2TB per forward pass, but the access pattern flips from sequential to random which is exactly the worst case for NVMe. Been thinking about this a lot for agent inference workloads where you want consistent latency more than peak throughput.
shubhamintech
·4 か月前·議論
We've seen this exact pattern. Most devtools assume a human will eventually log in and contextualize the data. When the 'user' is an agent, you need the surface to be machine-readable by default, not as an afterthought. The adapter approach mostly doesn't work ie you end up with a translation layer that loses exactly the signal you needed.

its like devtools are now agenttools
shubhamintech
·4 か月前·議論
4.4 tok/s with reliable structured output is a solid local benchmark altho the question is whether SSD streaming introduces per-token latency variance that messes up tool call parsing downstream. The gap between 400 GB/s unified memory bandwidth and 17.5 GB/s SSD reads means you're in the hot path pretty much every time an expert isn't cached.
shubhamintech
·4 か月前·議論
we've started to document any a/b decision we take in terms of tech and store in our engineering internal docs! have gone back to it once in a whilw but that usually helps keep us grounded
shubhamintech
·4 か月前·議論
IMO the under-discussed risk here is that sites will start serving different content to verified crawlers vs real users. You're already seeing it with known search bots getting sanitized views. If your agent's context comes from a crawl the site knows is going to an AI, you have no guarantee it matches what a human sees, and that data quality problem won't surface until your agent starts acting on selectively curated information.

This could go wrong on same levels.
shubhamintech
·4 か月前·議論
Hard limits are a good first layer but they don't tell you why the agent is looping. Retrying because it's confused, retrying because a dependency is flaky, and genuine planning loops are three different problems with different fixes. What helped us was logging the agent's intent at each step, and if it's asking the same underlying question three times in different syntax, that's the signal to bail early rather than burning through your iteration budget.
shubhamintech
·4 か月前·議論
The BCG framing makes it sound like a cognitive load problem but I think it is more unreliability fatigue. When your AI does 8 things right and then confidently does the 9th wrong, you spend mental energy second-guessing everything. Supervising an unreliable system is more exhausting than just doing the task yourself.
shubhamintech
·4 か月前·議論
Same mental model problem comes up in AI agent observability. Two conversation flows can produce identical user outcomes and look totally different at the message level, or vice versa. The normalization step that actually captures 'did behavior change' is the hard part in both domains.
shubhamintech
·4 か月前·議論
The latency point matters more than it looks imo like the GPU work isn't just async CPU work at a different speed, the cost model is completely different. In LLM inference, the hard scheduling problem is batching non-uniform requests where prompt lengths and generation lengths vary, and treating that like normal thread scheduling leads to terrible utilization. Would be curious if Eyot has anything to say about non-uniform work units.
shubhamintech
·4 か月前·議論
Was using this in our prod microservices, has been helping us with value instantly! Really in for the vision of AI SREs
shubhamintech
·4 か月前·議論
Lol the joke works because it's halfway serious. Agents already choose tools, vote with API calls, and quietly churn off platforms that create friction. "What do agents want" is actually a real product question and imo most teams shipping agent products have zero visibility into how their agents are actually behaving in production. What do you think?
shubhamintech
·4 か月前·議論
[flagged]
shubhamintech
·4 か月前·議論
[flagged]
shubhamintech
·4 か月前·議論
The pattern is always the same: product team has a new AI feature, someone says put it everywhere, nobody asks users if they want it, and then power users revolt while the feature languishes unused anyway. The right move was opt-in, but that would've made the adoption numbers look bad. Progressive disclosure exists for a reason.
shubhamintech
·4 か月前·議論
The "trust our logs" problem is real ie regulators and security teams don't care about your dashboard. Curious about the semantic layer though: once you can verify a log is intact, the next hard question is why the agent made the specific decision that caused an incident. Integrity proves the what, but you still need the interpretability layer for the why.