Hacker News

General Agentic Memory via Deep Research

Hacker News - Thu, 03/05/2026 - 9:31am

Article URL: https://arxiv.org/abs/2511.18423

Comments URL: https://news.ycombinator.com/item?id=47261927

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Investment Portfolio of a VC

Hacker News - Thu, 03/05/2026 - 9:31am

Article URL: https://indiealpha.com/

Comments URL: https://news.ycombinator.com/item?id=47261925

Points: 1

# Comments: 0

Categories: Hacker News

How I stopped going to my agent and made it come to me

Hacker News - Thu, 03/05/2026 - 9:30am

I've been using openclaw for a while now and the thing that clicked for me was realizing how much of it is built for the agent to take initiative. I started by going to the agent whenever I needed something, but there's a whole other side where the agent comes to you, and once you set up a couple of these it's hard to go back.

1. Heartbeat + HEARTBEAT.md

Your agent wakes up every 30 minutes, reads HEARTBEAT.md, and acts on whatever you've written in there. You can tell it to check your email for anything urgent, track a package, watch the weather, whatever makes sense for your day. Just plain english. The cool part is the agent can edit its own HEARTBEAT.md too, so if you say something like "keep an eye on X for me" in conversation, it'll add that to its checklist without you touching any files.

2. Cron jobs

Heartbeat is good for "check this periodically" but if you need something at an exact time, cron is the way to go. Morning briefing at 8am, weekly recap of your github notifications, a one-shot reminder for a deadline three weeks out. You can inject cron results into your main session so the agent has all your conversation context, or run them isolated for a clean slate. I use main session injection for daily stuff because the agent already knows what I care about from prior conversations.

3. Set up more than one channel

I only had discord connected for the longest time and didn't think much of it. But once I added whatsapp too, I set up routing so casual updates go to discord and anything time-sensitive goes to whatsapp. It makes a huge difference because I'm way more likely to see a whatsapp ping than a discord notification buried under 30 servers.

4. Phone calls

All the messaging channels work great but they're still notifications, and I kept finding myself checking them too late for things that actually mattered. A phone call is different because your phone actually rings and you have to actively decide not to answer. Openclaw has a native voice call plugin but setting it up means wiring together telephony APIs, speech-to-text, text-to-speech, and getting all the audio routing right. There's a clawhub skill called clawr.ing that handles all of that for you. You install the skill and your agent can call your phone whenever it decides something warrants a real call. Phone rings, you pick up, you talk.

5. Keyword alerts with f5bot

This one's a bit of a hack but it works great. F5bot is free and sends email alerts when specific keywords show up on reddit, hacker news, or lobsters. Point your agent at those emails through the heartbeat and you've got monitoring for anything you care about, mentions of your name, topics you follow, whatever. The agent reads through the noise and only brings up what's worth looking at.

Once I set up a few of these it changed how I think about the whole thing. Less "open chat, ask question" and more like having someone paying attention in the background who taps me when something comes up.

If you've got a setup like this I'd love to hear about it, I feel like I'm still only scratching the surface here.

Comments URL: https://news.ycombinator.com/item?id=47261911

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: RAGLight, serve a RAG pipeline as a REST API and chat UI in one command

Hacker News - Thu, 03/05/2026 - 9:30am

I added a `serve` command to RAGLight, a modular RAG library I've been building.

raglight serve # FastAPI server (ingest, query, list collections) raglight serve --ui # same + Streamlit chat UI Config is env vars (LLM provider, embeddings provider, collection name, port).

Comments URL: https://news.ycombinator.com/item?id=47261906

Points: 1

# Comments: 0

Categories: Hacker News

How do you stop AI from making bad architectural decisions in your codebase?

Hacker News - Thu, 03/05/2026 - 8:33am

The problem I keep hitting: AI assistants are making architectural decisions — what to import, which layer to touch, which module to put things in — without any understanding of the architecture they're working in.

It's not just wrong paths. It's more fundamental. The AI doesn't know your module ownership. It can't trace the blast radius of a change. It has no idea which constraints your team has defined or why. It gets files and hallucinates the rest.

I built Mikk to fix this — a codebase context engine that parses your TypeScript project and gives your AI the architecture it's missing. Dependency graph, module boundaries, blast radius analysis, architectural contracts, and a live MCP server so the AI can query your real architecture mid-task.

Curious how others are handling this. CLAUDE.md written by hand? RAG pipelines over your source? Context window tricks? What's actually working for non-trivial codebases?

(Mikk is open source: https://github.com/Ansh-dhanani/mikk)

Comments URL: https://news.ycombinator.com/item?id=47261392

Points: 1

# Comments: 0

Categories: Hacker News

AWS Aurora DSQL Playground

Hacker News - Thu, 03/05/2026 - 8:33am

Article URL: https://playground.dsql.demo.aws/

Comments URL: https://news.ycombinator.com/item?id=47261391

Points: 1

# Comments: 0

Categories: Hacker News

Rapid Modeling (2023)

Hacker News - Thu, 03/05/2026 - 8:29am
Categories: Hacker News

Show HN: Costrace – Open-source LLM cost and latency tracking across providers

Hacker News - Thu, 03/05/2026 - 8:25am

I built Costrace because I was tired of checking three different dashboards to understand my LLM spend.

It's an open-source tool that tracks cost, token usage,latency, geographic distribution across OpenAI, Anthropic, and Google Gemini in one place. The SDKs work by monkey-patching the official client libraries, so you don't change any of your existing code — just init and go. You can self-host the whole thing or use the hosted version at costrace.dev.

GitHub: github.com/ikotun-dev/costrace Happy to answer any questions about the architecture or monkey-patching approach.

Comments URL: https://news.ycombinator.com/item?id=47261329

Points: 1

# Comments: 0

Categories: Hacker News

Pages