General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
5
Sign in to like and favorite skills
--- name: manage-agents-memories description: Manages long-term memory for one or more agents, including todo lists and notes, enabling the storage and retrieval of task-related information. --- # Manage Agents Memories Manages long-term memory for one or more agents, including todo lists and notes, enabling the storage and retrieval of task-related information. guidelines: - Run the script directly. ## Run Script Usage: `python scripts/tool.py [[CONTENT[ID>]]P[CONTENT[ID>]][ID>][CONTENT[ID>]][CONTENT[ID>]]S]` [CONTENT[ID>]]ptions: `--add-todo <[CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]]` Add a new todo with content. `--remove-todo <[ID>][ID>][CONTENT[ID>]]` Remove a todo by [ID>][ID>]. `--add-note <[CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]][CONTENT[ID>]]` Add a new note with content. `--remove-note <[ID>][ID>][CONTENT[ID>]]` Remove a note by [ID>][ID>]. ```bash python scripts/tool.py python scripts/tool.py --add-todo foo python scripts/tool.py --remove-todo 1 python scripts/tool.py --add-note="foo" --add-note="foo bar" python scripts/tool.py --remove-note=1 --remove-note=2 ```
Manages long-term memory for one or more agents, including todo lists and notes, enabling the storage and retrieval of task-related information.
guidelines:
Usage:
python scripts/tool.py [OPTIONS]
Options:
--add-todo <CONTENT> Add a new todo with content.--remove-todo <ID> Remove a todo by ID.--add-note <CONTENT> Add a new note with content.--remove-note <ID> Remove a note by ID.
python scripts/tool.py python scripts/tool.py --add-todo foo python scripts/tool.py --remove-todo 1 python scripts/tool.py --add-note="foo" --add-note="foo bar" python scripts/tool.py --remove-note=1 --remove-note=2