Loading...
Loading...
Personal memory layer — save bookmarks and conversation summaries using the Supacortex CLI. Use when the user says "save to cortex", "save to supacortex", "save this session", or asks to recall past conversations.
npx skill4agent add monorepo-labs/skills supacortexnpm i -g @supacortex/cli
scx loginscx bookmarksscx bookmarks list [--search "<query>"] [--type <tweet|link|youtube>] [--limit <n>] [--offset <n>] [--pretty]scx bookmarks add <url> [--pretty]scx bookmarks get <id> [--pretty]scx bookmarks delete <id> [--pretty]scx conversation| Tier | When to use | Content format |
|---|---|---|
| Throwaway queries, quick lookups | Single sentence: "Asked about JSON parsing in Bun" |
| Most working sessions | Markdown — 3-8 bullet points covering what was discussed, decided, and found |
| Deep sessions with architectural decisions, research findings | Markdown — full structured document with headings, reasoning, code snippets, follow-ups |
scx conversation add "<content>" --tier <brief|summary|detailed> [--title "<title>"] [--metadata '<json>'] [--pretty]--tierconversation_briefconversation_summaryconversation_detailed# Brief — one sentence
scx conversation add "Helped debug CORS issue in Hono API" --tier brief
# Summary — bullet points
scx conversation add "- Set up memory table with tsvector search
- Added triggers for auto search vector generation
- Created API routes for CRUD
- Decided on hybrid schema approach" \
--tier summary \
--title "Memory system setup" \
--metadata '{"source": "claude-code"}'
# Detailed — full document
scx conversation add "## Memory Architecture Decision..." --tier detailed --title "Memory layer brainstorm"scx conversation list [--search "<query>"] [--tier <brief|summary|detailed>] [--limit <n>] [--offset <n>] [--pretty]scx conversation get <id> [--pretty]scx conversation update <id> [--title "<title>"] [--content "<content>"] [--tier <tier>] [--metadata '<json>'] [--pretty]scx conversation delete <id> [--pretty]--metadatasourcetagsprojectcategorybookmarksconversationlistaddgetdeleteconversationupdate--pretty