Feed aggregator

Show HN: Multi-tenant OpenClaw with isolated containers and encrypted vault

Hacker News - Sun, 02/08/2026 - 6:06pm

Open source multi-tenant layer for OpenClaw. Each user gets an isolated container, credentials stay encrypted in a vault and are only decrypted inside the container. Zero knowledge - the platform can't read your API keys or conversations.

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Claude Dashboard – k9s-style TUI for managing Claude sessions via tmux

Hacker News - Sun, 02/08/2026 - 6:05pm

I built a terminal dashboard for managing multiple Claude Code sessions, inspired by k9s (the Kubernetes TUI).

The problem: When running several Claude Code agents in parallel via tmux, switching between sessions and keeping track of what each one is doing gets messy fast. I wanted something like k9s but for Claude Code – a single pane of glass to see all my sessions at a glance.

What it does: Lists all Claude Code tmux sessions with live status Quick navigation and switching between sessions (k9s-style keybindings) Written in Go, single binary, no dependencies beyond tmux

Install: go install github.com/seunggabi/claude-dashboard/cmd/claude-dashboard@latest

I know there are similar tools out there (claude-squad, tmuxcc), but I wanted something lightweight and opinionated toward the k9s workflow I'm already used to from Kubernetes. If you manage multiple Claude Code sessions daily, I'd love your feedback.

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

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: Vibe Studying?

Hacker News - Sun, 02/08/2026 - 6:03pm

I was reading the papers listed at https://www.cs.princeton.edu/courses/archive/fall22/cos597G/ to learn about LLMs. My background’s in physics, not ml/cs, so while I able to understand the mathematics for the most part, I was getting hung up on the jargon at times. I found myself repeatedly taking screenshots of a page and uploading it on gemini, asking it to simplify the language. Doing that so many times manually sucks for more than one reason, so I ended up writing something which does that automatically for every page. It turned out to be more useful than I expected: for example reading this paper https://arxiv.org/pdf/2111.02080 would normally have taken me about 2-3hr, but now I was able to go through it in ~20min, mostly by clicking the next and return keys on my keyboard. Just putting it here in case someone else finds it useful too. https://eli5app.net/ (use on your laptop it’s barely functional right now and be gentle already way over supabase’s free tier limits)

PS: Also unexpectedly useful for reading philosophy works which are unnecessarily verbose, usually full of unclear fancy language: https://eli5app.net/pirate/Western%20Philosophy. never expected reading plato’s apology would be this fun. also found it useful for reading abstract math stuff like vakil’s rising sea which I always wanted to read. It somehow becomes more fun,‘easier’(grounded?) when reading it along w the eli5 summaries.

PS: Was also able to read all of pg essays pretty quickly this way too entirely by clicking return,return,”ah I see”,cmd+back on repeat.

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: My store was attacked, and Stripe finished the job

Hacker News - Sun, 02/08/2026 - 5:56pm

Show HN: When 'Risk Algorithms' Fail – My store was attacked, and Stripe finished the job.

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

Points: 1

# Comments: 0

Categories: Hacker News

100 Days to Offload

Hacker News - Sun, 02/08/2026 - 5:12pm

Article URL: https://100daystooffload.com/

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: EasyMemory – Local-First Memory Layer for Chatbots and Agents

Hacker News - Sun, 02/08/2026 - 5:07pm

Hi everyone,

I built EasyMemory, an open-source Python library that provides a fully local-first memory layer for chatbots and agent-based systems, with no cloud dependency.

Most existing agent memory solutions rely on third-party services or embeddings-only retrieval. EasyMemory is designed as a local, modular system to experiment with how agents store, structure, and retrieve information beyond pure vector search.

Key features • Automatic conversation persistence • Hybrid retrieval: embeddings + keyword search + graph-style links • Supports PDF, TXT, DOCX, and Markdown • Optional integrations with Slack, Notion, and Google Drive • MCP server for connecting local or remote LLMs

The goal is to provide a flexible foundation for exploring different memory patterns locally, without locking into a single retrieval strategy or external service.

Feedback and comparisons with other approaches to agent memory, RAG, or long-term context management are very welcome.

Repo: https://github.com/JustVugg/easymemory

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: ZTGI Safety Gateway for LLM Safety

Hacker News - Sun, 02/08/2026 - 5:07pm

I built a small runtime safety layer for LLM outputs called ZTGI Safety Gateway.

This is not a new foundation model and not an AGI claim. It is a post-generation control layer that sits between candidate outputs and final response selection.

What it does: - Scores each candidate with two risk tracks: - legacy risk (`p_break`) - hybrid risk (`z_next`: instruction breach + sycophancy + divergence signals) - Enforces hard blocks for: - security abuse prompts - contradiction-actionable prompts - high-risk finance-actionable prompts - Returns SAFE/WARN/BREAK with telemetry.

Current repo: https://github.com/capterr/ztgi-safety-gateway

Quick run: 1) Set API key: export GEMINI_API_KEY=YOUR_KEY 2) Build evidence pack: python ztgi_build_submission_pack.py --model "gemini-2.0-flash" --out "ztgi_submission_pack" 3) Inspect: - ztgi_submission_pack/evidence/ztgi_evidence_live.json - ztgi_submission_pack/evidence/ztgi_evidence_live.csv - ztgi_submission_pack/assets/ztgi_manifund_evidence.png

What I’d like feedback on: - failure modes I’m missing - overblocking vs underblocking tradeoff - better eval set design for independent validation

I’m happy to share raw outputs and discuss limitations directly.

FIRST COMMENT (pin this under your post): Technical notes + limitations

- This project is a runtime guard, not model-level alignment. - Some safety behavior can still come from base-model policy itself. - I’m trying to measure where the gateway actually adds value via hard-block reasons + telemetry. - Current stress set is small and intentionally adversarial. - Next step is broader independent eval (including false-positive tracking).

If you want to reproduce quickly: - Python 3.10+ - GEMINI_API_KEY set - matplotlib installed - run: python ztgi_build_submission_pack.py --model "gemini-2.0-flash" --out "ztgi_submission_pack"

Happy to add your suggested test prompts to the regression suite and report back with results.

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

Points: 1

# Comments: 0

Categories: Hacker News

Pages