From obsidian-plugin
Manages Obsidian plugins and themes via official CLI: lists/enables/disables/reloads plugins, switches themes, executes JS in runtime, captures screenshots. For plugin development and customization.
npx claudepluginhub laurigates/claude-plugins --plugin obsidian-pluginThis skill is limited to using the following tools:
Manage community plugins, themes, and developer tools using the official Obsidian CLI.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Manage community plugins, themes, and developer tools using the official Obsidian CLI.
Use this skill automatically when:
# All installed plugins
obsidian plugins
# JSON output
obsidian plugins format=json
# Enable a plugin by ID
obsidian plugin:enable id=dataview
# Disable a plugin
obsidian plugin:disable id=dataview
# Hot-reload a plugin during development
obsidian plugin:reload id=my-plugin
# Available themes
obsidian themes
# Set active theme
obsidian theme:set name="Minimal"
# Execute JavaScript in Obsidian's runtime context
obsidian eval code="app.vault.getFiles().length"
# Access the full Obsidian API
obsidian eval code="app.workspace.getActiveFile()?.path"
# Capture Obsidian window
obsidian dev:screenshot path=~/screenshot.png
| Context | Command |
|---|---|
| List plugins (structured) | obsidian plugins format=json |
| Enable plugin | obsidian plugin:enable id=X |
| Disable plugin | obsidian plugin:disable id=X |
| Reload during dev | obsidian plugin:reload id=X |
| List themes | obsidian themes |
| Switch theme | obsidian theme:set name="X" |
| Run JS in Obsidian | obsidian eval code="expression" |