frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
26•foxfoxx•1h ago•10 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
124•prvnsmpth•9h ago•36 comments

Show HN: Web Audio Studio – A Visual Debugger for Web Audio API Graphs

https://webaudio.studio/
44•alexgriss•6h ago•2 comments

Show HN: Try Archetype 360 – AI‑powered personality test, 3× deeper than MBTI

https://archetype360.app/
4•ddesposito•2h ago•2 comments

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

https://github.com/kossisoroyce/timber
170•kossisoroyce•17h ago•30 comments

Show HN: Ledge - Policy layer for AI agent payments (prevents unauthorized txns)

https://github.com/Devendra116/ledge
2•devendra116•1h ago•0 comments

Show HN: Clean Express – a native NNTP/Usenet client for iOS/macOS/visionOS

https://testflight.apple.com/join/DmBXsPhU
4•jim180•1h ago•0 comments

Show HN: MoodJot – Mood tracker mobile app with community feed, built with KMP

https://moodjot.app
3•appmuzzik•2h ago•0 comments

Show HN: Open-source Loom / Screen Studio with editing and auto-zoom

https://github.com/jkuri/Reframed
5•kundi•2h ago•3 comments

Show HN: Ralphex – autonomous GPT Codex agent loop for ChatGPT Pro users

https://github.com/SmolNero/ralphex
3•edgar_ortega•2h ago•0 comments

Show HN: Dungeon Coverage – Unit testing as a dungeon crawler

https://arvindrajnaidu.github.io/dungeon-coverage/
2•arvindrajnaidu•3h ago•0 comments

Show HN: HushBrief – A stateless, zero-retention AI document summarizer

https://hushbrief.app
3•FidelitasLLC•3h ago•0 comments

Show HN: Aigent – A general-purpose AI agent built for self-improvement

https://stefanochiodino.github.io/aigent/
2•StefanoC•3h ago•0 comments

Show HN: Rust Based SEO and AEO Crawler

https://crawler.sh/
2•mehmetkose•3h ago•0 comments

Show HN: Sairo – Self-hosted S3 browser with 2.4ms search across 134K objects

4•ashwathstephen•3h ago•1 comments

Show HN: Two tools to make Claude Code more autonomous

5•yuu1ch13•3h ago•1 comments

Show HN: IDAssist – AI augmented reverse engineering for IDA Pro

https://github.com/jtang613/IDAssist
4•jtang613•4h ago•0 comments

Show HN: Augno – a Stripe-like ERP for manufacturing

2•dalbaugh•4h ago•0 comments

Show HN: RDAP API – Normalized JSON for Domain/IP Lookups (Whois Replacement)

https://rdapapi.io
2•boutetnico•4h ago•0 comments

Show HN: Tradefacts.io – US HTS tariff schedule, a JSON API and change detection

https://tradefacts.io
2•PowMan•4h ago•0 comments

Show HN: Atrium – An open-source, self-hosted client portal

https://github.com/Vibra-Labs/Atrium
3•ecotto123•4h ago•0 comments

Show HN: Photon – Rust pipeline that embeds/tags/hashes images locally w SigLIP

https://github.com/hejijunhao/photon
3•pgbouncer•4h ago•1 comments

Show HN: Homebutler – Manage multiple servers from chat, single binary

https://github.com/Higangssh/homebutler
4•swq115•5h ago•0 comments

Show HN: EasyClaw – One-click installer for OpenClaw AI agent

https://github.com/ybgwon96/easyclaw
2•Singularity26•5h ago•1 comments

Show HN: AgentKeeper – cognitive persistence layer for AI agents

3•thinklanceai•5h ago•0 comments

Show HN: I built a zero-browser, pure-JS typesetting engine for bit-perfect PDFs

https://github.com/cosmiciron/vmprint
68•cosmiciron•1d ago•50 comments

Show HN: Logira – eBPF runtime auditing for AI agent runs

https://github.com/melonattacker/logira
22•melonattacker•18h ago•2 comments

Show HN: Pulse – a beautiful service monitor that lives in your notch

https://github.com/jsattler/Pulse
3•jsattler•5h ago•0 comments

Show HN: PipeDream – A state-aware AI visualizer for CLI text adventures

https://github.com/CPritch/PipeDream
2•PxldLtd•6h ago•2 comments

Show HN: Oc-mnemoria – Persistent memory for AI coding agents

https://github.com/one-bit/oc-mnemoria
2•one-bit•6h ago•0 comments
Open in hackernews

Show HN: I turned Claude Code into a personal assistant

https://github.com/daxaur/openpaw
8•daxaur•1h ago
OpenPaw is an open-source toolkit that turns Claude Code into a full personal assistant. One command (npx pawmode), 38 skills — email, calendar, Spotify, smart home, notes, and more. No daemon, no cloud, mo extra cost beyond your existing Claude subscription.

Comments

auvira_systems•1h ago
I love seeing more 'Local-First' tools hitting the front page. We’ve been moving our own project (a financial IDE) toward a purely local-first architecture, and the biggest challenge is always balancing zero-cloud with useful features. Using Claude Code as the base is a clever move because it already has the context of the filesystem. Have you looked into adding a local vector DB (like LanceDB or similar) to give 'pawmode' long-term memory without needing an external API?
stuaxo•54m ago
Going to object to anything using Claude as being local.

Still: this totally could be hooked up to a local LLM.

daxaur•28m ago
Thank you!

Memory right now is flat markdown files (MEMORY.md , SOUL.md) that Claude reads at session start. Honestly it works better than you'd expect. Claude's context window is big enough that a few hundred lines of memory covers most personal assistant use cases. I'd rather keep it as plain text you can read and edit yourself than add a vector DB dependency for marginal recall gains.

The filesystem context thing is exactly right btw

mittermayr•51m ago
OpenClaw vs. OpenPaw? Seems like a very similar thing, or am I misunderstanding the concept here? Is the lock-in to Claude Code the feature here?

Can't be long until we see a BaseClaw repo, where everyone can clone and name their own local claw-like loop.

daxaur•38m ago
It is indeed very similar, but

OpenClaw doesn't support Claude Code's native OAuth, plus it runs its own daemon. OpenPaw goes the other direction: it writes config files that Claude Code already understands (CLAUDE.md, permissions, hooks) and exits so claude code can function as an actual personal assistant with all the skills needed. No daemon, no extra process.