agentsclimarketplace

Recall

Skill DROOdotFOO/agent-skills/skills/recall

Query the recall knowledge base for relevant context. Searches decisions, patterns, gotchas, links, and insights stored across sessions. TRIGGER when: user asks to "recall", "remember", "what did we decide about", "check knowledge base", or references past decisions/patterns. DO NOT TRIGGER when: user is talking about memory/recall in a general sense, or working on the recall agent code itself.From its SKILL.md

Install
npx -y skills add DROOdotFOO/agent-skills --skill recall

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.4 KB, 411 tokens by cl100k_base, as published. Nobody here has run it

Recall

Query and store knowledge entries (decisions, patterns, gotchas, links, insights) in a local SQLite database with full-text search.

CLI Usage

# Add entries
recall add "Always quote FTS5 tokens containing hyphens" --type gotcha --project recall --tags sqlite,fts5
recall add "Use WAL mode for concurrent reads" --type pattern --project myproj

# Search (full-text, with optional filters)
recall search "sqlite"
recall search "architecture" --project myproj --type decision

# List, get, delete, stats
recall list --project recall --limit 10
recall get 1
recall delete 1
recall stale --days 90
recall stats

Entry Types

TypeUse for
decisionArchitectural or design decisions with rationale
patternReusable approaches or techniques
gotchaNon-obvious pitfalls or footguns
linkExternal resources worth remembering
insightGeneral observations or learnings (default)

When to Use

  • Before making architectural decisions, search for prior decisions on the topic
  • After resolving a tricky bug, store the gotcha for future reference
  • When encountering a useful pattern, capture it with project and tags
  • When finding a valuable resource, save it as a link entry

What You Get

  • Full CLI and MCP tool reference for querying and storing knowledge entries (decisions, patterns, gotchas, links, insights)
  • Entry type guidance so you store knowledge in the right category for later retrieval
  • Search and filtering patterns for finding relevant past context by project, type, or full-text query

Reference

FileTopic
mcp-setup.mdMCP server config, tools, storage, install

What ships with it: 1 file

1.3 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.