1. 进入插件目录 cd 工程文件\.obsidian\plugins git clone https://github.com/YishenTu/claudian.git
2. 进入claudian目录,安装依赖 cd 工程文件\.obsidian\plugins\claudian npm install npm run build
3. 启用插件 Settings → Community plugins → Enable "Claudian"`
3. 接入龙虾,打通IM端窗口式
添加工作区
添加技能调用知识库文件,自动识别AGENTS.md
如果希望openclaw每次回复都读取知识库图片,修改SOUL.md
1 2
`添加这条信息 - When the skill **llm-wiki** is triggered, the relevant images need to be sent along with the answers to the questions. Note that the images should not be displayed repeatedly.`
`#!/bin/sh basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in *CYGWIN*|*MINGW*|*MSYS*) if command -v cygpath > /dev/null 2>&1; then basedir=`cygpath -w "$basedir"` fi ;; esac
if [ -x "$basedir//bin/sh" ]; then exec "$basedir//bin/sh" "$basedir/node_modules/@tobilu/qmd/bin/qmd" "$@" else exec /bin/sh "$basedir/node_modules/@tobilu/qmd/bin/qmd" "$@" fi`
qmd.cmd(Windows 批处理)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
`@ECHO off SETLOCAL
REM Get the directory of this script SET "SCRIPT_DIR=%~dp0"
REM Remove trailing backslash SET "SCRIPT_DIR=%SCRIPT_DIR:~0,-1%"
REM Navigate to the package directory and execute the CLI IF EXIST "%SCRIPT_DIR%\node_modules\@tobilu\qmd\dist\cli\qmd.js" ( node "%SCRIPT_DIR%\node_modules\@tobilu\qmd\dist\cli\qmd.js" %* ) ELSE ( ECHO Error: qmd.js not found. Please reinstall the package. EXIT /B 1 )`