feat(agent): ship Anthropic's skill-creator plugin by default
Agents had the official marketplace configured out of the box but an empty plugin list, so nothing was installed from it unless an agent's own config asked. skill-creator is the one plugin that pays for itself generically: it teaches an agent to write, refine, and evaluate its own skills, which is exactly the capability an agent can't bootstrap by being told about it once in a prompt. Defaulting the option keeps this consistent with claudeMarketplaces, which already ships the official marketplace the same way. Documented the list-option semantics next to both: a per-agent definition replaces the default rather than extending it, so an agent that sets its own plugin list has to name skill-creator alongside its entries.
This commit is contained in:
parent
a48e2f6977
commit
14f141625a
2 changed files with 23 additions and 5 deletions
|
|
@ -158,7 +158,7 @@ Two per-agent `agent.nix` options control this:
|
|||
|
||||
```nix
|
||||
hyperhive.claudeMarketplaces = [ "anthropics/claude-plugins-official" ]; # default
|
||||
hyperhive.claudePlugins = [ "formatter@my-marketplace" ]; # default: []
|
||||
hyperhive.claudePlugins = [ "skill-creator@claude-plugins-official" ]; # default
|
||||
hyperhive.claudePluginsAutoUpdate = false; # default
|
||||
```
|
||||
|
||||
|
|
@ -168,9 +168,17 @@ hyperhive.claudePluginsAutoUpdate = false; # def
|
|||
custom marketplaces. Idempotent — re-adding an existing source is
|
||||
a no-op.
|
||||
- **`claudePlugins`** — list of plugin specs passed to
|
||||
`claude plugin install <spec>`. Empty by default. Each spec is
|
||||
installed on every boot (`install` is expected to be idempotent);
|
||||
failures log a warning but do not abort boot.
|
||||
`claude plugin install <spec>`. Each spec is installed on every boot
|
||||
(`install` is expected to be idempotent); failures log a warning but
|
||||
do not abort boot. Defaults to Anthropic's `skill-creator`, so every
|
||||
agent can author, refine, and evaluate its own skills without any
|
||||
per-agent wiring.
|
||||
|
||||
> Both plugin lists follow ordinary NixOS list-option semantics: a
|
||||
> per-agent definition **replaces** the default, it does not extend it.
|
||||
> An agent that sets `claudePlugins` and still wants `skill-creator`
|
||||
> has to list it explicitly alongside its own entries — likewise for
|
||||
> the official marketplace in `claudeMarketplaces`.
|
||||
- **`claudePluginsAutoUpdate`** — when `true`, runs
|
||||
`claude plugin marketplace update` before installing plugins to pull
|
||||
the latest index. Disabled by default to keep boot times short and
|
||||
|
|
|
|||
Loading…
Reference in a new issue