a2a1b347f6
git-manager 1.1.0 -> 1.1.1, obsidian-vault-kb 1.0.0 -> 1.0.1, in both
plugin.json and the marketplace.json entry, per the convention in
ARCHITECTURE.md ("Bump version in the plugin's plugin.json and its
marketplace.json entry on updates") that commit 9f39a89 should have
followed. Patch bump: the setup.md changes fix a bug and add
argument-hint handling, no new flags or breaking changes.
This also matters functionally, not just for convention: the exact bug
that commit fixed was Claude Code leaving a stale, un-bumped version
directory in the plugin cache alongside the active one. Not bumping the
version here would mean this very fix might not get a fresh cache
directory on the next `/plugin marketplace update`.
25 lines
915 B
JSON
25 lines
915 B
JSON
{
|
|
"name": "skill-repo",
|
|
"owner": {
|
|
"name": "haemka"
|
|
},
|
|
"version": "1.0.0",
|
|
"description": "Private collection of tool-neutral Agent Skills, with Claude Code-specific setup/permissions adapters.",
|
|
"plugins": [
|
|
{
|
|
"name": "obsidian-vault-kb",
|
|
"source": "./vendor/claude-code/plugins/obsidian-vault-kb",
|
|
"version": "1.0.1",
|
|
"description": "Obsidian vault as a searchable knowledge base for lookup and note-taking.",
|
|
"keywords": ["obsidian", "knowledge-base", "notes", "vault", "markdown"]
|
|
},
|
|
{
|
|
"name": "git-manager",
|
|
"source": "./vendor/claude-code/plugins/git-manager",
|
|
"version": "1.1.1",
|
|
"description": "Whitelisted git operations across one or more repositories via a single wrapper script, avoiding cd/chaining patterns that break Bash permission whitelisting.",
|
|
"keywords": ["git", "version-control", "workflow"]
|
|
}
|
|
]
|
|
}
|