coo-advisor
Operations leadership advisor for COOs on business operations, process optimization, scaling infrastructure, cross-functional alignment, and operational excellence. Use when designing operational processes, planning headcount capacity, optimizing vendor relationships, building business continuity plans, or scaling operations for rapid growth.
What this skill does
# COO Advisor
The agent acts as a fractional COO, providing operational strategy and process design grounded in maturity-model thinking and data-driven optimization.
## Workflow
1. **Assess operational maturity** -- Place the organization on the Operations Maturity Model (Levels 1-4). Validate the assessment by checking for documented processes, KPI dashboards, and automation coverage.
2. **Map critical processes** -- Identify the top 5 processes by volume or business impact. Document each using the Process Documentation Standard.
3. **Identify waste** -- For each mapped process, catalogue waiting time, rework loops, manual steps, and approval bottlenecks. Quantify cycle time and cost per transaction.
4. **Prioritize improvements** -- Plot identified improvements on the Automation Priority Matrix. Select quick wins (high value, low effort) for immediate action.
5. **Design operating rhythm** -- Establish the meeting cadence (daily, weekly, monthly, quarterly) and assign owners. Verify each meeting has a defined purpose and output.
6. **Build capacity model** -- Apply the headcount formula to forecast resource needs. Factor in attrition, ramp time, and seasonal variation.
7. **Establish metrics and reporting** -- Configure the Operational Dashboard and set targets for efficiency, quality, and scalability KPIs.
## Operations Maturity Model
| Level | Name | Characteristics |
|-------|------|-----------------|
| 1 | Ad Hoc | Informal processes, tribal knowledge, reactive problem solving |
| 2 | Defined | Documented processes, basic metrics, some automation |
| 3 | Managed | KPI dashboards, regular reviews, continuous improvement |
| 4 | Optimized | Data-driven decisions, automated workflows, industry-leading efficiency |
## Process Documentation Standard
```markdown
# Process Name
## Purpose
[Why this process exists]
## Owner
[Single accountable person]
## Trigger
[What initiates this process]
## Inputs
[What is needed to start]
## Steps
1. [Step with responsible party]
2. [Step with responsible party]
3. [Step with responsible party]
## Outputs
[What is produced]
## SLAs
[Time and quality expectations]
## Exceptions
[How to handle edge cases]
```
## Operating Rhythm
| Meeting | Frequency | Duration | Attendees | Purpose |
|---------|-----------|----------|-----------|---------|
| Standup | Daily | 15 min | Team | Issue escalation, key metrics |
| Dept Sync | Weekly | 45 min | Dept heads | Cross-functional coordination |
| Leadership Sync | Weekly | 60 min | Execs | Alignment |
| Business Review | Monthly | 90 min | Leadership | Performance deep-dive |
| QBR | Quarterly | Half day | Leadership | Strategy and OKR assessment |
## Headcount Capacity Model
```
Required HC = Volume / (Productivity x Utilization)
Volume: Work units per period
Productivity: Units per person per period
Utilization: Available time percentage (typically 75-85%)
```
**Adjustment factors**: Attrition rate (10-20%), ramp time for new hires, seasonal variation, growth assumptions.
## Automation Priority Matrix
```
High Value
|
Quick Wins -----+----- Strategic Projects
(Do First) | (Plan Carefully)
|
Low Effort ---------+--------- High Effort
|
Fill-ins -----+----- Reconsider
(Do When Available) | (May Not Be Worth It)
|
Low Value
```
## Operational KPIs
| Category | Metrics |
|----------|---------|
| Efficiency | Process cycle time, first-time completion rate, cost per transaction, automation rate |
| Quality | Error rate, rework %, customer satisfaction, SLA compliance |
| Scalability | Volume growth handling, cost per unit trend, capacity utilization, bottleneck count |
## Operational Dashboard Structure
```
OPERATIONAL HEALTH
+-- Volume metrics (transactions, requests, tickets)
+-- Quality metrics (errors, rework, satisfaction)
+-- Efficiency metrics (cycle time, cost per unit)
+-- Capacity metrics (utilization, backlog)
TEAM PERFORMANCE
+-- Productivity per person
+-- SLA achievement
+-- Training completion
+-- Engagement score
SYSTEM HEALTH
+-- System uptime
+-- Integration status
+-- Processing latency
+-- Error rates
```
## Incident Classification
| Level | Impact | Response Time | Communication |
|-------|--------|---------------|---------------|
| P1 | Business critical | 15 min | Exec + all stakeholders |
| P2 | Major impact | 1 hour | Leadership + affected teams |
| P3 | Moderate impact | 4 hours | Team leads |
| P4 | Minor impact | 24 hours | Direct reports |
## Vendor Management
**Selection criteria**: Capability fit, financial stability, reference quality, service levels, pricing competitiveness, contract flexibility.
**Review cadence**: Weekly (operational issues), Monthly (performance metrics), Quarterly (business review), Annual (contract renewal).
## BCP Framework
1. **Risk assessment** -- Identify critical processes, assess disruption impact, determine recovery priorities, document dependencies.
2. **Continuity planning** -- Define RTO/RPO, identify alternate resources, document procedures, assign responsibilities.
3. **Testing** -- Annual tabletop exercises, periodic recovery drills, plan updates after changes, post-incident reviews.
## Example: Scaling Customer Onboarding (Series B SaaS)
A Series-B SaaS company onboards 40 new customers/month with a 5-person onboarding team. Current cycle time is 21 days.
```
Current state:
Volume: 40 customers/month
Productivity: 8 customers/person/month
Utilization: 80%
Required HC: 40 / (8 x 0.80) = 6.25 -> 7 FTEs (gap: 2 hires)
Optimization targets:
Automate provisioning step (saves 3 days) -> cycle time: 18 days
Self-serve data migration portal (saves 2 days) -> cycle time: 16 days
Revised productivity: 10 customers/person/month
Required HC at 80 customers/month: 80 / (10 x 0.80) = 10 FTEs
Investment: 1 eng sprint for automation + $15K/yr portal tooling
ROI: Handles 2x volume with 43% fewer incremental hires
```
## Budget Variance Analysis
1. Compare actual vs budget by category (personnel, technology, facilities, services, travel)
2. Identify root causes for variances exceeding 10%
3. Adjust rolling forecast
4. Document corrective actions with owners and deadlines
## Scripts
```bash
# Process efficiency analyzer
python scripts/process_analyzer.py --process onboarding
# Capacity planning calculator
python scripts/capacity_planner.py --forecast demand.csv
# Vendor scorecard generator
python scripts/vendor_scorecard.py --vendors vendors.yaml
# Operational dashboard builder
python scripts/ops_dashboard.py --metrics metrics.json
```
## References
- `references/process_templates.md` -- Standard process documentation
- `references/scaling_playbook.md` -- Scaling operations guide
- `references/vendor_management.md` -- Vendor relationship framework
- `references/bcp_template.md` -- Business continuity planning
---
## Tool Reference
### 1. operational_kpi_tracker.py
Tracks operational KPIs across efficiency, quality, and scalability categories. Calculates health scores, detects trends, flags at-risk metrics, and generates improvement recommendations.
```bash
python scripts/operational_kpi_tracker.py --input kpi_data.json --json
python scripts/operational_kpi_tracker.py --input kpi_data.json
```
| Flag | Type | Description |
|------|------|-------------|
| `--input` | required | Path to JSON file with KPI categories, metrics, targets, and actuals over time |
| `--json` | optional | Output in JSON format instead of human-readable text |
### 2. process_efficiency_scorer.py
Scores process efficiency across cycle time, first-time completion rate, cost per transaction, automation rate, error rate, and rework percentage. Identifies bottlenecks and prioritizes improvement opportunities.
```bash
python scripts/process_efficiency_scorer.py --input processes.json --json
pytRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".