A Claude Code Plugin Marketplace for working with Coconut instances.
This is a Claude Code marketplace that hosts skills for Coconut — a platform for provisioning versatile AI agent VM instances. It currently ships one plugin (coconut-skills) containing one skill (coconut-skills-creator).
/plugin marketplace add lovelybunch/coconut-skills
/plugin install coconut-skills@coconut-skills
The first command registers this repo as a marketplace; the second installs the plugin. After install, the skill auto-triggers in any session where it's relevant — no further setup needed.
For agents that support SKILL.md files but aren't Claude Code (e.g. Cursor, Codex), you can use openskills:
npx openskills install lovelybunch/coconut-skills
openskills is a third-party tool, not affiliated with Anthropic.
- Plugin:
coconut-skills— the umbrella plugin for Coconut-related skills. - Skills:
coconut-skills-creator— meta-skill that authors new CoconutSKILL.mdfiles from plain-English goals or rough step lists.
A Coconut skill is a SKILL.md file that runs on a Coconut instance: a VM with the nut CLI installed and a .nut/ directory for state. At runtime, Claude Code (or an equivalent agent loop) on the instance reads the SKILL.md and executes nut subcommands to manipulate tasks, knowledge, context, and third-party connectors. See docs.coconut.dev for the platform docs.
Once installed, just describe what you want a Coconut skill to do — the meta-skill will pick it up and produce a SKILL.md you can install on your Coconut.
"Write a Coconut skill that scrapes Google News for AI industry topics and writes a summary to
.nut/knowledge/market.md."
This marketplace is designed to grow. Drop a new skill into plugins/coconut-skills/skills/<new-skill-name>/SKILL.md and it'll be picked up automatically — no manifest changes required.
.
├── .claude-plugin/
│ └── marketplace.json
├── plugins/
│ └── coconut-skills/
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── skills/
│ │ └── coconut-skills-creator/
│ │ ├── SKILL.md
│ │ └── references/
│ │ ├── nut-cli.md
│ │ ├── nut-directory.md
│ │ ├── skeleton.md
│ │ └── examples.md
│ └── README.md
├── README.md
├── LICENSE
└── .gitignore
Apache-2.0 — see LICENSE.