Squire ops

Operations engine for ID8Labs. Build systems that run without consuming you. Document, automate, delegate - in that order.

install
source · Clone the upstream repo
git clone https://github.com/eddiebelaval/squire
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/eddiebelaval/squire "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/id8labs/ops" ~/.claude/skills/eddiebelaval-squire-ops && rm -rf "$T"
manifest: skills/id8labs/ops/SKILL.md
source content

ID8OPS - Operations Engine

Purpose

Build systems that run without you. Operations isn't about working harder—it's about working once and letting systems do the rest.

Philosophy: If you do it twice, document it. If you do it ten times, automate it. If it takes more than an hour, delegate it.


When to Use

  • Product is stable and needs operational rigor
  • User is drowning in repetitive tasks
  • User asks "how do I not be the bottleneck?"
  • User needs to document processes
  • User is thinking about hiring
  • Project is in GROWING or OPERATING state

Commands

/ops <project-slug>

Run full operations audit and systematization.

Process:

  1. AUDIT - Identify recurring work
  2. SYSTEMATIZE - Document processes
  3. AUTOMATE - Script what can be scripted
  4. DELEGATE - Hand off what can't be automated
  5. MEASURE - Track operational health
  6. OPTIMIZE - Improve continuously

/ops audit

Audit current operations for systematization opportunities.

/ops sop <process-name>

Create a Standard Operating Procedure document.

/ops delegate <task>

Create delegation framework for a specific task.

/ops playbook

Generate comprehensive operations playbook.


Operations Philosophy

Solo Builder Reality

StageOperations Focus
BuildingMinimal - focus on product
LaunchingEssential checklists only
GrowingDocument critical paths
ScalingSystematize everything

The Operations Ladder

Level 1: Chaos
Everything in your head
You are the system

Level 2: Documentation
Processes written down
Others could follow them

Level 3: Automation
Scripts handle routine work
You review outputs

Level 4: Delegation
Others own processes
You set direction

Level 5: Organization
Systems run systems
You focus on strategy

Goal: Move up the ladder. Most solo builders stay at Level 1 too long.


Process Detail

Phase 1: AUDIT

Identify all recurring work:

TaskFrequencyTime/OccurrenceWeekly HoursCategory
{task}{daily/weekly}{X min}{X hrs}{ops/support/dev}

Categories:

  • Customer Support - Answering questions, issues
  • Operations - Billing, admin, maintenance
  • Marketing - Content, social, outreach
  • Development - Bug fixes, features
  • Strategy - Planning, decisions

Analysis:

  • Which tasks consume most time?
  • Which are repetitive and predictable?
  • Which require your unique skills?
  • Which could someone else do?

Phase 2: SYSTEMATIZE

For each recurring task, create an SOP:

## SOP: {Task Name}

### Purpose
Why this task exists and what it achieves.

### Trigger
When to perform this task.

### Steps
1. Step one (be specific)
2. Step two
3. Step three

### Output
What the completed task produces.

### Quality Check
How to verify it was done correctly.

### Common Issues
What goes wrong and how to fix it.

Systematization priority:

  1. Tasks you hate (you'll skip them otherwise)
  2. Tasks that block others
  3. Tasks that cause errors when done wrong
  4. Tasks that take longest

Phase 3: AUTOMATE

Automation candidates:

Good for AutomationBad for Automation
Repetitive, predictableRequires judgment
Data entry/movementCreative work
Notifications/alertsRelationship building
ReportingComplex decisions
BackupsEdge case handling

Automation tools for solo builders:

CategoryTools
WorkflowsZapier, Make, n8n
SchedulingCron, scheduled functions
EmailSequences, auto-responders
DataScripts, database triggers
MonitoringUptime, error alerts

Automation ROI:

Time saved per occurrence × Occurrences per month × 12
─────────────────────────────────────────────────────
Time to build automation + Time to maintain × 12

If ratio > 3, automate.

Phase 4: DELEGATE

Delegation framework:

CAN delegate:
- Tasks with clear inputs/outputs
- Tasks with written SOPs
- Tasks that don't require context
- Tasks with measurable quality

CAN'T delegate:
- Tasks requiring your unique insight
- High-stakes decisions
- Relationship-dependent work
- Tasks you haven't systematized

Delegation readiness checklist:

  • SOP exists and is complete
  • Quality criteria defined
  • Example outputs available
  • Feedback loop established
  • Access/tools documented

Who to delegate to:

OptionCostBest For
VA (Virtual Assistant)$5-25/hrAdmin, data entry
Freelancer$25-100/hrSpecialized tasks
Contractor$50-150/hrOngoing work
Part-time hireSalaryCritical functions
AI toolsVariesRepetitive analysis

Phase 5: MEASURE

Operational health metrics:

MetricWhat It ShowsTarget
Response timeSupport speed< 24 hours
Resolution rateSupport quality> 90%
UptimeSystem reliability> 99.5%
Error rateProduct quality< 1%
Churn rateCustomer health< 5%/mo

Weekly ops review:

  • What broke this week?
  • What took longer than expected?
  • What can be improved?
  • What should be documented/automated?

Phase 6: OPTIMIZE

Continuous improvement cycle:

Measure → Analyze → Improve → Measure

Optimization targets:

  • Reduce time per task
  • Reduce error rate
  • Reduce response time
  • Increase automation coverage
  • Increase delegation effectiveness

Framework References

Systems Thinking

frameworks/systems-thinking.md
- Building systems, not tasks

SOPs

frameworks/sops.md
- Standard operating procedure patterns

Delegation

frameworks/delegation.md
- Effective handoff frameworks

Customer Success

frameworks/customer-success.md
- Support and onboarding systems

Team Building

frameworks/team-building.md
- Hiring and culture (when ready)


Output Templates

SOP Template

templates/sop-template.md
- Standard operating procedure

Ops Playbook

templates/ops-playbook.md
- Overall operations document

Hiring Scorecard

templates/hiring-scorecard.md
- Evaluation framework


Tool Integration

MCPs

Supabase:

  • Operational data queries
  • User support context
  • System health metrics

Subagents

operations-manager:

  • Complex operations coordination
  • System design assistance
  • Process optimization

Handoff

After completing operations setup:

  1. Save outputs:

    • SOPs →
      docs/sops/
    • Playbook →
      docs/OPS_PLAYBOOK.md
  2. Log to tracker:

    /tracker log {project-slug} "OPS: Systematized {N} processes. {N} automated. Ready for scale."
    
  3. Update state:

    /tracker update {project-slug} OPERATING
    
  4. Next steps:

    • Execute SOPs consistently
    • Review and improve weekly
    • When exit opportunity arises, transition to exit

Quick Wins

Day 1: Document Support

Write SOPs for:

  • Answering common questions
  • Bug report handling
  • Refund process

Week 1: Automate Notifications

Set up:

  • New user alerts
  • Error notifications
  • Churn warnings

Month 1: Build Playbook

Create comprehensive ops playbook covering:

  • All recurring processes
  • Emergency procedures
  • Quality standards

Anti-Patterns

Anti-PatternWhy BadDo Instead
"Just do it faster"Doesn't scaleSystematize first
Automating firstWaste if wrongDocument, then automate
Delegating chaosSets up failureSystematize, then delegate
No documentationKnowledge silosWrite it down
Perfect systemsNever finishedGood enough, iterate
Ignoring opsDrowning inevitableSchedule ops time

Quality Checks

Before finalizing operations setup:

  • Critical processes documented
  • SOPs are followable by others
  • Automation ROI is positive
  • Delegation criteria defined
  • Metrics dashboard exists
  • Weekly review scheduled
  • Emergency procedures documented