
Claudian Installer
- 103 installs
- 711 repo stars
- Updated July 28, 2026
- chujianyun/skills
Automate setup and deployment of tools and projects
About
claudian-installer streamlines installation and setup automation. Use it at launch to automate deployment, reduce friction, and ensure smooth user onboarding.
- Installation
- Setup automation
- Deployment
Claudian Installer by the numbers
- 103 all-time installs (skills.sh)
- Ranked #798 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/chujianyun/skills --skill claudian-installerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 103 |
|---|---|
| repo stars | ★ 711 |
| Last updated | July 28, 2026 |
| Repository | chujianyun/skills ↗ |
What it does
Automate setup and deployment of tools and projects
Files
Claudian Installer
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.
Bundled Version
Current bundled Claudian version: 2.0.2
Installation Workflow
Step 0: 先确认安装目标(必须先做)
开始前先确认:
- 要安装到哪个 Obsidian vault
- 是否允许在目标 vault 下写入
.obsidian/plugins/claudian - 用户是否知道安装后还需要在 Obsidian 里手动启用插件
如果用户已经明确给了 vault 路径,也可以直接继续,但要在回复里说明默认使用该路径。
Step 1: Confirm Vault Path
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.
Step 2: Create Plugin Directory
Create the claudian plugin folder in the vault's plugins directory:
mkdir -p /path/to/vault/.obsidian/plugins/claudianStep 3: Copy Plugin Files
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/Step 4: Enable the Plugin
Remind the user to enable the plugin in Obsidian:
1. Open Obsidian 2. Go to Settings → Community plugins 3. Find "Claudian" in the list 4. Click to enable it
Assets
This skill includes the following plugin files in assets/:
main.js- Plugin main codemanifest.json- Plugin manifeststyles.css- Plugin styles
{
"id": "claudian",
"name": "Claudian",
"version": "2.0.2",
"minAppVersion": "1.4.5",
"description": "Embeds Claude Code as an AI collaborator in your vault. Your vault becomes Claude's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.",
"author": "Yishen Tu",
"authorUrl": "https://github.com/YishenTu",
"isDesktopOnly": true
}