/quick-fix
Fast-track workflow for small bug fixes
$ npx -y skills add bybren-llc/safe-agentic-workflow --agent claude-codeHow 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.mddescription: 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 process5. 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
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 process5. 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` |
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.
Other commands on safe-agentic-workflow.
- /audit-deps
Run comprehensive dependency audit
Open command - /check-docker-status
Check if {{DEV_MACHINE}} Docker environment needs updating
Open command - /check-workflow
Quick status check of current workflow state
Open command - /deploy-dev
Deploy latest Docker image to {{DEV_MACHINE}} dev environment
Open command - /dev-health
Check {{DEV_MACHINE}} dev environment health dashboard
Open command - /dev-logs
View {{DEV_MACHINE}} dev container logs
Open command

