plugin
Manage Bootspring plugins and extensions.
Synopsis#
Loading code block...
Description#
The plugin command manages Bootspring plugins that extend functionality. Plugins can add new agents, skills, workflows, integrations, and CLI commands.
Commands#
list#
List installed and available plugins.
Loading code block...
Options:
| Option | Description |
|---|---|
--installed | Show only installed plugins |
--available | Show available plugins from registry |
--category=<name> | Filter by category |
Categories:
| Category | Description |
|---|---|
agents | Additional expert agents |
skills | Code patterns and templates |
workflows | Custom workflows |
integrations | Third-party integrations |
themes | Dashboard themes |
Examples:
Loading code block...
Output:
⚡ Bootspring Plugins
Installed:
✓ @bootspring/plugin-linear 1.2.0 Linear integration
✓ @bootspring/plugin-sentry 1.0.0 Sentry error tracking
✓ @bootspring/plugin-posthog 1.1.0 PostHog analytics
Available:
○ @bootspring/plugin-slack 1.3.0 Slack notifications
○ @bootspring/plugin-notion 1.0.0 Notion sync
○ @bootspring/plugin-datadog 1.0.0 Datadog monitoring
○ @bootspring/plugin-terraform 0.9.0 Terraform IaC
install#
Install a plugin.
Loading code block...
Options:
| Option | Description |
|---|---|
--version=<v> | Install specific version |
--save-dev | Install as dev dependency |
--force | Force reinstall |
Examples:
Loading code block...
uninstall#
Remove a plugin.
Loading code block...
Options:
| Option | Description |
|---|---|
--keep-config | Keep plugin configuration |
Examples:
Loading code block...
update#
Update installed plugins.
Loading code block...
Options:
| Option | Description |
|---|---|
--all | Update all plugins |
--check | Check for updates only |
Examples:
Loading code block...
info#
Show plugin details.
Loading code block...
Output:
⚡ Plugin: @bootspring/plugin-linear
Version: 1.2.0
Author: Bootspring Team
License: Proprietary
Description:
Sync user stories with Linear issues. Two-way sync keeps
your PRD and Linear in perfect harmony.
Features:
- Import issues as user stories
- Export stories to Linear
- Two-way sync
- Webhook support
- Custom field mapping
Commands Added:
- bootspring linear sync
- bootspring linear import
- bootspring linear export
Configuration:
plugins:
linear:
apiKey: "lin_api_xxx"
teamId: "TEAM"
defaultProject: "PROJECT"
create#
Create a new plugin project.
Loading code block...
Options:
| Option | Description |
|---|---|
--template=<name> | Plugin template |
--typescript | Use TypeScript (default) |
Templates:
| Template | Description |
|---|---|
basic | Basic plugin structure |
agent | Custom agent plugin |
skill | Custom skill plugin |
workflow | Custom workflow plugin |
integration | Integration plugin |
Examples:
Loading code block...
publish#
Publish a plugin to the registry.
Loading code block...
Options:
| Option | Description |
|---|---|
--access=<level> | Access level (public, private) |
--tag=<name> | Publish tag (latest, beta) |
Examples:
Loading code block...
config#
Configure plugin settings.
Loading code block...
Options:
| Option | Description |
|---|---|
--set=<key>=<value> | Set configuration value |
--get=<key> | Get configuration value |
--reset | Reset to defaults |
Examples:
Loading code block...
Official Plugins#
Integration Plugins#
| Plugin | Description |
|---|---|
@bootspring/plugin-linear | Linear project management |
@bootspring/plugin-notion | Notion documentation |
@bootspring/plugin-slack | Slack notifications |
@bootspring/plugin-discord | Discord integration |
@bootspring/plugin-github | Enhanced GitHub features |
Monitoring Plugins#
| Plugin | Description |
|---|---|
@bootspring/plugin-sentry | Error tracking |
@bootspring/plugin-posthog | Product analytics |
@bootspring/plugin-datadog | APM monitoring |
@bootspring/plugin-logflare | Log management |
DevOps Plugins#
| Plugin | Description |
|---|---|
@bootspring/plugin-terraform | Infrastructure as code |
@bootspring/plugin-docker | Docker management |
@bootspring/plugin-k8s | Kubernetes integration |
@bootspring/plugin-aws | AWS services |
Plugin Development#
Plugin Structure#
my-plugin/
├── package.json
├── src/
│ ├── index.ts # Plugin entry
│ ├── commands/ # CLI commands
│ ├── agents/ # Custom agents
│ ├── skills/ # Custom skills
│ └── workflows/ # Custom workflows
├── templates/ # Code templates
└── README.md
Plugin Interface#
Loading code block...
Configuration Schema#
Loading code block...
Configuration#
Plugin configuration in bootspring.config.js:
Loading code block...
Examples#
Install and Configure Linear#
Loading code block...
Create Custom Agent Plugin#
Loading code block...
Related Commands#
bootspring config- Global configurationbootspring mcp- MCP server management
Related Docs#
- Plugin Development - Build plugins
- MCP Integration - Protocol details