Help us improve
Share bugs, ideas, or general feedback.
From alltuu-downloader
Installs the Claudian Obsidian plugin by copying files to a target vault and guiding the user to enable it. Activated when users mention Claudian or installing it.
npx claudepluginhub chujianyun/skills --plugin prompt-engineering-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/alltuu-downloader:claudian-installerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install Claudian - an Obsidian plugin that embeds Claude Code as an AI collaborator in your vault, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.
Sets up Obsidian plugin dev environment: clones sample plugin, installs TypeScript/esbuild deps, configures manifest.json/versions.json, symlinks dev vault.
Guides Claude Code plugin creation, directory structure, plugin.json manifest setup, component organization for commands/agents/skills/hooks/lspServers, file conventions, and best practices like auto-discovery and CI integration.
Guides creation and organization of Claude Code plugins: directory layout, plugin.json manifest, component structure for commands, agents, skills, and hooks.
Share bugs, ideas, or general feedback.
Install Claudian - an Obsidian plugin that embeds Claude Code as an AI collaborator in your vault, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.
Current bundled Claudian version: 2.0.2
开始前先确认:
.obsidian/plugins/claudian如果用户已经明确给了 vault 路径,也可以直接继续,但要在回复里说明默认使用该路径。
Ask the user to confirm the Obsidian vault path. The default is the current working directory:
Default: <current working directory>
If the user specifies a different path, use that instead.
Create the claudian plugin folder in the vault's plugins directory:
mkdir -p /path/to/vault/.obsidian/plugins/claudian
Copy the plugin files from this skill's assets to the plugin directory:
cp <skill-path>/assets/main.js /path/to/vault/.obsidian/plugins/claudian/
cp <skill-path>/assets/manifest.json /path/to/vault/.obsidian/plugins/claudian/
cp <skill-path>/assets/styles.css /path/to/vault/.obsidian/plugins/claudian/
Remind the user to enable the plugin in Obsidian:
This skill includes the following plugin files in assets/:
main.js - Plugin main codemanifest.json - Plugin manifeststyles.css - Plugin styles