/check-workflow
Quick status check of current workflow state
$ 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
/check-workflow
Context preview
What this command does when you run it.
Quick status check of current workflow state
Command definition
check-workflow.mddescription: Quick status check of current workflow state
allowed-tools: [Read, Write, Edit, Bash, Grep, Glob]
Perform a quick workflow health check against @CONTRIBUTING.md requirements.
Status Checks
1. Git Status
git status
git branch --show-current
Verify:
- Current branch follows `{{TICKET_PREFIX}}-{number}-{description}` format
- No uncommitted changes (or document what's uncommitted)
- Branch relationship to origin/dev
2. Linear Ticket Connection
Extract WOR number from branch name.
Check ticket status using Linear MCP:
mcp__{{MCP_LINEAR_SERVER}}__get_issueVerify:
- Ticket exists
- Ticket is in appropriate status
- Work aligns with ticket description
3. Commit History
Review commits since dev:
git log origin/dev..HEAD --oneline
Verify:
- All commits follow SAFe format: `type(scope): description [{{TICKET_PREFIX}}-XXX]`
- All commits reference correct Linear ticket
- Commit messages are descriptive
4. Rebase Status
Check if branch needs rebasing:
git fetch origin
git log HEAD..origin/dev --oneline
Report:
- How many commits behind dev
- Whether rebase is needed
5. Documentation Status
Check if docs need updating:
- CLAUDE.md (architecture/commands changed?)
- CONTRIBUTING.md (process changed?)
- Feature-specific docs created?
Output Format
Provide traffic-light status:
- ✅ GREEN: All checks pass, workflow healthy
- ⚠️ YELLOW: Minor issues, can proceed with caution
- ❌ RED: Blockers present, must fix before PR
List specific issues found and recommendations.
Read more
description: Quick status check of current workflow state allowed-tools: [Read, Write, Edit, Bash, Grep, Glob]
Perform a quick workflow health check against @CONTRIBUTING.md requirements.
Status Checks
1. Git Status
git status git branch --show-current
Verify:
- Current branch follows `{{TICKET_PREFIX}}-{number}-{description}` format
- No uncommitted changes (or document what's uncommitted)
- Branch relationship to origin/dev
2. Linear Ticket Connection
Extract WOR number from branch name.
Check ticket status using Linear MCP:
mcp__{{MCP_LINEAR_SERVER}}__get_issueVerify:
- Ticket exists
- Ticket is in appropriate status
- Work aligns with ticket description
3. Commit History
Review commits since dev:
git log origin/dev..HEAD --oneline
Verify:
- All commits follow SAFe format: `type(scope): description [{{TICKET_PREFIX}}-XXX]`
- All commits reference correct Linear ticket
- Commit messages are descriptive
4. Rebase Status
Check if branch needs rebasing:
git fetch origin git log HEAD..origin/dev --oneline
Report:
- How many commits behind dev
- Whether rebase is needed
5. Documentation Status
Check if docs need updating:
- CLAUDE.md (architecture/commands changed?)
- CONTRIBUTING.md (process changed?)
- Feature-specific docs created?
Output Format
Provide traffic-light status:
- ✅ GREEN: All checks pass, workflow healthy
- ⚠️ YELLOW: Minor issues, can proceed with caution
- ❌ RED: Blockers present, must fix before PR
List specific issues found and recommendations.
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 - /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 - /end-work
Complete work session with final checklist
Open command

