packages/workspace/skills/memory/SKILL.md
Two-layer memory system with SQLite-based recall.
npx skillsauth add rzx007/nanobot-ts 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.
memory/MEMORY.md — Long-term facts (preferences, project context, relationships). Always loaded into your context.session_messages table — Complete conversation history stored in database.Use the search_history tool to search conversation history:
search_history({
keyword: "meeting",
limit: 20, // optional, default 20
channel: "telegram", // optional, filter by channel
days: 7 // optional, search last N days, default 30
})
Supported filters:
keyword: Search keyword (required, fuzzy match)channel: Filter by channel (cli, telegram, discord, web, etc.)days: Time range in days (default 30)limit: Result count limit (default 20)Write important facts immediately using edit_file or write_file:
Old conversations are automatically summarized and appended to MEMORY.md when the session grows large. Long-term facts are extracted to MEMORY.md. You don't need to manage this.
content-media
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
data-ai
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
tools
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
tools
Schedule reminders and recurring tasks.