Nushell Dev banner
danielbodnar danielbodnar

Nushell Dev

Productivity community

Description

Nushell development tools, custom commands, plugins, and workflow automation scripts.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Nushell Marketplace

A curated collection of Claude Code plugins for Nushell development, shell scripting, and data processing.

Structure

  • /plugins - Plugins developed and maintained in this marketplace

Available Plugins

Plugin Description Category
nushell-dev Comprehensive toolkit for Nushell development with skills, commands, agents, and hooks development

Installation

Add the Marketplace

# From GitHub
/plugin marketplace add danielbodnar/nushell-dev

# From local path (for development)
/plugin marketplace add ~/.claude/plugins/nushell-dev

Install Plugins

Once the marketplace is added, install individual plugins:

/plugin install nushell-dev@nushell-marketplace

Or browse available plugins:

/plugin > Discover

Plugin Structure

Each 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

Development

Testing Plugins Locally

Test a specific plugin in isolation:

claude --plugin-dir ./plugins/nushell-dev

Validating the Marketplace

claude plugin validate .

Or from within Claude Code:

/plugin validate .

Contributing

Adding a New Plugin

  1. Create a plugin directory under /plugins/
  2. Add the required .claude-plugin/plugin.json manifest
  3. Add your skills, commands, agents, or hooks
  4. Update the marketplace.json to include your plugin
  5. Test locally with claude --plugin-dir
  6. Submit a pull request

Plugin Guidelines