From goldfish
Use when starting a new session, after context loss, searching for prior work, or when the user asks what happened previously and needs Goldfish memory restored
How this skill is triggered — by the user, by Claude, or both
Slash command
/goldfish:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Call recall when resuming prior work, after context loss or compaction, when the user asks, or when earlier decisions and cross-project context are relevant.
Call recall when resuming prior work, after context loss or compaction, when the user asks, or when earlier decisions and cross-project context are relevant.
recall({})
recall()recall({ since: "2h" })recall({ days: 7, limit: 20 })recall({ search: "auth refactor", full: true })recall({ type: "decision" })recall({ tags: ["db", "ops"] })recall({ file: "workspace.ts" })recall({ symbol: "recoverWorkspace" })recall({ workspace: "all", days: 1 })recall({ limit: 0 })type keeps one of checkpoint/decision/incident/learning (untyped counts as checkpoint); tags matches checkpoints carrying ALL listed tags, case-insensitive. file matches git.files path suffixes; symbol matches exact symbol names. All combine with search and each other.
Recall can surface:
brief({ action: "get" }), then complete, archive, or update itTreat the active brief as direction, not as an execution checklist. If you need implementation detail, read docs/plans/.
npx claudepluginhub anortham/goldfish --plugin goldfishCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.