원클릭으로
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 직업 분류 기준
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
| 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: