check-docker-status
Check if {{DEV_MACHINE}} Docker environment needs updating
Run comprehensive dependency audit
$ 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.
/audit-depsContext preview
What this command does when you run it.
Run comprehensive dependency audit
description: Run comprehensive dependency audit allowed-tools: [Read, Write, Edit, Bash, Grep, Glob]
> **๐ TEMPLATE**: This command is a template. See "Customization Guide" below to adapt for your infrastructure.
Execute dependency audit to identify optimization opportunities and security issues.
Check for vulnerabilities:
yarn audit
Report:
Run bundle analyzer:
ANALYZE=true yarn build
Identify:
Run depcheck:
npx depcheck
Find:
Check for updates:
yarn outdated
Report:
**Icon Libraries** (common bloat):
find . -name "*.tsx" -o -name "*.ts" | xargs grep -h "from.*icons" | sort -u
Analyze:
**Large Packages**:
du -sh node_modules/* | sort -hr | head -20
Identify:
Document findings in `docs/agent-outputs/technical-docs/dependency-audit-report-{date}.md`:
# Dependency Audit Report
**Date**: {current-date}
**Scope**: Full dependency audit
**Tools**: yarn audit, depcheck, bundle-analyzer
## Executive Summary
- Total packages: {count}
- Security issues: {count} ({severity})
- Optimization potential: {size} MB
- Quick wins: {count} tickets
## Findings
### 1. Security Issues
- List critical/high issues
- Recommended actions
### 2. Bundle Size Optimization
- Current size: {size}
- Bloat identified: {list}
- Savings potential: {size}
### 3. Unused Dependencies
- Runtime: {list}
- DevDependencies: {list}
- Action: Can remove
### 4. Missing Dependencies
- {list}
- Action: Should add
### 5. Outdated Packages
- Major updates: {list}
- Minor updates: {list}
- Patch updates: {list}
## Recommendations
### Immediate Actions (High Priority)
1. {action}
2. {action}
### Short-term (Medium Priority)
1. {action}
2. {action}
### Long-term (Low Priority)
1. {action}
2. {action}
## Implementation Tickets
Create Linear tickets for each actionable item:
- {{TICKET_PREFIX}}-{number}: {description}For each significant finding:
Use MCP:
mcp__{{MCP_LINEAR_SERVER}}__create_issueRun audits:
This provides systematic approach to dependency management and optimization.
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.
Check if {{DEV_MACHINE}} Docker environment needs updating