larvling/skills/remember/SKILL.md
Store knowledge that Larvling will remember across sessions
npx skillsauth add athrael-soju/larvling rememberInstall 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.
Store the given knowledge in Larvling's database. Do NOT delegate to any subagent — handle this directly.
SQLite database at .claude/larvling.db.
Schema:
topics (id INTEGER PK AUTO, title TEXT NOT NULL, domain TEXT NOT NULL, tags TEXT NOT NULL, created TEXT, updated TEXT)statements (id INTEGER PK AUTO, topic_id INTEGER FK→topics(id), claim TEXT NOT NULL, created TEXT, updated TEXT)$PY "${CLAUDE_PLUGIN_ROOT}/scripts/query.py" "<SQL>"
Append --json for JSON output.
Classify knowledge into one of: personal, professional, preferences, interests, knowledge, technical, workflow
$PY "${CLAUDE_PLUGIN_ROOT}/scripts/query.py" "SELECT t.id, t.title, t.domain, t.tags, s.id AS stmt_id, s.claim FROM topics t JOIN statements s ON s.topic_id = t.id" --json
INSERT INTO topics (title, domain, tags) VALUES ('...', '...', '...') then INSERT INTO statements (topic_id, claim) VALUES (last_insert_rowid(), '...')INSERT INTO statements (topic_id, claim) VALUES (N, '...')UPDATE statements SET claim = '...', updated = datetime('now') WHERE id = NUPDATE topics SET title = '...', tags = '...', updated = datetime('now') WHERE id = NStored in **[Topic Title]** ([domain]):
> "[claim text]"
For updates, show the before/after briefly.REQUIRED: You MUST call AskUserQuestion (type: Decision) with these options after confirming what was stored. Do not end your response without this menu:
testing
Audit and consolidate Larvling's knowledge base, tasks, and sessions
tools
Generate or view a session summary
tools
Show a quick overview of Larvling's state
tools
Browse and search past sessions