Install a plugin from the marketplace into your project.
Installs plugins from the marketplace into your project.
/plugin marketplace add marcel-Ngan/ai-dev-team/plugin install marcel-ngan-ai-dev-team@marcel-Ngan/ai-dev-teamInstall a plugin from the marketplace into your project.
/install <plugin-name> [--version <version>] [--no-deps]
plugin-name (required): The plugin to install (e.g., skills-jira, agent-senior-developer)--version <version>: Specific version to install (default: latest)--no-deps: Skip installing dependencies/install skills-jira # Install Jira skills
/install agent-senior-developer # Install Senior Developer agent
/install ai-dev-team-core # Install core bundle
/install skills-security --version 1.0.0 # Install specific version
When invoked, perform these steps:
Read: marketplace/plugins/{type}/{plugin-name}/manifest.json
If not found, suggest similar plugins.
Read the manifest's dependencies field and ensure all required plugins are installed or will be installed.
Review requiredConfig and warn about any missing configuration:
## Configuration Required
This plugin requires the following configuration:
- `jira.cloudId` - Your Jira Cloud ID
- `jira.projectKey` - Your Jira project key
Run `/configure` to set up your project configuration.
For each content type in the manifest:
Agents:
agents/{agent-name}/ to project's agents/ directorySkills:
skills/{category}/{skill-name}/ to project's skills/ directoryPrompts:
prompts/{category}/{prompt-name}.md to project's prompts/ directoryWorkflows:
workflows/{workflow-name}.md to project's workflows/ directoryCommands:
commands/{command-name}.md to project's commands/ directoryAdd to marketplace/installed.json:
{
"plugins": {
"skills-jira": {
"version": "1.0.0",
"installedAt": "2026-01-09T00:00:00Z",
"contents": ["skills/jira/*"]
}
}
}
## Installed: skills-jira v1.0.0
Contents:
- 8 skills in skills/jira/
Dependencies installed:
- (none)
Next steps:
1. Configure your Jira settings in config/project.json
2. Run `/plugins` to see all installed plugins
/marketplace - Browse available plugins/plugin-info <name> - View plugin details before installing/uninstall <name> - Remove a plugin/plugins - List installed plugins