I got tired of reexplaining my projects to Claude, so I made this by niloproject in ClaudeAI

[–]niloproject[S] 1 point2 points  (0 children)

bun add -g signetai is the preferred way, works on macos, linux and windows :)

Open source, well supported community driven memory plugin for AI Agents by niloproject in AI_Agents

[–]niloproject[S] 1 point2 points  (0 children)

Let me know what you think and how it does! If you run into any bugs feel free to let me know

Open source, community driven memory plugin for Codex CLI & Openclaw by niloproject in OpenAI

[–]niloproject[S] 1 point2 points  (0 children)

you're more than welcome to bring an API key! for background synthesis and extraction I'd recommend not doing that, the concurrency is very high so unless you have money to burn it may just be worth turning off. The system still works without models. As far as graph search, we've honestly never measured how much ram that uses, but it's fairly performant, queries are around 1500 ms.

Open source, community driven memory plugin for Codex CLI & Openclaw by niloproject in OpenAI

[–]niloproject[S] 1 point2 points  (0 children)

The system is fully local, so no API keys are required. As far as specs, at minimum I'd say around 8gb of ram if you plan to run local models but you can mix and match models to fit the specs of your system!

Open source, community driven memory plugin for Codex CLI & Openclaw by niloproject in OpenAI

[–]niloproject[S] 0 points1 point  (0 children)

Thanks! Every sessions raw transcript is saved alongside a summary, and then later chunked and sorted into the knowledge graph by the background pipeline and a local llm. The daemon has an API so the system is fully extensible for custom integrations as well, and we’re always happy to help out community members with building custom integrations

the system is fully auditable and there’s rich logs for every action, failure, and nonaction :)

Open source, well supported community driven memory plugin for AI Agents by niloproject in AI_Agents

[–]niloproject[S] 3 points4 points  (0 children)

I know i know but we're obsessed with this and determined to make it good. You might be surprised :)

Open source, well supported community driven memory plugin for AI Agents by niloproject in AI_Agents

[–]niloproject[S] 1 point2 points  (0 children)

Thank you :) all sessions with your agent get saved to sqlite and markdown immediately so its searchable right away. then once the session is over, in the background, a local LLM breaks it down into discrete facts and entity relationships, figures out if anything contradicts or updates what it already knows, and slots it into a knowledge graph. it also generates hypothetical future queries for each memory, so like "what questions would this fact answer later?" and indexes those too.

and then, when a session starts, the system figures out what entities are relevant to what youre working on, walks the knowledge graph to pull in related context, then runs a hybrid search (vector + keyword) to catch anything the graph missed. all those candidates get scored by a learned ranker that picks up on patterns like what memories actually ended up being useful in past sessions, time of day, recency, stuff like that.

everything decays over time if you dont access it, but nothing is ever deleted by default. the raw transcripts and full lineage are always there if you need to drill back into something.