Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

obsidian-plugin-developmentObsidian plugin 开发

Agent Skill

obsidian-plugin-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

324

周安装

13

GitHub Stars

公开资料未说明

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wemingt/obsidian-plugin-skill --skill obsidian-plugin-development

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • obsidian-plugin-development 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Obsidian Plugin Development Guidelines

You are assisting with Obsidian plugin development. Follow these comprehensive guidelines derived from the official Obsidian ESLint plugin rules, submission requirements, and best practices.

Getting Started

Quick Start Tool

For new plugin projects, use the companion obsidian-plugin-creator skill:

  • Install it alongside this skill: npx skills add gapmiss/obsidian-plugin-skill
  • Or run the generator directly: node <skill-path>/obsidian-plugin-creator/create-plugin.js
  • Generates minimal, best-practice boilerplate with no sample code
  • Detects existing projects and only adds missing files
  • All generated code follows these guidelines automatically

When to Suggest the Tool

Recommend the boilerplate generator when users:

  • Ask "how do I create a new Obsidian plugin?"
  • Want to start a new plugin project
  • Need help setting up the basic structure
  • Want to ensure they start with best practices

Core Principles

  1. Memory Safety: Prevent memory leaks through proper resource management
  2. Type Safety: Use proper type narrowing and avoid unsafe casts
  3. API Best Practices: Follow Obsidian's recommended patterns
  4. User Experience: Maintain consistency in UI/UX across plugins
  5. Platform Compatibility: Ensure cross-platform support (including iOS)
  6. Accessibility: Make all features keyboard and screen reader accessible

Quick Reference

Most Critical Rules (eslint-plugin-obsidianmd v0.1.9+)

Submission & Naming:

  1. Plugin ID: no "obsidian", can't end with "plugin" - Validation bot enforced
  2. Plugin name: no "Obsidian", can't end with "Plugin" - Validation bot enforced
  3. Plugin name: can't start with "Obsi" or end with "dian" - Validation bot enforced
  4. Description: no "Obsidian", "This plugin", etc. - Validation bot enforced
  5. Description must end with .?!) punctuation - Validation bot enforced

Memory & Lifecycle: 6. Use registerEvent() for automatic cleanup - Prevents memory leaks 7. Don't store view references in plugin - Causes memory leaks

Type Safety: 8. Use instanceof instead of type casting - Type safety for TFile/TFolder

UI/UX: 9. Use sentence case for all UI text - "Advanced settings" not "Advanced Settings" 10. Enforce sentence case in JSON locale files - ui/sentence-case-json (use recommendedWithLocalesEn) 11. Enforce sentence case in TS/JS locale modules - ui/sentence-case-locale-module 12. No "command" in command names/IDs - Redundant 13. No plugin ID/name in command IDs/names - Obsidian auto-namespaces 14. No default hotkeys - Avoid conflicts 15. Use .setHeading() for settings headings - Not manual HTML

API Best Practices: 16. Use Editor API for active file edits - Preserves cursor position 17. Use Vault.process() for background file mods - Prevents conflicts 18. Use normalizePath() for user paths - Cross-platform compatibility 19. Use Platform API for OS detection - Not navigator 20. Use requestUrl() instead of fetch() - Bypasses CORS restrictions 21. No console.log in onload/onunload in production - Pollutes console

Styling: 22. Use Obsidian CSS variables - Respects user themes 23. Scope CSS to plugin containers - Prevents style conflicts 24. Don't create <link> or <style> elements - Use styles.css file instead (no-forbidden-elements)

Accessibility (MANDATORY): 25. Make all interactive elements keyboard accessible - Accessibility required 26. Provide ARIA labels for icon buttons - Accessibility required 27. Define clear focus indicators - Use :focus-visible

Security & Compatibility: 28. Don't use innerHTML/outerHTML - Security risk (XSS) 29. Avoid regex lookbehind - iOS < 16.4 incompatibility

Code Quality: 30. Remove all sample/template code - MyPlugin, SampleModal, etc. 31. Don't mutate defaults with Object.assign - Use Object.assign({}, defaults, overrides) (object-assign) 32. Validate LICENSE copyright holder and year - Must not be "Dynalist Inc.", year must be current (validate-license)


Detailed Guidelines

For comprehensive information on specific topics, see the reference files:

Memory Management & Lifecycle

  • Using registerEvent(), addCommand(), registerDomEvent(), registerInterval()
  • Avoiding view references in plugin
  • Not using plugin as component
  • Proper leaf cleanup

Type Safety

  • Using instanceof instead of type casting
  • Avoiding any type
  • Using const and let over var

UI/UX Standards

  • Sentence case enforcement (TypeScript, JSON locale, TS/JS locale modules)
  • recommendedWithLocalesEn config for locale file checks
  • Command naming conventions (no "command", no plugin name, no plugin ID)
  • Settings and configuration best practices

File & Vault Operations

  • View access patterns
  • Editor vs Vault API
  • Atomic file operations
  • File management
  • Path handling

CSS Styling Best Practices

  • Avoiding inline styles
  • Using Obsidian CSS variables
  • Scoping plugin styles
  • Theme support
  • Spacing and layout

Accessibility (A11y)

  • Keyboard navigation (MANDATORY)
  • ARIA labels and roles (MANDATORY)
  • Tooltips and accessibility
  • Focus management (MANDATORY)
  • Focus visible styles (MANDATORY)
  • Screen reader support (MANDATORY)
  • Mobile and touch accessibility (MANDATORY)
  • Accessibility checklist

Code Quality & Best Practices

  • Removing sample code
  • Security best practices
  • Custom rule messages (rule-custom-message)
  • Manifest and LICENSE validation

Plugin Submission Requirements

  • Repository structure
  • Submission process
  • Semantic versioning
  • Testing checklist

API Patterns & Platform Compatibility

  • Obsidian API usage (requestUrl, Editor, Vault.process)
  • Platform compatibility (regex lookbehind, Platform API)
  • Async/await patterns and DOM helpers

ESLint Setup & Integration

  • Installation and configuration
  • Running ESLint and auto-fixing
  • Complete rule ID to skill guideline mapping
  • IDE and CI/CD integration

Essential Do's and Don'ts

Do's ✅

Memory & Lifecycle:

  • Use registerEvent(), addCommand(), registerDomEvent(), registerInterval()
  • Return views/components directly (don't store unnecessarily)

Type Safety:

  • Use instanceof for type checking (not type casting)
  • Use specific types or unknown instead of any
  • Use const and let (not var)

API Usage:

  • Use this.app (not global app)
  • Use Editor API for active file edits
  • Use Vault.process() for background file modifications
  • Use FileManager.processFrontMatter() for YAML
  • Use fileManager.trashFile() for deletions
  • Use normalizePath() for user-defined paths
  • Use Platform API for OS detection
  • Use AbstractInputSuggest for autocomplete
  • Use direct file lookups (not vault iteration)
  • Use requestUrl() instead of fetch() for network requests

UI/UX:

  • Use sentence case for all UI text (and locale JSON/TS files via recommendedWithLocalesEn)
  • Use .setHeading() for settings headings
  • Use Obsidian DOM helpers (createDiv(), createSpan(), createEl())
  • Use window.setTimeout/setInterval with number type

Styling:

  • Move all styles to CSS
  • Use Obsidian CSS variables for all styling
  • Scope CSS to plugin containers
  • Support both light and dark themes via CSS variables
  • Follow Obsidian's 4px spacing grid

Accessibility (MANDATORY):

  • Make all interactive elements keyboard accessible
  • Provide ARIA labels for icon buttons
  • Define clear focus indicators using :focus-visible
  • Use data-tooltip-position for tooltips
  • Ensure minimum touch target size (44×44px)
  • Manage focus properly in modals
  • Test with keyboard navigation

Code Quality:

  • Use async/await (not Promise chains)
  • Remove all sample/template code
  • Test on mobile (if not desktop-only)
  • Follow semantic versioning
  • Minimize console logging (no console.log in onload/onunload in production)

Don'ts ❌

Memory & Lifecycle:

  • Don't store view references in plugin properties
  • Don't pass plugin as component to MarkdownRenderer
  • Don't detach leaves in onunload()

Type Safety:

  • Don't cast to TFile/TFolder (use instanceof)
  • Don't use any type
  • Don't use var

API Usage:

  • Don't use global app object
  • Don't use Vault.modify() for active file edits
  • Don't hardcode .obsidian path (use vault.configDir)
  • Don't use navigator.platform/userAgent (use Platform API)
  • Don't iterate vault when direct lookup exists
  • Don't use fetch() (use requestUrl() instead)

UI/UX:

  • Don't use Title Case in UI (use sentence case)
  • Don't include "command" in command names/IDs
  • Don't duplicate plugin ID in command IDs
  • Don't set default hotkeys
  • Don't create manual HTML headings (use .setHeading())
  • Don't use "General", "settings", or plugin name in settings headings

Styling:

  • Don't assign styles via JavaScript
  • Don't hardcode colors, sizes, or spacing (use CSS variables)
  • Don't use broad CSS selectors (scope to plugin)
  • Don't manually switch themes (CSS variables adapt automatically)
  • Don't create <link> or <style> elements (use styles.css file)

Security & Compatibility:

  • Don't use innerHTML/outerHTML (XSS risk)
  • Don't use regex lookbehind (iOS < 16.4 incompatibility)

Accessibility:

  • Don't create inaccessible interactive elements
  • Don't use icon buttons without ARIA labels
  • Don't remove focus indicators without alternatives
  • Don't make touch targets smaller than 44×44px

Code Quality:

  • Don't use Promise chains (use async/await)
  • Don't use document.createElement (use Obsidian helpers)
  • Don't keep sample class names (MyPlugin, SampleModal, etc.)
  • Don't use console.log in onload/onunload (pollutes console in production)
  • Don't use Object.assign(defaultsVar, other) — mutates defaults; use Object.assign({}, defaults, other) instead
  • Don't leave "Dynalist Inc." as LICENSE copyright holder or an outdated copyright year

When Reviewing/Writing Code

Use this checklist for code review and implementation:

  1. Memory management: Are components and views properly managed?
  2. Type safety: Using instanceof instead of casts?
  3. UI text: Is everything in sentence case?
  4. Command naming: No redundant words?
  5. File operations: Using preferred APIs?
  6. Mobile compatibility: No iOS-incompatible features?
  7. Sample code: Removed all boilerplate?
  8. Manifest: Correct version, valid structure?
  9. Accessibility: Keyboard navigation, ARIA labels, focus indicators?
  10. Testing: Can you use the plugin without a mouse?
  11. Touch targets: Are all interactive elements at least 44×44px?
  12. Focus styles: Using :focus-visible and proper CSS variables?

Common Patterns

Proper Command Registration

// ✅ CORRECT
this.addCommand({
  id: 'insert-timestamp',
  name: 'Insert timestamp',
  editorCallback: (editor: Editor, view: MarkdownView) => {
    editor.replaceSelection(new Date().toISOString());
  }
});

Safe Type Narrowing

// ✅ CORRECT
const file = this.app.vault.getAbstractFileByPath(path);
if (file instanceof TFile) {
  // TypeScript now knows it's a TFile
  await this.app.vault.read(file);
}

Keyboard Accessible Button

// ✅ CORRECT
const button = containerEl.createEl('button', {
  attr: {
    'aria-label': 'Open settings',
    'data-tooltip-position': 'top'
  }
});
button.setText('⚙️');

button.addEventListener('keydown', (e) => {
  if (e.key === 'Enter' || e.key === ' ') {
    e.preventDefault();
    performAction();
  }
});

Themed CSS

/* ✅ CORRECT */
.my-plugin-modal {
  background: var(--modal-background);
  color: var(--text-normal);
  padding: var(--size-4-4);
  border-radius: var(--radius-m);
  font-size: var(--font-ui-medium);
}

.my-plugin-button:focus-visible {
  outline: 2px solid var(--interactive-accent);
  outline-offset: 2px;
}

Additional Resources


Important Notes

  • These guidelines are based on eslint-plugin-obsidianmd v0.1.9 with main-branch additions (28 rules total)
  • Post-v0.1.9 changes (e.g., rule-custom-message, sentence-case enhancements) are tracked in the ESLint setup guide
  • Rules marked as auto-fixable can be automatically corrected with ESLint's --fix flag
  • Accessibility is NOT optional - all interactive elements must be keyboard accessible
  • Always test on mobile devices if your plugin is not desktop-only

When helping with Obsidian plugin development, proactively apply these rules and suggest improvements based on these guidelines. Refer to the detailed reference files for comprehensive information on specific topics.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.53%
按下载量换算37

Claude

30.06%
按下载量换算32

Cursor

18.76%
按下载量换算20

Gemini CLI

10.32%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills