HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Arindam1729

68 karmajoined قبل 3 سنوات
Building Studio1hq.com

Submissions

[untitled]

1 points·by Arindam1729·قبل 3 أيام·0 comments

[untitled]

1 points·by Arindam1729·قبل 13 يومًا·0 comments

Completion Rate Is a Vanity Metric

formaly.io
2 points·by Arindam1729·قبل 16 يومًا·0 comments

Forms Are Not Dead, Static Forms Are Overused

formaly.io
2 points·by Arindam1729·قبل 21 يومًا·1 comments

[untitled]

1 points·by Arindam1729·الشهر الماضي·0 comments

Vercel Analytics Alternative When You Outgrow the Free Tier

raah.dev
1 points·by Arindam1729·الشهر الماضي·0 comments

[untitled]

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

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

github.com
1 points·by Arindam1729·قبل 3 أشهر·0 comments

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

github.com
3 points·by Arindam1729·قبل 4 أشهر·0 comments

We ran 21 MCP database tasks on Claude Sonnet 4.6

insforge.dev
2 points·by Arindam1729·قبل 4 أشهر·0 comments

GPT-5.3 Codex vs. Claude Opus 4.6

tensorlake.ai
2 points·by Arindam1729·قبل 5 أشهر·0 comments

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

entelligence.ai
3 points·by Arindam1729·قبل 5 أشهر·0 comments

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

tensorlake.ai
2 points·by Arindam1729·قبل 5 أشهر·0 comments

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

byterover.dev
8 points·by Arindam1729·قبل 6 أشهر·4 comments

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

tensorlake.ai
2 points·by Arindam1729·قبل 6 أشهر·1 comments

AI's trillion-dollar opportunity: Context graphs

foundationcapital.com
1 points·by Arindam1729·قبل 7 أشهر·0 comments

Gemini 3 vs. GPT-5.2: Detailed Coding Comparison

tensorlake.ai
2 points·by Arindam1729·قبل 7 أشهر·0 comments

[untitled]

1 points·by Arindam1729·قبل 9 أشهر·0 comments

Agent Knowledge Needs More Than Just RAG

3 points·by Arindam1729·قبل 10 أشهر·2 comments

Failing to Understand the Exponential, Again

julian.ac
7 points·by Arindam1729·قبل 10 أشهر·1 comments

comments

Arindam1729
·قبل 3 أشهر·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 أشهر·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 أشهر·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!