A curated collection of Claude Code plugins for Nushell development, shell scripting, and data processing.
/plugins- Plugins developed and maintained in this marketplace
# From GitHub
/plugin marketplace add danielbodnar/nushell-dev
# From local path (for development)
/plugin marketplace add ~/.claude/plugins/nushell-devOnce the marketplace is added, install individual plugins:
/plugin install nushell-dev@nushell-marketplaceOr browse available plugins:
/plugin > DiscoverEach plugin follows the standard Claude Code plugin structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (required)
├── skills/ # Auto-activating skills
├── commands/ # Slash commands
├── agents/ # Agent definitions
├── hooks/ # Event handlers
└── README.md # Documentation
Test a specific plugin in isolation:
claude --plugin-dir ./plugins/nushell-devclaude plugin validate .Or from within Claude Code:
/plugin validate .- Create a plugin directory under
/plugins/ - Add the required
.claude-plugin/plugin.jsonmanifest - Add your skills, commands, agents, or hooks
- Update the marketplace.json to include your plugin
- Test locally with
claude --plugin-dir - Submit a pull request
- Follow Claude Code plugin best practices
- Include comprehensive documentation
- Add meaningful descriptions for discovery
- Test all components before submitting
For more information on developing Claude Code plugins, see:
MIT License - See LICENSE file for details.
