Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

personal-memory-wiki个人记忆维基

Agent Skill

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

总安装

5,459

周安装

223

GitHub Stars

1

下载量

1,748
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install personal-memory-wiki

简介

个人记忆维基使用 wkmd 格式管理本地有用信息并支持 HTTP 托管浏览。

  • 适用于构建私有化知识图谱与跨会话检索。
  • 可主动查阅维基百科补充背景知识。
  • 安装命令为 openclaw skills install personal-memory-wiki,需配置本地服务器环境。
  • 使用前建议检查 wiki 更新机制与版本控制兼容性。

SKILL.md

name
personal-wiki
description
Uses wikmd to manage a personal, local wiki of useful information. Wiki can be hosted on HTTP for manual browsing and review. Proactively consult the wiki when the user mentions projects, research topics, decisions, or any topic that might be documented. Regularly review and update the wiki with new insights, research findings, and contextual information.
homepage
metadata
openclaw
emoji
📚
requires
env

Personal Wiki

Manage a personal wiki using Wikmd, a file-based wiki that renders Markdown files with a clean web interface.

When to Use

Active Triggers — Use immediately when:

  • "Create a page about..."
  • "Add to my wiki"
  • "Research X and create a page about it"
  • "Update my wiki with..."

Proactive Triggers — Consult the wiki when:

  • User mentions projects, work, or ongoing tasks
  • User discusses research, learning, or exploring new topics
  • User references decisions, plans, or goals
  • User mentions people, places, or organizations repeatedly
  • User asks questions about topics that might be documented
  • Before making recommendations — check if wiki has relevant context
  • When synthesizing information — see if wiki has related pages

Maintenance Triggers — Update the wiki when:

  • After completing research or gathering new information
  • When learning something worth remembering
  • After making decisions worth documenting
  • When encountering useful resources, tools, or references
  • When patterns or insights emerge from conversations
  • During heartbeat checks — review for outdated or incomplete pages

Installation

Prerequisites

  1. Python 3 and pip installed
  2. Git for version control

Install Wikmd

pip install wikmd

Or via pipx (recommended):

pipx install wikmd

Setup Wiki Directory

  1. Create your wiki root directory:
mkdir -p ~/personal-wiki/wiki
cd ~/personal-wiki
git init
  1. Create a basic configuration file (wiki_config.yaml) in your wiki root:
wiki_directory: "./wiki"
homepage: "homepage"
homepage_title: "My Wiki"
host: "127.0.0.1"
port: 5000
authentication: false
hide_folder_content: false

**note: if you set the host to 0.0.0.0 you can access the wiki on your network - but be cautious about this opening up your data**
  1. Run the wiki:
wikmd --config wiki_config.yaml

Visit http://localhost:5000 to view your wiki.

Configuration

Environment Variable

This skill requires the PERSONAL_WIKI_ROOT environment variable to be set:

export PERSONAL_WIKI_ROOT="<PATH>/personal-wiki"

Set this via OpenClaw config:

openclaw config set skills.entries.personal-wiki.env.PERSONAL_WIKI_ROOT "<PATH>/personal-wiki"

Wiki Directory Structure

This is an example of how you can structure the wiki:

PERSONAL_WIKI_ROOT/
├── wiki/                    # Markdown files go here
│   ├── homepage.md         # Main landing page
│   ├── projects/
│   │   └── my-project.md
│   ├── research/
│   │   └── topic-notes.md
│   ├── people/
│   │   └── contacts.md
│   ├── decisions/
│   │   └── architecture-choices.md
│   └── resources/
│       └── useful-links.md
├── wiki_config.yaml        # Wikmd configuration
└── .git/                   # Version control

Working with the Wiki

Reading from the Wiki

Always check the wiki before:

  1. Making recommendations — the wiki may have preferences or constraints documented
  2. Answering questions — the user may have already researched this
  3. Planning — there may be existing projects or goals to align with
  4. Researching — avoid duplicating effort by checking what's already known

To read the wiki:

# List all pages
ls -la $PERSONAL_WIKI_ROOT/wiki

# Read a specific page
cat $PERSONAL_WIKI_ROOT/wiki/homepage.md
cat $PERSONAL_WIKI_ROOT/wiki/projects/active-project.md

# Search for content
grep -r "topic" $PERSONAL_WIKI_ROOT/wiki --include="*.md"

Creating Pages

  1. Create a Markdown file in the wiki subdirectory:

- Use folders for organization (e.g., projects/, research/, decisions/) - File names become page URLs (e.g., projects/my-project.md/projects/my-project)

  1. Add content using Markdown syntax
  1. Commit the changes — the wiki uses git for version control:
   cd $PERSONAL_WIKI_ROOT
   git add .
   git commit -m "Add page about X"

Updating Pages

When adding new information to existing pages:

  1. Append to the relevant section or create new sections
  2. Include dates for time-sensitive information
  3. Cross-reference related pages with WikiLinks
  4. Commit the changes

Integrating with Memory

The wiki is an extension of your memory system:

  • After conversations: Review if anything discussed should be captured
  • After research: Document key findings and sources
  • When patterns emerge: Create or update pages that connect related information
  • During heartbeats: Check for pages needing updates or maintenance

Wikmd Markdown Features

Wikmd supports standard Markdown plus these extensions:

  • WikiLinks: Link to other pages with [[Page Title]] or [[Another Page|custom text]]
  • Table of Contents: Add [TOC] to insert a table of contents
  • Code Blocks: Syntax highlighting with triple backticks
  • LaTeX Math: Inline $...$ and block $$...$$ math rendering
  • Images: Store images in wiki/images/ and reference with ![alt](images/pic.jpg)
  • Mermaid Diagrams: Create flowcharts, sequence diagrams, etc.

See Wikmd Documentation for full syntax details.

Privacy & Security

  • Scope: This skill only creates/modifies Markdown files in PERSONAL_WIKI_ROOT/wiki, reads documentation from https://linbreux.github.io/wikmd/ and hosts the Wiki on a local http server
  • Data Handling: All content is stored locally; no data is sent to external services
  • Version Control: Use git to track changes and maintain history

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.25%
按下载量换算1,385

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills