operations-manager
Expert operations management covering process optimization, operational efficiency, resource management, and continuous improvement. Use when designing workflows, auditing operational maturity, building capacity plans, evaluating vendors, running Lean Six Sigma DMAIC projects, or optimizing cost-per-unit metrics.
What this skill does
# Operations Manager
The agent operates as a senior operations manager, applying Lean Six Sigma, PDCA, and capacity-planning frameworks to drive measurable efficiency gains.
## Workflow
1. **Assess maturity** -- Classify the operation against the five-level maturity model (Reactive through Optimized). Record the current level and the evidence that supports the classification.
2. **Map the process** -- Document the target process using the process documentation template. Identify every decision point, handoff, and system dependency.
3. **Measure baseline** -- Capture KPIs: throughput, cycle time, first-pass yield, cost per unit, and utilization. Validate each metric has a reliable data source before proceeding.
4. **Analyze gaps** -- Run root-cause analysis (5 Whys or fishbone). Quantify the gap between baseline and target for each KPI.
5. **Design improvement** -- Propose changes using DMAIC or PDCA. Include a pilot scope, rollback criteria, and expected ROI.
6. **Implement and control** -- Execute the pilot, collect post-change metrics, and compare to baseline. If improvement meets threshold, standardize; otherwise iterate from step 4.
> Checkpoint: After step 3, confirm that every KPI has an owner and a data source before moving to analysis.
## Operations Maturity Model
| Level | Name | Characteristics |
|-------|------|-----------------|
| 1 | Reactive | Ad-hoc processes, hero-dependent, crisis management, limited visibility |
| 2 | Managed | Documented processes, basic metrics, standard procedures, some automation |
| 3 | Defined | Consistent processes, performance tracking, cross-functional coordination, continuous improvement |
| 4 | Measured | Data-driven decisions, predictive analytics, optimized workflows, proactive management |
| 5 | Optimized | Self-optimizing systems, innovation culture, industry-leading efficiency, strategic advantage |
## KPI Framework
| Category | Metric | Formula | Target |
|----------|--------|---------|--------|
| Efficiency | Utilization | Active time / Available time | 85%+ |
| Productivity | Output per FTE | Units / FTE hours | Varies |
| Quality | First-pass yield | Good units / Total | 95%+ |
| Speed | Cycle time | End time - Start time | Varies |
| Cost | Cost per unit | Total cost / Units | Varies |
| Customer | CSAT | Satisfied / Total responses | 90%+ |
## Process Documentation Template
```markdown
# Process: [Name]
- **Owner:** [Role]
- **Frequency:** [Daily / Weekly / On-demand]
- **Trigger:** [What starts this process]
- **Output:** [Deliverable or state change]
## Steps
| # | Action | Owner | Input | Output | SLA |
|---|--------|-------|-------|--------|-----|
| 1 | Receive request | Ops team | Ticket | Validated ticket | 1 hr |
| 2 | Validate request | Analyst | Validated ticket | Approved / Rejected | 2 hr |
| 3 | Execute action | Specialist | Approved ticket | Completed work | 4 hr |
| 4 | Notify requester | System | Completion record | Notification sent | 15 min |
## Decision Points
| Decision | Criteria | Yes Path | No Path |
|----------|----------|----------|---------|
| Valid request? | Meets intake checklist | Step 2 | Reject and notify |
| Approval required? | Value > $5K | Escalate to manager | Step 3 |
## Metrics
| Metric | Target | Current |
|--------|--------|---------|
| Cycle time | < 8 hours | |
| Error rate | < 2% | |
| Volume | 50/day | |
```
## Example: DMAIC Cycle Time Reduction
A fulfillment team running 6.5-hour average cycle time against a 5-hour target:
```
DEFINE
Problem: Cycle time 30% above target (6.5 hr vs 5.0 hr)
Scope: Order-to-ship for domestic orders
Metric: Average cycle time, measured from ERP timestamps
MEASURE
Baseline data (30 days, n=1200 orders):
Mean: 6.5 hr | Median: 6.1 hr | P95: 9.8 hr
Bottleneck: Pick-and-pack stage accounts for 55% of total time
ANALYZE
5 Whys on pick-and-pack delay:
1. Why slow? -> Pickers walk long distances
2. Why long walks? -> Items stored alphabetically, not by frequency
3. Why alphabetical? -> Legacy warehouse layout from 2019
Root cause: Storage layout does not reflect current SKU velocity
IMPROVE
Action: Re-slot top 20% SKUs (by volume) to Zone A near packing stations
Pilot: 2-week trial on Aisle 1-3
Expected result: 25% reduction in pick time
CONTROL
Post-pilot (14 days, n=580 orders):
Mean: 4.8 hr | Median: 4.5 hr | P95: 7.2 hr
Result: 26% reduction -- standardize across all aisles
Control: Weekly cycle-time dashboard with alert at > 5.5 hr
```
## Capacity Planning
```
Capacity Required = Forecast Volume x Time per Unit
Capacity Available = FTE x Hours per Day x Productivity Factor
Gap = Required - Available
Planning Horizons:
Daily -> Staff scheduling, shift adjustments
Weekly -> Workload balancing across teams
Monthly -> Temp staffing, overtime authorization
Quarterly -> Hiring plans, cross-training programs
Annual -> Strategic workforce and capex planning
```
## Vendor Scorecard
| Dimension | Weight | Metrics |
|-----------|--------|---------|
| Quality | 30% | Defect rate (< 1%), first-pass acceptance (> 95%) |
| Delivery | 25% | On-time delivery (> 98%), lead time (< 5 days) |
| Cost | 20% | Price vs market (within 5%), invoice accuracy (> 99%) |
| Service | 15% | Response time (< 24 hr), issue resolution (< 48 hr) |
| Relationship | 10% | Communication quality, flexibility |
Score each metric 1-5. Weighted total determines vendor tier: 4.5+ = Strategic Partner, 3.5-4.4 = Preferred, below 3.5 = Under Review.
## Cost Breakdown Structure
```
DIRECT COSTS
Labor: Wages + Benefits + Overtime
Materials: Raw materials + Supplies
Equipment: Depreciation + Maintenance
INDIRECT COSTS
Overhead: Facilities + Utilities + Insurance
Administrative: Management + Support staff
Cost per Unit = (Direct + Indirect) / Units Produced
```
## Continuous Improvement: PDCA
1. **Plan** -- Identify the opportunity, analyze the current state, set an improvement target, develop the action plan.
2. **Do** -- Implement on a small scale, document observations, collect data.
3. **Check** -- Compare results to the target. If gap remains, perform root-cause analysis.
4. **Act** -- If successful, standardize and scale. If not, return to Plan with new hypotheses.
## Reference Materials
- `references/process_design.md` - Process design principles
- `references/lean_operations.md` - Lean methodology
- `references/vendor_management.md` - Vendor management guide
- `references/cost_optimization.md` - Cost reduction strategies
## Scripts
```bash
# Map and analyze business processes
python scripts/process_mapper.py --file process_steps.csv
python scripts/process_mapper.py --file process_steps.csv --json
# Resource capacity planning
python scripts/capacity_planner.py --file resources.csv --forecast demand.csv
python scripts/capacity_planner.py --file resources.csv --forecast demand.csv --json
# SLA compliance tracking
python scripts/sla_tracker.py --file tickets.csv
python scripts/sla_tracker.py --file tickets.csv --threshold 95 --json
```
## Troubleshooting
| Problem | Root Cause | Resolution |
|---------|-----------|------------|
| Cycle time increasing despite no volume change | Process drift, undocumented workarounds, or degraded tooling | Re-map the current process against documented standard; look for unofficial steps added over time; check system performance and integration latency |
| First-pass yield dropping below 95% | Training gaps, unclear specifications, or upstream quality issues | Run a fishbone analysis on defect categories; check if the issue correlates with new hires (training) or specific inputs (upstream); add quality gates at handoff points |
| Utilization consistently above 95% | Understaffing, poor demand forecasting, or inability to say no to ad-hoc requests | Sustained >95% utilization causes burnout and errors; hire or cross-train to reach 85% target; implement demand prioritization with SLA tiers |
| SLA compliance below tRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.