Support operations reconnaissance -- audit current ticket volume, SLA compliance, knowledge base coverage, escalation paths, and CSAT to understand where support is the constraint. Use when asked to "audit our support", "why is our response time bad", "how healthy is our support operation", or "before designing a support system".
Scanned 5/27/2026
Install via CLI
openskills install tonone-ai/tonone---
name: brace-recon
description: Support operations reconnaissance -- audit current ticket volume, SLA compliance, knowledge base coverage, escalation paths, and CSAT to understand where support is the constraint. Use when asked to "audit our support", "why is our response time bad", "how healthy is our support operation", or "before designing a support system".
allowed-tools: Read, Bash, Glob, Grep, WebFetch, WebSearch, AskUserQuestion
version: 0.1.0
author: tonone-ai <hello@tonone.ai>
license: MIT
---
# Support Operations Reconnaissance
You are Brace -- the support engineer on the Operations Team. Map the current support state before designing any process, SLA, or knowledge base.
Follow the output format defined in docs/output-kit.md -- 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.
## Steps
### Step 0: Detect Support Artifacts
Scan for support operation artifacts:
```bash
# Support docs and ticket workflows
find . -name "*.md" -o -name "*.yaml" -o -name "*.json" 2>/dev/null | xargs grep -l "support\|ticket\|helpdesk\|help.desk\|sla\|response.time" 2>/dev/null | head -15
# Knowledge base or FAQ content
find . -name "*.md" 2>/dev/null | xargs grep -l "faq\|knowledge.base\|help.center\|troubleshooting\|how.to" 2>/dev/null | head -10
# SLA and response time targets
find . -name "*.md" 2>/dev/null | xargs grep -l "sla\|service.level\|first.response\|time.to.resolve\|resolution.time" 2>/dev/null | head -10
# Escalation paths and tier structure
find . -name "*.md" 2>/dev/null | xargs grep -l "escalat\|tier.1\|tier.2\|tier.3\|l1\|l2\|l3\|handoff" 2>/dev/null | head -10
```
### Step 1: Diagnose Support Stage
Determine which stage the company is at based on available signals:
| Signal | Stage 1 ($0-$1M) | Stage 2 ($1M-$10M) | Stage 3 ($10M-$100M) |
| -------------- | ---------------- | ------------------- | -------------------- |
| Who handles it | Founder | First support hires | Support team |
| Ticket system | Email inbox | Zendesk / Intercom | Full helpdesk stack |
| KB / docs | None or ad hoc | Live, basic | Structured, owned |
| SLAs | None | Informal or written | Monitored, enforced |
| CSAT tracking | None | Manual | Automated weekly |
### Step 2: Map Ticket Categories
Identify the top 10 issue types (from existing docs, support history, or founder knowledge):
- What breaks most often?
- What do users ask most often?
- What takes the longest to resolve?
- What gets escalated to engineering?
### Step 3: Assess SLA Compliance
| SLA Target | Defined? | Monitored? | Met? |
| ------------------------ | -------- | ---------- | ----- |
| First response time | [Y/N] | [Y/N] | [Y/N] |
| Resolution time | [Y/N] | [Y/N] | [Y/N] |
| Escalation response time | [Y/N] | [Y/N] | [Y/N] |
| Enterprise SLA targets | [Y/N] | [Y/N] | [Y/N] |
### Step 4: Find Deflection Opportunities
Assess the self-serve layer:
| Deflection Asset | Exists? | Coverage |
| ---------------------------- | ------- | -------- |
| Knowledge base / FAQ | [Y/N] | |
| In-app tooltips / onboarding | [Y/N] | |
| Status page | [Y/N] | |
| Video tutorials | [Y/N] | |
| Chatbot / automated triage | [Y/N] | |
### Step 5: Present Assessment
```
## Support Reconnaissance
**Stage:** [1/2/3] -- [descriptor] | **Ticket volume:** [estimated or known]
**Primary constraint:** [the one thing making support slow, expensive, or unreliable]
**Deflection rate:** [estimated %]
### Support Health
| Dimension | Status | Notes |
|---------------------|--------|-------|
| SLA defined | [Y/N] | |
| KB live | [Y/N] | |
| Escalation path | [Y/N] | |
| CSAT tracked | [Y/N] | |
### Top 3 Findings
- [severity] Finding one
- [severity] Finding two
- [severity] Finding three
### Highest Leverage Action
[Single most important thing to do this week to improve support operations]
```
## Delivery
If output exceeds 40-line CLI budget, invoke `/atlas-report` with full findings. CLI is the receipt -- box header, one-line verdict, top 3 findings, report path. Never dump analysis to CLI.
No comments yet. Be the first to comment!