
recall
by tilework-tech
System for managing collections of agent skills. Switch between skillsets seamlessly!
SKILL.md
name: Recall description: Search the Nori knowledge base for relevant context, solutions, and documentation.
Recall
Searches the shared knowledge base for relevant context or fetches specific articles by ID.
When to Use
Search mode - Search for:
- Previous solutions and debugging sessions
- User-provided docs and project context
- Code patterns and architectural decisions
- Bug reports and conventions
Fetch mode - Retrieve full article when:
- You have an article ID from search results
- You need complete article content (not just snippets)
- You want to dig deeper into a specific result
Skip recall when:
- You need on-disk file contents (use Read tool)
- Information is in recent conversation history
- Searching for generic programming knowledge
Usage
Recall is a programmatic google search for internal documents. The search mode gives you snippets. The fetch mode lets you see the full data of those snippets. The best way to use this tool is to iterate back and forth between search and fetch mode.
- Search for something.
- Fetch the data that makes the most sense based on the snippets.
- Read the returned articles in full.
- Decide if there is something else that is worth searching for based on what you learned.
- Repeat.
If you do not find anything in the first search, simply search again with different terms.
Search Mode
node {{skills_dir}}/recall/script.js --query="Your search query" --limit=10
Fetch Mode
node {{skills_dir}}/recall/script.js --id="article_id"
Examples
Search for articles
node {{skills_dir}}/recall/script.js --query="implementing authentication endpoints" --limit=5
Fetch specific article
node {{skills_dir}}/recall/script.js --id="nori_abc123def456"
Output
Search mode: Returns article snippets (truncated to 500 chars) with metadata and search source breakdown (keyword, fuzzy, vector).
Fetch mode: Returns complete article content without truncation, including full metadata (name, ID, type, repository, timestamps).
Requirements
- Paid Nori subscription
- Configured credentials in
~/nori-config.json
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
1ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon

