mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-06-13 22:26:03 -03:00
Add Skill-bundle plugins section to README (#2067)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e9b54375b8
commit
13a0208f38
31
README.md
31
README.md
@ -42,6 +42,37 @@ plugin-name/
|
|||||||
└── README.md # Documentation
|
└── README.md # Documentation
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Skill-bundle plugins
|
||||||
|
|
||||||
|
When a plugin's source repository ships skills (`SKILL.md` files) without a `.claude-plugin/plugin.json` manifest, the marketplace entry can declare the skills directly using `strict: false` and an explicit `skills` array.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"name": "example-bundle",
|
||||||
|
"description": "Brief description of the bundled skills.",
|
||||||
|
"author": { "name": "Author Name" },
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "https://github.com/example-org/sdk.git",
|
||||||
|
"path": "packages/agent-skills",
|
||||||
|
"ref": "main",
|
||||||
|
"sha": "<commit sha>"
|
||||||
|
},
|
||||||
|
"strict": false,
|
||||||
|
"skills": [
|
||||||
|
"./skill-a",
|
||||||
|
"./skill-b",
|
||||||
|
"./skill-c"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/example-org/sdk"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Each path in `skills` is relative to `source.path` and points at a directory containing a `SKILL.md`. Paths can reach deeper than a single level — for example, `["./libA/skill-1", "./libB/skill-2"]` exposes a curated subset across multiple library subdirectories. Each skill is registered as `<plugin-name>:<skill-name>` in Claude Code.
|
||||||
|
|
||||||
|
For the underlying schema, see [Strict mode](https://code.claude.com/docs/en/plugin-marketplaces) in the marketplace documentation.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Please see each linked plugin for the relevant LICENSE file.
|
Please see each linked plugin for the relevant LICENSE file.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user