Skip to content
Development
Command

/quick-fix

Fast-track workflow for small bug fixes

From plugin
safe-agentic-workflow
39524 skills11 agents24 commands
Install
$ npx -y skills add bybren-llc/safe-agentic-workflow --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/quick-fix

Context preview

What this command does when you run it.

Fast-track workflow for small bug fixes

Command definition

quick-fix.md
description: Fast-track workflow for small bug fixes
argument-hint: [{{TICKET_PREFIX}}-number]
allowed-tools: [Read, Write, Edit, Bash, Grep, Glob]

> **๐Ÿ“‹ TEMPLATE**: This command is a template. See "Customization Guide" below to adapt for your infrastructure.

Execute streamlined workflow for small, urgent bug fixes that need fast turnaround.

When to Use

Quick fixes are appropriate for:

  • โœ… Critical bugs blocking team
  • โœ… Small, isolated changes (< 50 lines)
  • โœ… No architecture changes
  • โœ… Existing test coverage adequate

**NOT for**:

  • โŒ New features
  • โŒ Large refactors
  • โŒ Breaking changes
  • โŒ Dependency upgrades

Streamlined Workflow

1. Setup (Fast)

If WOR number provided ($1):

  • Fetch ticket: `mcp__{{MCP_LINEAR_SERVER}}__get_issue $1`
  • Verify it's a bug fix
  • Create branch: `git checkout -b {{TICKET_PREFIX}}-$1-fix-{description}`

If no argument:

  • Ask for WOR number
  • Proceed with setup

2. Make Fix

Guide user:

  • Identify the bug location
  • Make minimal, focused change
  • Test locally
  • Commit with clear description
git add .
git commit -m "fix(scope): resolve {issue} [{{TICKET_PREFIX}}-XXX]"

3. Fast Validation

Run essential checks only:

yarn type-check  # TypeScript
yarn lint        # ESLint
yarn test:unit   # Fast tests only

**Skip** if time-critical:

  • Integration tests
  • E2E tests
  • Build verification

4. Quick PR

git fetch origin && git rebase origin/dev
git push --force-with-lease origin {branch}

Create PR with minimal template:

## ๐Ÿ› Quick Fix

**Linear**: [{{TICKET_PREFIX}}-XXX](link)
**Type**: Bug fix
**Urgency**: High

### Issue

Brief description of bug

### Fix

What was changed (1-2 sentences)

### Testing

- [ ] Manually tested
- [ ] Unit tests pass
- [ ] No regressions expected

### Merge Fast?

- [ ] Yes, this is blocking team
- [ ] No, normal review process

5. Notify Team

If urgent:

  • Tag reviewers in PR
  • Comment in Linear ticket
  • Notify in Slack (if configured)

Success Criteria

  • โœ… Fix applied in < 30 minutes
  • โœ… Essential validations pass
  • โœ… PR created with clear context
  • โœ… Team notified if urgent

Safety Checks

Even in quick fixes:

  • โœ… Commit message follows SAFe format
  • โœ… Branch naming correct
  • โœ… Linear ticket referenced
  • โœ… TypeScript & ESLint pass

**Skip only** when justified:

  • Full test suite (run essential tests)
  • Full PR template (use quick version)
  • Extensive documentation (update if needed, defer if urgent)

After Merge

Follow up:

  • [ ] Run full test suite
  • [ ] Update documentation (if skipped)
  • [ ] Verify fix in production
  • [ ] Close Linear ticket

This workflow balances speed with safety for urgent fixes.

Customization Guide

To adapt this command for your infrastructure, replace these placeholders:

| Placeholder | Description | Example | | ----------------- | ------------------------- | --------------------- | | `{{TICKET_PREFIX}}` | Your Linear ticket prefix | `WOR`, `PROJ`, `TASK` |

Read more
Ships withsafe-agentic-workflow

SAW โ€” SAFe Agentic Workflow AI Agent Harness for Multi-Agent Team Workflows Built on SAFe methodology (Scaled Agile Framework), adapted for AI agent teams (Now With AI-DLC!) Works for any team with repeatable processes: Software, Marketing, Research, Legal, Operations.

Get the whole plugin