← All plugins
deploy-captain
v1.2.5Rollout planning and incident notes as skills, plus an SSE feed of fleet deploy events so agents can see what shipped where.
2 skills1 MCP serversse
by MastlineMIT430updated 10 months ago
Install
git clone https://github.com/mastline/agent-tools # plugin at plugins/deploy-captain/Clone into your agent client’s plugin directory — components are discovered from fixed locations per the spec. The plugin lives at plugins/deploy-captain/ within the repo.
Layout
plugins/deploy-captain/
├── plugin.json├── skills/│ ├── incident-note/│ │ └── SKILL.md│ └── rollout-plan/│ └── SKILL.md└── mcp.json
Skills2
incident-noteskills/incident-note/
Write a factual incident note from the deploy timeline: what shipped, what broke, what rolled back.
rollout-planskills/rollout-plan/
Draft a staged rollout plan with health gates, bake times, and an explicit abort threshold.
MCP servers1
fleet-eventssse
- url
- https://events.mastline.dev/mcp
Manifest
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "deploy-captain",
"version": "1.2.5",
"description": "Rollout planning and incident notes as skills, plus an SSE feed of fleet deploy events so agents can see what shipped where.",
"author": {
"name": "Mastline"
},
"repository": "https://github.com/mastline/agent-tools",
"license": "MIT",
"keywords": [
"devops",
"deploy",
"sre"
]
}