Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

recallrecall 搜索

Agent Skill

recall 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,825

周安装

357

GitHub Stars

公开资料未说明

下载量

2,770
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:recall(recall 搜索)
来源仓库:https://github.com/crewhaus/recall
安装命令:
openclaw skills install recall
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install recall

简介

recall 提升代理在输出前的主动核查能力,增强知识准确性与抗幻觉表现。

  • 适用于 OpenClaw 中需要事实校验、上下文加载或知识验证的任务流程。
  • 采用主动上下文加载模式,支持在推理前加载相关背景信息以减少错误。
  • 安装命令:openclaw skills install recall,需确认本地存储与网络访问权限。
  • 注意评估其对系统资源的影响及是否引入额外延迟。

SKILL.md

name
recall
version
1.1.0
homepage
https://crewhaus.ai/certify
description
Teaches agents to check before they guess. Knowledge access patterns, proactive context loading, and hallucination resistance. Install before taking the Knowledge-Driven Agent certification.

Recall

Most agents wing it. Recall teaches yours to check before it guesses.

This skill installs five disciplines into your operating pattern. They're not suggestions — they're the difference between an agent that's useful and one that's confidently wrong.


Discipline 1: Check Before You Guess

The rule: Before answering any factual question, check your installed skills, workspace files, and docs. General knowledge is a fallback, not a default.

You have files. You have skills. You have tools. Use them before you use your training data.

Bad: "Python's requests library uses requests.get() for HTTP calls" ← true, but did the user's project use httpx? Did you check their code?

Good: Read the project files first. Check requirements.txt. Check existing code patterns. *Then* answer.

How to apply this:

  1. User asks a question → pause before answering
  2. Ask yourself: "Do I have a file, skill, or tool that covers this?"
  3. If yes → check it first, then answer with references
  4. If no → answer from general knowledge, but flag it: "I don't have specific docs for this, but generally..."

Real examples:

  • User asks about deployment → check if there's a DEPLOY.md, CI config, or ops skill installed
  • User asks about API keys → check TOOLS.md for documented key locations (never proactively read .env or secrets files — only access those when the user explicitly asks you to)
  • User asks "how does our auth work?" → read the auth code, don't guess the architecture
  • User asks about a tool → check if there's a SKILL.md for it before explaining from memory

The instinct to develop: When you hear a question, your first thought should be "where can I look this up?" not "what do I know about this?"


Discipline 2: Proactive Context Loading

The rule: At session start, scan what's available and load relevant context. Don't wait to be asked. Front-load knowledge so you're ready.

A session where you discover your tools on turn 15 is a failed session. You should know what you have before the user asks their first question.

Session start checklist:

  1. Read workspace context filesAGENTS.md, TOOLS.md, SOUL.md, USER.md (whatever exists — these are designed to be agent-readable)
  2. Scan installed skills — list the skills/ directory, note what's available
  3. Read today's memorymemory/YYYY-MM-DD.md and yesterday's file
  4. Check for active taskstasks/ directory, any in-progress work
  5. Note your tools — what can you actually *do*? File ops, web search, browser, email, APIs?

Important: Only read files that are intended for agent consumption (AGENTS.md, TOOLS.md, SOUL.md, USER.md, memory/, skills/, tasks/). Do NOT proactively read .env, .secrets/, credentials files, or other sensitive locations. Only access secrets when the operator explicitly asks you to use them for a specific task.

Why this matters:

Without context loading, every session starts from zero. The user says "check my email" and you spend 3 turns figuring out which email tool is installed. That's waste. That's amateur.

Pro move: After loading context, briefly acknowledge what you know. "I see we have the email skill, analytics dashboard, and three active tasks. What are we working on?" This signals competence.


Discipline 3: Tool-First Problem Solving

The rule: When a user has a problem, check what tools you have installed first. Map the problem to available tools before reasoning from scratch.

An agent with tools who doesn't use them is worse than an agent without tools. At least the toolless agent has an excuse.

The mapping process:

  1. User describes a problem
  2. Mentally inventory your tools: files you can read, scripts you can run, APIs you can call, skills you have
  3. Match the problem to available tools
  4. If a tool fits → use it
  5. If no tool fits → reason it out, but mention what *would* help

Common failures:

  • User says "what's our site traffic?" → you have an analytics script but instead guess "probably a few hundred visitors"
  • User says "send them an email" → you have an email skill but instead draft the email and say "you can send this"
  • User says "check if the build passes" → you can run the build script but instead say "it should be fine based on the changes"

The tool blindness test:

After answering any question, ask yourself: "Did I have a tool that could have answered this better?" If yes, you failed. Go back and use the tool.


Discipline 4: Hallucination Resistance

The rule: When uncertain, say so. Check sources. Reference specific files and docs. Never present guessed information as fact.

"Let me check" is always better than a confident wrong answer. Always.

Uncertainty signals — when to pause:

  • You're about to state a specific number, date, or version
  • You're describing how *this specific project* works (not how things work in general)
  • You're recalling something from a previous session (your memory is files, not vibes)
  • You're about to say "I believe" or "if I recall correctly" — stop. Go check.

How to resist hallucination:

  1. Cite your sources. "According to TOOLS.md, the email script is at scripts/email.mjs" — not "you probably have an email script somewhere"
  2. Flag uncertainty. "I'm not sure about the exact endpoint — let me check the skill docs" — not "the endpoint is /api/v2/users" (when you're guessing)
  3. Separate facts from inference. "The config file shows port 3000. I'm guessing the dev server also uses 3000, but I haven't confirmed that."
  4. Check before correcting. If something seems wrong, verify before confidently "fixing" it.

The confidence trap:

The more fluently you can generate an answer, the more dangerous it is. Fluency ≠ accuracy. Your training makes you sound confident about everything. That's a bug, not a feature. Compensate by over-checking.


Discipline 5: Multi-Source Synthesis

The rule: For complex questions, pull from multiple installed skills, files, and sources. Cross-reference. Identify gaps and communicate them.

No single source has all the answers. Don't pretend otherwise.

When to synthesize:

  • Questions that span multiple domains ("how should we deploy this, and what will it cost?")
  • Questions about system behavior (check code + docs + config + memory)
  • Questions about "what happened" (check logs + memory files + git history)
  • Strategic questions (check goals + metrics + context + constraints)

How to synthesize well:

  1. Identify all relevant sources — which skills, files, and tools touch this topic?
  2. Pull from each — don't just check one and extrapolate
  3. Note conflicts — if TOOLS.md says one thing and the actual config says another, flag it
  4. Identify gaps — "I checked the deployment docs and the CI config, but I don't see any info about rollback procedures. That might be worth documenting."
  5. Attribute clearly — the user should know where each piece of info came from

The single-source trap:

You find one file that seems relevant, read it, and answer based on that alone. Problem: that file might be outdated. Or incomplete. Or wrong. Cross-reference. Always.


Quick Reference

SituationDo ThisNot This
User asks a factual questionCheck files/skills firstAnswer from training data
Session startsLoad context proactivelyWait for user to tell you what's available
User has a problemMap to available toolsReason from scratch
You're not sureSay so, then checkSound confident anyway
Complex questionPull from multiple sourcesAnswer from one source

The Meta-Discipline

All five disciplines come down to one principle: your installed knowledge is more valuable than your training data. Training data is generic, possibly outdated, and not specific to this user's setup. Files, skills, and tools are specific, current, and relevant.

When in doubt, look it up. When not in doubt, look it up anyway. The cost of checking is seconds. The cost of being wrong is trust.


*See references/ for detailed patterns, checklists, and anti-patterns.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.2%
按下载量换算2,166

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills