HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ryaker

no profile record

投稿

Show HN: SparrowDB, SQLite of graph DB, written in Rust, Cypher compatible

github.com
2 ポイント·投稿者 ryaker·3 か月前·1 コメント

Show HN: Zora, AI agent with compaction-proof memory and a runtime safety layer

github.com
2 ポイント·投稿者 ryaker·4 か月前·0 コメント

Zora Agent:local AI agent that can't be hijacked mid-task by context compaction

github.com
1 ポイント·投稿者 ryaker·4 か月前·2 コメント

コメント

ryaker
·3 か月前·議論
What is the memory footprint? If running on a mac how does it do in terms of being able to run other things concurrently?
ryaker
·3 か月前·議論
QWhere are you getting the flight data?
ryaker
·4 か月前·議論
I'll have to check this out. I'm very much interested in AI memory.
ryaker
·4 か月前·議論
Built this after watching agents go rogue because their safety instructions got compressed away mid-task. Summer Yue's inbox incident this week is exactly the failure mode I designed around. The core problem: "confirm before acting" lives in chat history. Chat history gets compacted. Instruction disappears. The agent keeps going. Zora uses HMAC-SHA256 signed intent capsules that travel separately from the conversation context. Compaction can't touch them. The original mandate stays intact no matter how long the task runs. Three commands to try it: npm i -g zora-agent zora init zora ask "summarize files in ~/Projects" Multi-model with automatic failover (Claude, Gemini, Ollama). Policy file controls exactly what it can touch. Full audit log. OWASP LLM Top 10 hardened. MIT. Happy to answer questions about the security architecture.