ワンクリックで
remember
Store knowledge that Larvling will remember across sessions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Store knowledge that Larvling will remember across sessions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | remember |
| description | Store knowledge that Larvling will remember across sessions |
| argument-hint | [knowledge to remember] |
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:
Query, insert, update, or inspect tables in the larvling SQLite database (larvling.db). Use when the user asks to search sessions, messages, topics, statements, tasks, or updates, run reports, or interact with the larvling database.
Show a quick overview of Larvling's state
Audit and consolidate Larvling's knowledge base, tasks, and sessions
Export a session conversation to markdown
Remove stored knowledge from Larvling's memory
Search or list knowledge stored in Larvling's memory