Very cool project, could you clarify some concepts #15
|
Hi, im really new to the mcp world When I add the mcp to agents (cursor, gemini cli, ...)
I didn't understand the example of Readme because it shows the tools being called, but now chat words or Rules to add to the agent so it uses forgetfull in the best way Thanks |
Replies: 3 comments 2 replies
|
Hey @CharlieBytesX Have a look at the Claude Code Plugin for Forgetful Commands. I'd reocmmend in whatever coding agent you are using, trying to set up similar repeatable commands, Commands in Cursor for example. I will set about creating example documentation for this in the README.md as well in the comming days. These are often the best way to go about using the tool, I have given what I think is quite a common workflow with the tool, saving and adding memories, but I intend to extend this out, likely with the help of others using the tool in ways that I had no envisaged or have yet to come across. It is fairly open ended and designed to be used in many use cases (I give a lot of examples of using it with coding agents but I intend also use it with general purpose agents such as claude desktop and chatgpt, and even those that I build myself). In addition to this, if you just give the agent natural language instructions to 'save this to forgetful' or 'can you check forgetful for x' then that also works, but i like to try wrap it in those commands as it gets the agent to do things like check for existing entries, or when exploring the knowledge base to use a sub agent to protect its context window (need to be careful with sub agents as I suspect some coding agents don't support them). Hope this helps, let me know if you have any further questions and thanks for checking out the tool :). |
|
Thanks!! Now it makes much more sense I just added as commands to gemini cli and encode-repo works great!! |
|
Now in 503feb6 - thanks for the help on this @CharlieBytesX |
Hey @CharlieBytesX
Have a look at the Claude Code Plugin for Forgetful Commands. I'd reocmmend in whatever coding agent you are using, trying to set up similar repeatable commands, Commands in Cursor for example.
I will set about creating example documentation for this in the README.md as well in the comming days.
These are often the best way to go about using the tool, I have given what I think is quite a common workflow with the tool, saving and adding memories, but I intend to extend this out, likely with the help of others using the tool in ways that I had no envisaged or have yet to come across. It is fairly open ended and designed to be used in many use cases (I give a lot of exampl…