Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

anamneseanamnese 搜索

Agent Skill

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

总安装

6,614

周安装

265

GitHub Stars

公开资料未说明

下载量

2,141
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install anamnese

简介

anamnese 作为用户的持久记忆系统,在每次对话开始时加载以维持上下文连贯。

  • 适用于需要跨会话保持状态的任务,如长期项目跟进或个人助理场景。
  • 通过 clawhub 安装后,默认启用 get_ 系列接口实现记忆存取。
  • 建议定期清理过期条目以防内存溢出或信息过载。
  • anamnese 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
anamnese
description
Load this skill at the start of every conversation. Anamnese is the user's persistent memory and productivity system -- it should always be active. Call get_user_profile first to load context, then continuously capture meaningful information: personal details, preferences, decisions, tasks, goals, schedules, and knowledge worth saving. You have persistent memory across sessions via notes with scope \"ai_client\" -- use this to learn and remember how to best assist this user. Save learnings as you go: interaction patterns, corrections received, behavioral preferences, what works and what doesn't. Don't wait until the end of a conversation.
user-invocable
false

Anamnese

Anamnese is the user's cloud-persistent memory and productivity system. Use it to store, retrieve, and manage personal information, tasks, goals, and notes across sessions.

Start Every Conversation

Call get_user_profile at the beginning of each conversation to load the user's full context: facts, goals, tasks, moments, and profile data.

Proactive Capture

Be the user's memory. Capture what matters automatically -- don't wait to be asked.

As you converse, continuously identify information worth remembering and save it immediately using the appropriate tool. Don't ask "should I save this?" -- just save it if it's meaningful.

What to Capture

SignalAction
Personal details ("I moved to Austin", "I prefer TypeScript")save_memory type="fact"
Decisions and outcomes ("We chose Postgres", "I got the offer")save_memory type="moment" with occurred_at
Process explanations, corrections, technical contextsave_note
Commitments ("I need to finish by Friday", "Remind me to...")create_task
Aspirations ("I want to learn Rust", "Goal is to ship v2")save_goal
Something you learn about this user or how to help themsave_note with scope: "ai_client" (save immediately, don't wait)

Capture Rules

  1. Check before saving -- search first to avoid duplicates
  2. Be selective -- save what's useful for future conversations, not passing remarks
  3. Use the right type -- facts for stable truths, moments for events, notes for knowledge, tasks for action items, goals for aspirations
  4. Capture corrections -- when the user corrects you, update the relevant fact or note immediately
  5. Don't interrupt -- save in the background without disrupting the conversation flow

Data Types Overview

Facts (type="fact")

Stable truths that persist for months or years: identity, preferences, relationships, health, skills, habits. Save with save_memory type="fact".

Moments (type="moment")

Time-bound events at a specific point. Always include occurred_at. Save with save_memory type="moment".

Notes

Learned knowledge, procedures, guidelines, and technical context. Use save_note for processes, how-tos, architecture details, and user corrections.

Self-Learning

You have persistent memory across sessions via save_note with scope: "ai_client". Use this to become better at helping this user over time.

Save as you go — whenever you learn something, save it immediately. Don't wait until the conversation ends. Examples:

  • Preferences: "User wants brief answers, no preamble"
  • Corrections: "I suggested npm but user uses pnpm exclusively"
  • Interaction patterns: "User gets frustrated when I ask too many questions — just do the task"
  • What works: "Batching small tasks together works well for this user"

Use search_notes with scope: "ai_client" to find your notes from previous sessions. The ai_memory field in get_user_profile also shows your 15 most recent AI memory notes.

Correction Capture

When the user corrects you -- explicitly ("no, wrong", "use X instead") or implicitly (redoing something you did, tone shift to frustration) -- save a structured ai_client note:

  • Title: A concise rule, e.g., "Use pnpm not npm for this project"
  • Tags: correction, a category tag (wrong-tool-choice, wrong-tone, wrong-assumption, wrong-format, wrong-approach, misunderstanding, over-engineering, under-engineering), and any relevant domain tags
  • Content: What I did wrong / What the user wanted / Rule for next time

Before saving, use search_notes with scope: "ai_client" to check for duplicates. If a similar correction exists, use update_note to refine it. Generalize when appropriate ("don't add semicolons" = code style preference) but don't over-generalize.

Don't save: one-time task clarifications ("no, the other file"), facts you didn't know, or project-specific rules that won't apply elsewhere.

Acknowledge briefly: "Got it, I'll remember that." Don't make a big deal of it. If the user is mid-flow, capture silently.

Applying Past Corrections

At conversation start, review the ai_memory field from get_user_profile and load relevant full notes with get_note. Before making choices -- tool selection, response format, coding approach -- check if past corrections apply. Apply rules silently; the user should notice the AI "just gets it" without being told again.

For corrections older than 2 months that haven't been reinforced, occasionally validate: "A while back you mentioned [rule]. Is that still how you prefer it?"

See references/self-review.md for periodic audit and consolidation of accumulated learnings.

Tasks

One-off and recurring tasks with priorities, deadlines, and scheduling. Use create_task. Provide freq for recurring tasks (daily, weekly, monthly). See references/task-management.md for recurring task patterns and advanced usage.

Goals

Long-term objectives and aspirations. Use save_goal.

Core Tools

Memory

save_memory, search_memories, update_memory, delete_memory, get_user_profile

Notes

save_note, search_notes, get_note, update_note, delete_note

Tasks

create_task, search_tasks, update_task, delete_task

Goals

save_goal, search_goals, update_goal, delete_goal

Best Practices

  1. Check before saving -- use search_memories or search_notes to avoid duplicates
  2. Update over create -- if a memory or note already exists on the topic, use update_memory or update_note
  3. Tag appropriately -- use free-form tags (any string, max 5 per item, max 50 chars each)
  4. Prefer moments for events -- when in doubt between fact and moment, choose moment (timestamped)
  5. Ask about priority for tasks if not obvious from context
  6. Confirm deadlines -- make sure you understood the date correctly

Reference Files

For detailed workflows, load these reference files when the relevant domain is active:

  • references/memory-management.md -- Detailed guidance on facts, moments, and notes
  • references/task-management.md -- Recurring tasks, scheduling patterns, and task lifecycle
  • references/self-review.md -- Audit and consolidate accumulated AI learnings

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.86%
按下载量换算1,817

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills