utilities Plugin
General-purpose ops and productivity skills for SSH-accessible services and daily workflows.
Installation
/plugin install utilities@abilityai
Skills
| Skill | Description |
|---|---|
| /utilities:save-conversation | Save conversation as structured markdown |
| /utilities:investigate-incident | Structured incident investigation |
| /utilities:bug-report | Create sanitized GitHub issue |
| /utilities:safe-deploy | Safe deployment with backup/rollback |
| /utilities:docker-ops | Docker container management |
| /utilities:sync-ops-knowledge | Update ops docs from commits |
| /utilities:batch-claude-loop | Batch headless Claude Code calls |
Safe Deployment
Deploy with automatic backup and rollback capability:
# Deploy with backup /utilities:safe-deploy update # Rollback to previous version /utilities:safe-deploy rollback
The skill creates a backup of current state, applies the update, verifies deployment health, and rolls back automatically on failure.
Docker Operations
Manage Docker containers:
/utilities:docker-ops logs backend /utilities:docker-ops restart frontend /utilities:docker-ops status
Incident Investigation
Structured approach to investigating production issues:
/utilities:investigate-incident
Guides through: symptoms (what's happening?), timeline (when did it start?), scope (what's affected?), evidence (logs, metrics, traces), hypothesis (likely causes), and resolution (fix and verify).
Conversation Export
Save the current conversation as markdown:
/utilities:save-conversation
Exports to a timestamped file with full conversation history, code blocks preserved, and tool calls summarized.
Batch Processing
Run Claude Code headlessly on multiple inputs:
/utilities:batch-claude-loop
Useful for processing multiple files, running the same analysis across repos, and automated code review.