Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

obsidian-plugin-dev-skillObsidian plugin DEV 技能

Agent Skill

obsidian-plugin-dev-skill 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,304

周安装

183

GitHub Stars

公开资料未说明

下载量

1,508
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install obsidian-plugin-dev-skill

简介

辅助开发 Obsidian 插件的前端与逻辑能力。

  • 涵盖 TypeScript、React 与编辑器扩展支持。
  • 使用 openclaw skills install obsidian-plugin-dev-skill 安装。
  • 需确认开发环境与依赖项版本匹配。
  • 建议遵循官方插件开发规范编码。obsidian-plugin-dev-skill 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
obsidian-plugin-dev
description
>
version
1.0.0

Obsidian Plugin Development

When This Skill Applies

Use this skill when the user is:

  • Creating a new Obsidian plugin from scratch
  • Implementing plugin features (commands, views, modals, settings, editor extensions)
  • Debugging plugin issues or unexpected behavior
  • Configuring build tools (Vite, esbuild, rollup)
  • Writing tests for Obsidian plugins
  • Setting up CI/CD and release workflows
  • Preparing a plugin for community submission
  • Working with CodeMirror 6 editor extensions
  • Integrating React/Svelte/Vue into Obsidian views

Critical Rules (Always Follow)

#RuleWhy
1Never use global app — use this.appGlobal app breaks in multi-window; submission rejected
2Never use innerHTML/outerHTML — use createEl(), createDiv(), setText()XSS vulnerability; instant rejection
3Use registerEvent() for all event subscriptionsAuto-cleanup on unload; prevents memory leaks
4No default hotkeys — let users configureHotkey conflicts with other plugins
5Use requestUrl() over fetch()Bypasses CORS; works on mobile
6Use normalizePath() for user-provided pathsHandles cross-platform path differences
7Prefer vault.process() over vault.modify()Atomic operation; safe with concurrent edits
8Use FileManager.processFrontMatter() for YAMLNever parse/serialize YAML manually
9Use Sentence case for all UI textObsidian convention; submission requirement
10Use setHeading() not <h1>/<h2>Semantic; supports RTL; submission requirement
11Import only what you use — no unused classesCleaner code; easier audits; submission reviewers check this
12Use checkCallback when command depends on contextcallback = always available; checkCallback = conditionally shown; editorCallback = needs editor
13Always provide .theme-dark / .theme-light CSS variantsObsidian CSS vars auto-adapt, but explicit theme blocks ensure edge cases render correctly; submission reviewers check this
14No regex lookbehind(?!...) OK, (?<=...) NOT OKBreaks on iOS Safari < 16.4; submission rejected
15All interactive elements keyboard accessibleTab navigation + Enter/Space; submission requirement
16ARIA labels on all icon-only buttonsScreen reader support; submission requirement
17Touch targets ≥ 44×44pxMobile usability; submission requirement
18Use vault.configDir not .obsidianCross-platform compatibility; submission requirement
19Use fileManager.trashFile() not vault.delete()Respects user trash settings
20Use AbstractInputSuggest not TextInputSuggestBuilt-in API; Liam's copy-pasted implementation is banned
21Create versions.json — maps plugin version → min Obsidian versionSubmission bot checks for it; auto-reject if missing
22Version your settings schema_settingsVersion fieldEnables migration pipeline on upgrade; prevents data loss

Quick Reference

Plugin Lifecycle

import { Plugin } from 'obsidian'

export default class MyPlugin extends Plugin {
  async onload() {
    // 1. Load settings FIRST
    await this.loadSettings()
    // 2. Add settings tab
    this.addSettingTab(new MySettingTab(this.app, this))
    // 3. Register commands
    this.addCommand({ id: 'my-command', name: 'My command', callback: () => {} })
    // 4. Register views
    this.registerView(MY_VIEW_TYPE, (leaf) => new MyView(leaf))
    // 5. Register editor extensions
    this.registerEditorExtension(myExtension)
    // 6. Register events
    this.registerEvent(this.app.vault.on('modify', (file) => {}))
    this.registerDomEvent(document, 'click', (evt) => {})
    this.registerInterval(window.setInterval(() => {}, 1000))
  }

  async onunload() {
    // Resources registered with register*() are auto-cleaned
    // Manual cleanup needed for: MutationObserver, React root, vault.on() in React
  }
}

Essential API Cheatsheet

NeedAPI
Get active filethis.app.workspace.getActiveFile()
Read filethis.app.vault.cachedRead(file)
Modify file (background)this.app.vault.process(file, (data) => data)
Modify file (editor)editor.replaceSelection(), editor.getRange()
Create filethis.app.vault.create(path, content)
Delete filethis.app.fileManager.trashFile(file)
Rename filethis.app.fileManager.renameFile(file, newPath)
Read frontmatterthis.app.metadataCache.getFileCache(file)?.frontmatter
Write frontmatterthis.app.fileManager.processFrontMatter(file, (fm) => {})
Show notificationnew Notice('message', duration)
Open modalnew MyModal(this.app).open()
Get active editorthis.app.workspace.activeEditor?.editor
Platform checkPlatform.isMacOS, Platform.isMobile, Platform.isDesktop
Network requestrequestUrl({ url, method, headers, body })
Persist datathis.loadData() / this.saveData(data)
Secure storagethis.app.secretStorage.setSecret(id, value) (v1.11.4+)
Detect themedocument.body.classList.contains('theme-dark')

Command Callback Decision Tree

Does the command need an active editor?
├─ YES → editorCallback
│        (automatically hidden when no editor; gives you editor + view)
│
└─ NO → Does it need any context to run? (active file, leaf, etc.)
         ├─ YES → checkCallback
         │        (return true when available; run action on !checking)
         │
         └─ NO → callback
                  (always visible, always runs)

Examples:

// Always available — no conditions
this.addCommand({
  id: 'open-settings',
  name: 'Open plugin settings',
  callback: () => { this.openSettings() }
})

// Needs active file — use checkCallback
this.addCommand({
  id: 'copy-stats',
  name: 'Copy note statistics',
  checkCallback: (checking) => {
    const file = this.app.workspace.getActiveFile()
    if (file) {
      if (!checking) this.copyStats(file)
      return true
    }
    return false
  }
})

// Needs editor — use editorCallback
this.addCommand({
  id: 'wrap-callout',
  name: 'Wrap selection in callout',
  editorCallback: (editor) => {
    const sel = editor.getSelection()
    editor.replaceSelection(`> [!note]\
> ${sel}`)
  }
})

Import Hygiene

Only import what you actually use. Submission reviewers flag unused imports.

// Good — only what's needed
import { MarkdownView, Notice, Plugin, PluginSettingTab, Setting } from 'obsidian'

// Bad — unused imports
import { App, Editor, Modal, Notice, Plugin, PluginSettingTab, Setting } from 'obsidian'
//      ^^^ ^^^^^^ ^^^^^ — never used

Common Pitfalls

  1. Storing view references → use getLeavesOfType() on demand
  2. Passing plugin as Component → use this.addChild() instead
  3. Detaching leaves in onunload → they reinitialize on update
  4. Not removing sample codeMyPlugin, SampleSettingTab must be renamed
  5. Using vault.modify() on active file → use Editor API instead
  6. Manual YAML parsing → use processFrontMatter() instead
  7. fetch() for API calls → use requestUrl() instead
  8. Hardcoded colors in CSS → use var(--text-normal), etc.
  9. navigator.platform → use Platform.isMacOS instead
  10. var declarations → use const/let instead
  11. Promise chains → use async/await instead
  12. console.log in production → remove or use console.debug with conditional
  13. Regex lookbehind (?<=...) → breaks on iOS Safari < 16.4; use alternative patterns
  14. Object.assign(defaults, saved) → mutates defaults; use Object.assign({}, defaults, saved)
  15. Hardcoded .obsidian path → use this.app.vault.configDir instead
  16. Shallow merge for nested settings → use deep merge; shallow merge loses nested defaults
  17. vault.delete() for removing files → use fileManager.trashFile() to respect user settings
  18. Liam's TextInputSuggest → use built-in AbstractInputSuggest instead
  19. Missing styles.css → create empty file if no styles (submission bot checks for it)
  20. Missing versions.json → create with { "1.0.0": "1.0.0" } (submission bot checks for it)
  21. No settings version tracking → add _settingsVersion to settings interface for migration support

Detailed References

TopicFileWhen to Load
Lifecycle & Core APIreference/lifecycle.mdAlways; building any plugin feature
ESLint Rules (28 rules)reference/eslint-rules.mdESLint setup, pre-submission audit, rule reference
Accessibility (MANDATORY)reference/accessibility.mdKeyboard nav, ARIA labels, focus indicators, touch targets
CodeMirror 6 Editor Extensionsreference/editor-extensions.mdEditor decorations, syntax highlighting, live preview
React / Svelte / Vue Integrationreference/frameworks.mdUsing React/Vue/Svelte in views or settings
Vault & File Operationsreference/vault-operations.mdFile CRUD, frontmatter, events, caching
Settings & Data Migrationreference/settings-migration.mdSettings UI, load/save, deep merge, migration pipelines
Security & SecretStoragereference/security.mdAPI keys, credentials, XSS prevention, network requests
CSS Stylingreference/css-accessibility.mdTheming, CSS variables, scoping, mobile styles
Dev Workflow & CLIreference/dev-workflow.mdBuild, hot-reload, CLI debugging, Obsidian CLI, ESLint config
Testingreference/testing.mdUnit tests, mocking Obsidian API, Jest/Vitest
CI/CD & Releasereference/cicd-release.mdGitHub Actions, version bump, community submission

Development Workflow

Quick Dev Loop (with Obsidian CLI)

# Build and hot-reload
npm run build && obsidian plugin:reload id=<plugin-id>

# Check for errors
obsidian dev:errors

# Inspect DOM
obsidian dev:dom selector=".my-plugin-view"

# Take screenshot
obsidian dev:screenshot

# Evaluate JS in Obsidian context
obsidian eval code="app.plugins.plugins"

Without Obsidian CLI

# Build and copy to test vault
npm run build && cp main.js manifest.json styles.css /path/to/TestVault/.obsidian/plugins/<plugin-id>/
# Then reload in Obsidian: Ctrl+P → "Reload app without saving"

Pre-Submission Checklist

Before creating a release or submitting to community plugins, verify:

Submission Validation (Bot checks — will auto-reject if incorrect)

  • [ ] id in manifest.json does not contain "obsidian"; doesn't end with "plugin"; lowercase only
  • [ ] name does not contain "Obsidian"; doesn't end with "Plugin"; doesn't start with "Obsi" or end with "dian"
  • [ ] description does not contain "Obsidian" or "This plugin"; must end with .?!) punctuation; max 250 chars
  • [ ] manifest.json id, name, description match submission entry in community-plugins.json
  • [ ] LICENSE file present; copyright holder ≠ "Dynalist Inc."; year is current
  • [ ] styles.css exists (empty if no styles)
  • [ ] versions.json exists with correct version mapping
  • [ ] GitHub release has main.js, manifest.json, styles.css attached

Code Quality

  • [ ] All sample/template code removed (MyPlugin, SampleSettingTab, SampleModal)
  • [ ] No innerHTML/outerHTML anywhere in code
  • [ ] No default hotkeys set
  • [ ] No console.log in production (remove or use conditional console.debug)
  • [ ] No unused imports
  • [ ] setHeading() used instead of <h2> in settings
  • [ ] Sentence case for all UI text (run ESLint to verify)
  • [ ] this.app used everywhere (not global app)
  • [ ] All resources cleaned up in onunload()
  • [ ] No Object.assign(defaults, saved) — use Object.assign({}, defaults, saved)
  • [ ] Use fileManager.trashFile() not vault.delete()
  • [ ] No regex lookbehind ((?<=...)) — breaks on iOS
  • [ ] Use vault.configDir not hardcoded .obsidian

Accessibility (MANDATORY)

  • [ ] All interactive elements keyboard accessible (Tab, Enter, Space)
  • [ ] ARIA labels on all icon-only buttons
  • [ ] :focus-visible styled with Obsidian CSS variables
  • [ ] Touch targets ≥ 44×44px
  • [ ] Can use entire plugin without a mouse

ESLint & Release

  • [ ] ESLint passes with eslint-plugin-obsidianmd (npx eslint .)
  • [ ] manifest.json version correct, minAppVersion set
  • [ ] isDesktopOnly: true only if using Node/Electron APIs

Reference Source Tracking

Reference FilePrimary SourcesLast Verified
lifecycle.mdobsidian API docs, gapmiss/obsidian-plugin-skill2026-03
eslint-rules.mdobsidianmd/eslint-plugin v0.1.9, gapmiss/obsidian-plugin-skill2026-03
accessibility.mdgapmiss/obsidian-plugin-skill, obsidian plugin guidelines2026-03
editor-extensions.mdCM6 docs, @codemirror/view source2026-03
frameworks.mdLeonezz/obsidian-plugin-dev-skill, React docs2026-03
vault-operations.mdobsidian API docs, official plugin guidelines2026-03
settings-migration.mdLeonezz/obsidian-plugin-dev-skill2026-03
security.mdgapmiss/obsidian-plugin-skill, obsidian developer policies2026-03
css-accessibility.mddavidvkimball/obsidian-dev-skills, obsidian sample theme2026-03
dev-workflow.mdadriangrantdotorg/Obsidian-Skills, obsidian CLI docs2026-03
testing.mdLeonezz/obsidian-plugin-dev-skill2026-03
cicd-release.mdLeonezz/obsidian-plugin-dev-skill, obsidian submission docs2026-03

To update references: check each source for new content, cross-reference with obsidian developer docs changelog.

Design Decisions

  1. SKILL.md stays under 500 lines — quick reference + links to detailed docs
  2. Reference files are topic-based — load only what you need
  3. Code examples are real — from actual plugin patterns, not toy demos
  4. Do/Don't tables — clear before/after comparisons

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.44%
按下载量换算1,123

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills