Restructure to valid Claude Code plugin format

- Move plugin manifest to .claude-plugin/plugin.json (correct location)
- Move SKILL.md to skills/obsidian-cli/SKILL.md (auto-discovered by Claude Code)
- Move references/ inside skill directory to preserve relative paths
- Update README: Claude Code install uses --plugin-dir, fix reference paths

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
pablo-mano
2026-02-27 22:50:13 +01:00
parent 2fc0cd7c7d
commit 47d3d78f66
5 changed files with 30 additions and 20 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"name": "obsidian-cli",
"description": "Interact with Obsidian vaults using the official Obsidian CLI (v1.12+). Read, create, append, search, and manage notes, daily notes, properties, tags, tasks, bookmarks, templates, themes, sync, plugins, and links — all from the terminal.",
"version": "1.0.1",
"author": {
"name": "pablo-mano"
},
"homepage": "https://github.com/pablo-mano/Obsidian-CLI-skill",
"repository": "https://github.com/pablo-mano/Obsidian-CLI-skill"
}
+20 -12
View File
@@ -53,20 +53,28 @@ Covers **100+ commands** across all major areas:
### Claude Code — Plugin (native) ### Claude Code — Plugin (native)
Install directly from GitHub using the Claude Code plugin system: 1. Clone this repository:
```bash
1. Open Claude Code and run: git clone https://github.com/pablo-mano/Obsidian-CLI-skill
``` ```
/plugin marketplace add https://github.com/pablo-mano/Obsidian-CLI-skill 2. Load the plugin with the `--plugin-dir` flag:
```bash
claude --plugin-dir ./Obsidian-CLI-skill
``` ```
2. Install the `obsidian-cli` skill from the plugin list.
3. Done — the skill auto-triggers when you ask Claude to interact with Obsidian, automate vault operations, manage daily notes, search your vault, etc. 3. Done — the skill auto-triggers when you ask Claude to interact with Obsidian, automate vault operations, manage daily notes, search your vault, etc.
**Alternative — manual install:** **Persistent setup** — add to your project's `.claude/settings.json` so the plugin loads automatically:
1. Download `obsidian-cli-skill-v1.0.1.zip` from the [Releases](https://github.com/pablo-mano/Obsidian-CLI-skill/releases) page. ```json
2. Open Claude Code → Skills plugin settings → Import → select the `.zip`. {
"plugins": {
"obsidian-cli": {
"source": { "source": "github", "repo": "pablo-mano/Obsidian-CLI-skill" }
}
}
}
```
> The `plugin.json` manifest at the repo root makes this repository directly compatible with Claude Code's plugin system. > The `.claude-plugin/plugin.json` manifest makes this repository directly compatible with Claude Code's plugin system.
--- ---
@@ -93,7 +101,7 @@ Cursor has a native skills system (launched Feb 2026) that is directly compatibl
Windsurf uses a Rules system (`.windsurf/rules/`). Rules have a 12,000 character limit per file, so split the skill across two files: Windsurf uses a Rules system (`.windsurf/rules/`). Rules have a 12,000 character limit per file, so split the skill across two files:
1. Create `.windsurf/rules/obsidian-cli.md` — paste the body of `SKILL.md` (everything after the `---` frontmatter). 1. Create `.windsurf/rules/obsidian-cli.md` — paste the body of `SKILL.md` (everything after the `---` frontmatter).
2. Create `.windsurf/rules/obsidian-cli-reference.md` — paste the contents of `references/command-reference.md`. 2. Create `.windsurf/rules/obsidian-cli-reference.md` — paste the contents of `skills/obsidian-cli/references/command-reference.md`.
Set the activation mode to **Always On** or **Model Decision** in each file's frontmatter to control when the rules apply. Set the activation mode to **Always On** or **Model Decision** in each file's frontmatter to control when the rules apply.
@@ -147,7 +155,7 @@ Copilot supports [custom instructions](https://docs.github.com/en/copilot/custom
1. Open the agent's system prompt / custom instructions settings. 1. Open the agent's system prompt / custom instructions settings.
2. Paste the contents of `SKILL.md` (with or without the YAML frontmatter — most agents accept either). 2. Paste the contents of `SKILL.md` (with or without the YAML frontmatter — most agents accept either).
3. Optionally include `references/command-reference.md` for the complete command reference. 3. Optionally include `skills/obsidian-cli/references/command-reference.md` for the complete command reference.
This works with any chat interface or coding agent that has a system prompt or custom instructions field. This works with any chat interface or coding agent that has a system prompt or custom instructions field.
@@ -190,7 +198,7 @@ obsidian daily:append content="- Started [[projects/new-feature|New Feature]]"
## Full Command Reference ## Full Command Reference
See [`references/command-reference.md`](references/command-reference.md) for the complete reference covering all commands, parameters, flags, output formatting, multi-vault usage, and headless Linux setup. See [`skills/obsidian-cli/references/command-reference.md`](skills/obsidian-cli/references/command-reference.md) for the complete reference covering all commands, parameters, flags, output formatting, multi-vault usage, and headless Linux setup.
--- ---
-8
View File
@@ -1,8 +0,0 @@
{
"name": "obsidian-cli",
"version": "1.0.0",
"description": "Interact with Obsidian vaults using the official Obsidian CLI (v1.12+). Read, create, search, and manage notes, daily notes, properties, tags, tasks, bookmarks, templates, sync, plugins, and links — all from the terminal.",
"author": "pablo-mano",
"repository": "https://github.com/pablo-mano/Obsidian-CLI-skill",
"skills": ["."]
}