> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bossmode.ing/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflows & Skills

> Find the 100x candidate workflows hiding in your existing operations. Build and share reusable agent skill fragments. Track what ships on the roadmap.

## Workflow audit — 100x candidate scanner

The workflow audit surface answers one question: *where in your existing operations could an agent deliver 10x the volume at 10x the speed?*

The Convex action `workflowAudit.scan` reads from raw signals, execution work packets, and connected systems, then writes scored candidates to the `workflowCandidates` table. Each candidate carries:

* `leverageScore` (0–100) — composite of volume and speed multipliers
* `volumeMultiplier` — estimated throughput gain
* `speedMultiplier` — estimated cycle-time reduction
* `rationale` — plain-language explanation the boss can read in thirty seconds
* `recommendedAgent` — which consigliere role should own this
* `status` — `new`, `reviewed`, `adopted`, or `rejected`

```bash theme={null}
POST /api/pro/workflow-audit/scan
```

The `/dashboard/workflow-audit` page lists candidates sorted by leverage score, descending. Adopt or reject each one. Adopted candidates can be linked to a roadmap item.

<img src="https://mintlify.s3.us-west-1.amazonaws.com/bossmode/agent-deployer/images/workflow-audit.png" alt="Workflow audit view" />

## Shared skills registry

Skills are reusable agent playbook fragments — named, versioned, tagged definitions that a standing order can reference by ID instead of copy-pasting logic across orders.

Five starter skills ship with every workspace:

| Skill                      | Description                                                                                 |
| -------------------------- | ------------------------------------------------------------------------------------------- |
| Cold Outreach Audit        | Reviews outbound message sequences for tone, personalization gaps, and deliverability flags |
| Lead Enrichment Pass       | Fills missing firmographic fields before a lead enters the nurture queue                    |
| Contract Intake Pre-Review | Flags non-standard clauses before a contract goes to legal                                  |
| Onboarding Checklist       | Verifies each onboarding step is complete before the customer success capo closes           |
| Competitive Brief          | Pulls the latest competitor summary into a one-page agent brief                             |

The `/dashboard/skills` page lets you create new skills, tag them, set visibility (`private`, `org`, or `public`), and apply them to standing order templates. Applying a skill inserts a reference token the consigliere resolves at runtime.

<img src="https://mintlify.s3.us-west-1.amazonaws.com/bossmode/agent-deployer/images/skills-registry.png" alt="Skills registry" />

## Roadmap

The `/dashboard/roadmap` page gives the boss a status view of what the team is building. Items move through five statuses: `backlog`, `planned`, `in_progress`, `shipped`, and `shelved`. Change status via dropdown — no drag-drop required.

```bash theme={null}
POST  /api/pro/roadmap          # Create item
PATCH /api/pro/roadmap/:id      # Update title, status, eta, owner
DELETE /api/pro/roadmap/:id     # Remove item
```

Each item supports a `links` array for connecting a roadmap entry to a Loom capture, a GitHub issue, or any other URL captured in the context panel.

<img src="https://mintlify.s3.us-west-1.amazonaws.com/bossmode/agent-deployer/images/roadmap.png" alt="Roadmap view" />
