ClipMarts

Bug to Deploy

Bug fix workflow from report to production deploy

$9Starter SkillFor specialists, founders, and lean teams

What is Bug to Deploy?

Bug fix workflow from report to production deploy. Triage, reproduction, root cause analysis, fix implementation, code review, staging verification, and production deploy.

Setup Time

3 min

Difficulty

Intermediate

Works With
paperclipclaude-code

What's Included

  • workflow.yaml
  • stages/triage.md
  • stages/reproduction.md
  • stages/fix-implementation.md
  • stages/deploy.md
  • templates/bug-report.md
  • README.md

Preview

workflow.yaml
# workflow.yaml
name: bug-to-deploy
description: Bug fix from report to production

stages:
  - id: triage
    trigger: bug.reported
    actions:
      - classify-severity
      - assign-owner
      - set-sla-timer

  - id: investigate
    trigger: bug.assigned
    actions:
      - reproduce-locally
      - identify-root-cause
      - write-failing-test

  - id: fix
    trigger: root-cause.identified
    actions:
      - implement-fix
      - verify-test-passes
      - open-pull-request

  - id: deploy
    trigger: pr.approved
    actions:
      - merge-to-main
      - deploy-to-staging
      - verify-staging
      - deploy-to-production

Installation Guide

terminal
$ paperclipai skill import --from ./bug-to-deploy/
Skill imported successfully.

One command to import — then assign to any agent in your company.

Option A: CLI (recommended)

1

Download and extract the ZIP

unzip bug-to-deploy.zip
2

Import the skill

paperclipai skill import --from ./bug-to-deploy/
3

Assign to an agent

# Via CLI:
paperclipai agent update <agent-name> --add-skill bug-to-deploy

# Or in the dashboard:
# Agents → [agent name] → Skills → Add "Bug to Deploy"

Option B: Dashboard UI

1

Open Skills page

Navigate to Skills → Import Skill

2

Upload the product folder

From the extracted ZIP, upload the bug-to-deploy/ directory containing SKILL.md.

3

Assign to agents

Go to Agents → [agent] → Skills and add "Bug to Deploy" from the list.

Share
Files included7
Setup time3 min
Difficultyintermediate

Tags

workflowbugsdeploymentengineeringci-cdhotfix