skills/nano-memory/SKILL.md
Guidelines and workflows for the agent to maintain persistent memory using native file tools (read_file, write_file, edit_file) and standard OS commands for searching.
npx skillsauth add agentscope-ai/agentscope-skills nano-memoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Each session is stateless. Your memory lives entirely within the local file system. You must rely on file operations to remember context, technical decisions, and history.
memory/YYYY-MM-DD.md (Daily Logs): Raw, chronological logs of what happened. Use this for daily tasks, scratchpad thinking, and immediate context.MEMORY.md (Long-Term Memory): Your curated, distilled knowledge base. Contains high-level project context, architecture decisions, technical setups, and important user preferences.You have access to native file tools and standard OS commands. Use them strictly in these patterns to avoid data loss or hallucinations:
ls -la memory/grep -rnI "your_keyword" memory/ MEMORY.mddir memory\ (CMD) or Get-ChildItem memory\ (PowerShell)findstr /S /I /N "your_keyword" memory\* MEMORY.mdSelect-String -Pattern "your_keyword" -Path "memory\*", "MEMORY.md"read_file)edit_file tool.read_file tool to load the exact state of a file. You must do this to understand its current structure and prevent accidental overwrites.write_file)write_file tool to save content. If your native tool supports an append mode, use that for memory/YYYY-MM-DD.md. Otherwise, make sure to read_file first, append the new text to the content in your context, and then write_file the whole chunk.edit_file)MEMORY.md.read_file first to see the exact text or line numbers you are modifying. Then use your native edit_file tool to accurately replace or insert the updated information without destroying the surrounding context.memory/YYYY-MM-DD.md.MEMORY.md using edit_file.grep or findstr) to locate the keyword in memory/ or MEMORY.md.read_file tool on the specific file found in step 2.read_file tool on MEMORY.md to review its current structure and locate the target section.edit_file tool to seamlessly update or insert the new information into MEMORY.md.Periodically act like a human reviewing their journal:
ls or dir and read recent ones using read_file.MEMORY.md with these distilled learnings using edit_file.MEMORY.md to keep your context clean.development
This guide covers the design philosophy, core concepts, and practical usage of the AgentScope framework. Use this skill whenever the user wants to do anything with the AgentScope (Python) library. This includes building agent applications using AgentScope, answering questions about AgentScope, looking for guidance on how to use AgentScope, searching for examples or specific information (functions/classes/modules).
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------