HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Arindam1729

68 karmajoined 3 tahun yang lalu
Building Studio1hq.com

Submissions

[untitled]

1 points·by Arindam1729·3 hari yang lalu·0 comments

[untitled]

1 points·by Arindam1729·13 hari yang lalu·0 comments

Completion Rate Is a Vanity Metric

formaly.io
2 points·by Arindam1729·16 hari yang lalu·0 comments

Forms Are Not Dead, Static Forms Are Overused

formaly.io
2 points·by Arindam1729·21 hari yang lalu·1 comments

[untitled]

1 points·by Arindam1729·bulan lalu·0 comments

Vercel Analytics Alternative When You Outgrow the Free Tier

raah.dev
1 points·by Arindam1729·bulan lalu·0 comments

[untitled]

1 points·by Arindam1729·2 bulan yang lalu·0 comments

I built a local dashboard to inspect Claude Code sessions, tokens, and costs

github.com
1 points·by Arindam1729·3 bulan yang lalu·0 comments

Show HN: Cc-Lens, Open Source Analytics Dashboard for Claude Code

github.com
3 points·by Arindam1729·4 bulan yang lalu·0 comments

We ran 21 MCP database tasks on Claude Sonnet 4.6

insforge.dev
2 points·by Arindam1729·4 bulan yang lalu·0 comments

GPT-5.3 Codex vs. Claude Opus 4.6

tensorlake.ai
2 points·by Arindam1729·5 bulan yang lalu·0 comments

Using AI for Code Reviews: What Works, What Doesn't, and Why

entelligence.ai
3 points·by Arindam1729·5 bulan yang lalu·0 comments

Notes after testing OpenAI's Codex App on real execution tasks

tensorlake.ai
2 points·by Arindam1729·5 bulan yang lalu·0 comments

We Cut Token Usage by 83% and Still Hit 90%+ Retrieval Precision

byterover.dev
8 points·by Arindam1729·6 bulan yang lalu·4 comments

The Next Enterprise Platform Isn't Data-Driven, It's Context-Driven

tensorlake.ai
2 points·by Arindam1729·6 bulan yang lalu·1 comments

AI's trillion-dollar opportunity: Context graphs

foundationcapital.com
1 points·by Arindam1729·7 bulan yang lalu·0 comments

Gemini 3 vs. GPT-5.2: Detailed Coding Comparison

tensorlake.ai
2 points·by Arindam1729·7 bulan yang lalu·0 comments

[untitled]

1 points·by Arindam1729·9 bulan yang lalu·0 comments

Agent Knowledge Needs More Than Just RAG

3 points·by Arindam1729·10 bulan yang lalu·2 comments

Failing to Understand the Exponential, Again

julian.ac
7 points·by Arindam1729·10 bulan yang lalu·1 comments

comments

Arindam1729
·3 bulan yang lalu·discuss
This is quite interesting. And with the Open source models getting better and better every day, we'll soon see wide adoption of people fine-tuning OSS models and use them instead of using proprietary models
Arindam1729
·6 bulan yang lalu·discuss
I keep seeing the same pattern with enterprise AI agents: they look fine in demos, then break once they’re embedded in real workflows.

This usually isn’t a model or tooling problem. The agents have access to the right systems, data, and policies.

What’s missing is decision context.

Most enterprise systems record outcomes, not reasoning. They store that a discount was approved or a ticket was escalated, but not why it happened. The context lives in Slack threads, meetings, or individual memory.

I was thinking about this again after reading Jaya Gupta’s article on context graphs, which describes the same gap. A context graph treats decisions as first-class data by recording the inputs considered, rules evaluated, exceptions applied, approvals taken, and the final outcome, and linking those traces to entities like accounts, tickets, policies, agents, and humans.

This gap is manageable when humans run workflows because people reconstruct context from experience. It becomes a hard limit once agents start acting inside workflows. Without access to prior decision reasoning, agents treat similar cases as unrelated and repeatedly re-solve the same edge cases.

What’s interesting is that this isn’t something existing systems of record are positioned to fix. CRMs, ERPs, and warehouses store state before or after decisions, not the decision process itself. Agent orchestration layers, by contrast, sit directly in the execution path and can capture decision traces as they happen.

At scale, agent reliability depends less on model intelligence and more on whether past decisions are actually remembered.
Arindam1729
·10 bulan yang lalu·discuss
I’ve been collecting different open-source examples of agents that use these patterns (RAG, workflows, multi-agent setups, etc.) here:https://github.com/Arindam200/awesome-ai-apps

Feel Free to try it and let me know!