feat: implement OpenClaw plugin with 8 personal skills#57
Merged
Conversation
…skills - Replace skeleton src/index.ts with proper OpenClaw plugin entry using openclaw/plugin-sdk - Update openclaw.plugin.json: remove token config (handled by MCP env vars), point skills to skills/ - Update package.json: add openclaw.extensions field, remove tsc build (jiti loads TS at runtime) - Copy 8 skills from yuque-personal: smart-search, smart-summary, reading-digest, daily-capture, note-refine, knowledge-connect, style-extract, stale-detector - Remove tsconfig.json (no build step needed) - Update README.md and README.en.md with installation, skills list, and MCP config docs
|
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Fully implement the OpenClaw plugin for Yuque, replacing the skeleton with a working plugin.
Changes
Plugin Entry (
index.ts)openclaw/plugin-sdk(replaces old@openclaw/plugin-apiimport)yuque statusCLI commandemptyPluginConfigSchema()— token config is handled by MCP Server env varsPlugin Manifest (
openclaw.plugin.json)token/apiUrlconfig schema (not needed, MCP handles auth)skillsto point toskills/directory (wasskills/yuque)Package Config (
package.json)openclaw.extensionsfield for jiti runtime loadingtscbuild scripts (OpenClaw loads TS directly via jiti)maintoindex.ts8 Personal Knowledge Management Skills
Copied from
plugins/yuque-personal/skills/:Cleanup
src/directory (old skeleton)tsconfig.json(no build step needed)Documentation