Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

weasleys-wizard-wheezes-obsidian-kanbanweasleys wizard wheezes Obsidian kanban 文档

Agent Skill

weasleys-wizard-wheezes-obsidian-kanban 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,387

周安装

144

GitHub Stars

公开资料未说明

下载量

1,187
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install weasleys-wizard-wheezes-obsidian-kanban

简介

通过将账本、表格或列表转换为可读的列和卡片,而不删除内容,创建和重新组织 Obsidian Kanban 降价板。

SKILL.md

name
weasleys-wizard-wheezes-obsidian-kanban
description
Create, normalize, and reorganize Obsidian Kanban plugin markdown boards. Display name: Weasleys Wizard Wheezes - Obsidian Kanban. Use when working with Obsidian Kanban .md files, turning ledgers, review ledgers, tables, checklists, audit notes, or issue lists into board columns and cards, reformatting existing Kanban boards for readability, or preserving full content while making cards easier to scan. Trigger on requests like “把台账转成 Obsidian 看板”, “整理这个 Kanban 文件”, “优化看板格式但不要删内容”, or “把 Markdown 清单改成 Kanban”.

Weasleys Wizard Wheezes - Obsidian Kanban

Use this skill to edit Obsidian Kanban plugin markdown files directly and safely.

0. Quick examples

Example A: ledger → board

User request:

把《第一轮评论台账》整理成 Obsidian 看板,不要删内容。

Expected approach:

  1. read the source ledger
  2. identify the main organizing axis, usually status or priority
  3. create columns
  4. convert each row into one card
  5. shorten only the card title
  6. preserve the full details in nested bullets

Example B: messy board → cleaner board

User request:

这个 Kanban 太难看了,帮我整理一下,但别删信息。

Expected approach:

  1. keep frontmatter and kanban settings
  2. keep existing columns unless the user asks to change them
  3. shorten card titles for scanability
  4. move detail into nested bullets
  5. add lightweight markers only if they improve readability

1. Core principle

  1. Preserve plugin-recognized structure.
  2. Prefer direct markdown editing over UI simulation.
  3. Unless the user explicitly asks for compression, do not delete content.
  4. Optimize for two layers at once:

1. board-level scanability 2. card-level information fidelity

2. Recognize a standard board

Treat the file as an Obsidian Kanban board when it contains both of these markers:

---
kanban-plugin: board
---

and/or a settings block like:

%% kanban:settings

Column headings are typically ## Column Name. Cards are typically markdown task items under each column.

3. Safe editing rules

  1. Keep the frontmatter valid.
  2. Keep the kanban-plugin: board marker intact.
  3. Preserve the %% kanban:settings %% block unless the user explicitly asks to change board behavior.
  4. Do not silently convert the board into a normal note.
  5. Do not remove card details when the user asks only for formatting or reorganization.
  6. When uncertain about advanced plugin-specific syntax, read the existing file first and make the smallest valid edit.

4. Default transformation strategy

When converting a structured source document into a Kanban board:

  1. Choose columns using the source's strongest organizing axis:

1. status 2. priority 3. workflow stage 4. owner / reviewer

  1. Turn each row / ledger item / issue into one card.
  2. Use a short scanable title for the card first line.
  3. Put the full original content into indented bullet lines under the card.
  4. Preserve important fields explicitly, such as:

- source location - status - priority - impact - owner - due date - rewrite-needed / approval-needed flags

5. Card formatting pattern

Prefer this pattern unless the user requests another layout:

- [ ] Short card title
  - 原始内容:完整原文或压缩后不丢信息的版本
  - 对应位置:...
  - 判断类型:...
  - 当前状态:...
  - 优先级:...

Guidelines:

  1. The first line should help the user scan the board quickly.
  2. The nested bullets should preserve detail.
  3. If the source item is already concise, keep it verbatim as the card title.
  4. If the source item is long, compress only the title, not the stored detail.

6. Reformatting an existing board

When the board already exists but is hard to read:

  1. Keep the existing columns unless the user asks to change the board logic.
  2. Shorten only card titles.
  3. Move full detail into nested bullets.
  4. Add lightweight visual markers only if they improve scanability, for example:

- 🔥 urgent / P0 - 📝 pending absorption - ✅ done - 📚 terminology

  1. Avoid decorative formatting that makes raw markdown harder to maintain.

7. Handling “do not delete content” requests

When the user says not to delete content:

  1. Preserve every source item.
  2. Preserve all semantic fields.
  3. Preserve important wording inside the detail bullets.
  4. You may rewrite card titles for readability.
  5. If full fidelity and compactness conflict, choose fidelity and explain the tradeoff briefly.

8. Recommended workflows

8.1 Ledger/table → Kanban

  1. Read the source note.
  2. Identify the organizing axis.
  3. Draft column layout.
  4. Convert each entry into one card.
  5. Verify no rows were dropped.
  6. Write back valid Kanban markdown.

8.2 Existing Kanban → cleaner Kanban

  1. Read the board.
  2. Preserve frontmatter and settings.
  3. Preserve columns unless asked otherwise.
  4. Refactor card titles for scanability.
  5. Push full detail into nested bullets.
  6. Verify the board still parses as Kanban markdown.

9. What this skill is for

Use this skill for:

  1. Obsidian Kanban plugin .md files
  2. converting review ledgers, issue lists, audit notes, or task tables into boards
  3. formatting-heavy board cleanup where the content must be preserved
  4. repeated board normalization across a vault or project

10. What this skill is not for

Do not use this skill alone for:

  1. generic Obsidian note authoring without board structure
  2. .canvas files
  3. .base files
  4. workflows that require Obsidian UI behavior rather than markdown file editing

In those cases, use the more specific Obsidian skill instead.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.35%
按下载量换算894

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills