mozilla

Aidev Plugins — AI skill for Claude Code

AI community

This repository is the home for AI agent plugins meant to be used by Mozilla developers.

How to install Aidev Plugins

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

What Aidev Plugins does

This repository is the home for AI agent plugins meant to be used by Mozilla developers. For plugins that are specific to Firefox, please consider [firefox-aidev-plugins](https://github.com/mozilla/fi

Alternatives in AI

  • Claude Flow — An enterprise-grade AI orchestration platform that revolutionizes how developers build with AI 22.2k ★
  • Ars Disclosure — ARS academic-paper disclosure mode — venue-specific AI-usage statement 4.5k ★
  • Geo SEO Claude — GEO-first SEO skill for Claude Code 3.6k ★

README

AI Agent Plugins for Mozilla Developers

This repository is the home for AI agent plugins meant to be used by Mozilla developers. For plugins that are specific to Firefox, please consider [firefox-aidev-plugins](https://github.com/mozilla/firefox-aidev-plugins).

Currently supported agents:

As other agents (e.g., Codex) add marketplace support, plugins here will be extended to support them as well.

If you have a plugin that you think would be useful for Mozilla developers, please feel free to open a PR to add it here.

Installation

From Claude Code, type:

/plugin marketplace add mozilla/aidev-plugins

Structure

Plugins are organized in the `plugins/` directory, with each plugin in its own subdirectory. Each plugin must also be listed in `.claude-plugin/marketplace.json` to be discoverable.

plugins/
├── plugin-name/
│   ├── .claude-plugin/
│   │   └── plugin.json      # Plugin metadata (required)
│   ├── .mcp.json            # MCP server configuration (optional)
│   ├── commands/            # Slash commands (optional)
│   ├── agents/              # Agent definitions (optional)
│   ├── skills/              # Skill definitions (optional)
│   └── README.md            # Documentation
├── another-plugin/
│   └── ...
└── ...