Audit existing processes for bottlenecks, inefficiencies, and improvement opportunities
Analyze existing operational processes to identify bottlenecks, inefficiencies, and improvement opportunities. Generates comprehensive audit reports with recommendations and implementation priorities.
Extract parameters — Parse from user input:
Search vault for related SOPs — Get current documented process:
Use the `search_memory` MCP tool with query: "<process-name> SOP procedure steps"
If found, load the SOP:
cat ~/.second-brain/vault/ops/sops/<process-slug>.md
Search vault for process context — Find references and issues:
Use the `search_memory` MCP tool with query: "<process-name> bottleneck issue problem delay"
Review meeting notes, team docs, project retrospectives mentioning this process
Search daily log for pain points — Identify recurring complaints:
grep -r "<process-name>\|bottleneck\|delay\|waiting\|stuck\|manual\|repetitive" ~/.second-brain/vault/daily/ | tail -50
Extract: when complaints happen, who's affected, impact severity
Search Gmail for complaints/escalations — Find process issues reported:
Use the `search_emails` MCP tool with gmail_query: "subject:(urgent|escalation|issue|problem|delay) <process-area>"
Extract: complaint details, who complained, frequency, resolution
Analyze current process — Document:
Calculate efficiency metrics:
Identify improvement opportunities:
Generate audit report with sections:
Save audit report to:
~/.second-brain/vault/ops/audits/YYYY-MM-DD-<process-slug>-audit.md
Create Asana tasks for improvement actions:
for each recommendation:
Use the `list_tasks` MCP tool (task creation via Asana API — log the action item with `log_note` instead)
--project "Operations" \
--name "[Recommendation]: [brief description]" \
--assignee "[owner]" \
--due-date "[implementation-date]" \
--description "[details and expected impact]"
Optionally create meeting event for process improvement kickoff:
Log the calendar item with `log_note` (calendar creation not yet in MCP)
--title "Process Audit Review: [process-name]" \
--date "+3 days" \
--attendees "[stakeholders]"
Log to daily log:
- **HH:MM** — [OPS] Process audit: <process-name> — Main bottleneck: <bottleneck> — Top recommendation: <rec> (est. <impact>)
Use this structure for audit report file:
---