plugin: source ./ + explicit skills array (matches working pattern)
Some checks are pending
ci / check (push) Waiting to run

The plain "." source triggered "This plugin uses a source type your
Claude Code version does not support" on `/plugin install`. Matching
the well-tested shape used by other working marketplaces: "./" root,
strict:false, explicit skills paths.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Stephen Way 2026-05-13 16:17:45 -07:00
parent 0984e737a3
commit 3e2c8f9337
No known key found for this signature in database

View file

@ -5,12 +5,19 @@
"email": "hello@rasterstate.com", "email": "hello@rasterstate.com",
"url": "https://rasterstate.com" "url": "https://rasterstate.com"
}, },
"metadata": {
"description": "Raster & State plugins for Claude Code.",
"version": "0.1.0"
},
"plugins": [ "plugins": [
{ {
"name": "fj", "name": "fj",
"source": ".",
"description": "Teach Claude Code to use fj, a CLI for Forgejo and Gitea-compatible instances. Activates when the user mentions fj, Forgejo, Gitea, or any forge-side action (issues, PRs, releases, code search, labels, milestones, webhooks).", "description": "Teach Claude Code to use fj, a CLI for Forgejo and Gitea-compatible instances. Activates when the user mentions fj, Forgejo, Gitea, or any forge-side action (issues, PRs, releases, code search, labels, milestones, webhooks).",
"keywords": ["fj", "forgejo", "gitea", "git", "cli"] "source": "./",
"strict": false,
"skills": [
"./skills/fj"
]
} }
] ]
} }