Workflow And SOP Builder
Turn how work actually gets done into a usable process people and tools can follow.
Job contract
- Owns: repeated business processes and operational playbooks.
- Does not own: AI instruction files (
agents-md-setup).
- Finished deliverable: selected-mode workflow, SOP, exception handling, and test run.
Choose a mode
Human-run: people follow the SOP manually.
AI-assisted: AI prepares or checks defined steps while a person decides.
Automated: systems move information under explicit rules and controls.
Combined: assigns each step to the cheapest safe owner.
Workflow
- Capture the trigger, desired result, frequency, inputs, owner, current steps, systems, exceptions, and failure cost.
- Observe the real path. Do not document an imaginary ideal process as current reality.
- Remove duplicate work before automating anything.
- Assign each step to a person, AI, or system and explain why.
- Define decision rules, approval gates, data handling, failure paths, and recovery.
- Write the SOP so a new operator can run it without oral context.
- Dry-run one normal case and one exception; revise where instructions fail.
Output
# Workflow And SOP
## Purpose And Success
[Trigger, outcome, measure]
## Roles And Systems
[Who or what owns each part]
## Procedure
| Step | Owner | Input | Action | Output | Check |
## Decision Rules
[If/then rules]
## Approvals And Safety
[External actions, sensitive data, spend, irreversible steps]
## Exceptions And Recovery
[What can fail and what to do]
## Run Checklist
[Compact repeat-use version]
## Test Record
[Normal and exception cases]
Guardrails
- Never automate sending, publishing, spending, deletion, or account changes without an explicit approval gate.
- Keep sensitive data out of prompts and logs unless required and authorised.
- Prefer a reliable manual step to a brittle automation.
1---2name: workflow-and-sop-builder3description: Turn a repeated business task into a human-run, AI-assisted, automated, or combined workflow with an SOP, roles, steps, decisions, exceptions, controls, and tests.4---56# Workflow And SOP Builder78Turn how work actually gets done into a usable process people and tools can follow.910## Job contract1112- Owns: repeated business processes and operational playbooks.13- Does not own: AI instruction files (`agents-md-setup`).14- Finished deliverable: selected-mode workflow, SOP, exception handling, and test run.1516## Choose a mode1718- `Human-run`: people follow the SOP manually.19- `AI-assisted`: AI prepares or checks defined steps while a person decides.20- `Automated`: systems move information under explicit rules and controls.21- `Combined`: assigns each step to the cheapest safe owner.2223## Workflow24251. Capture the trigger, desired result, frequency, inputs, owner, current steps, systems, exceptions, and failure cost.262. Observe the real path. Do not document an imaginary ideal process as current reality.273. Remove duplicate work before automating anything.284. Assign each step to a person, AI, or system and explain why.295. Define decision rules, approval gates, data handling, failure paths, and recovery.306. Write the SOP so a new operator can run it without oral context.317. Dry-run one normal case and one exception; revise where instructions fail.3233## Output3435```markdown36# Workflow And SOP3738## Purpose And Success39[Trigger, outcome, measure]4041## Roles And Systems42[Who or what owns each part]4344## Procedure45| Step | Owner | Input | Action | Output | Check |4647## Decision Rules48[If/then rules]4950## Approvals And Safety51[External actions, sensitive data, spend, irreversible steps]5253## Exceptions And Recovery54[What can fail and what to do]5556## Run Checklist57[Compact repeat-use version]5859## Test Record60[Normal and exception cases]61```6263## Guardrails6465- Never automate sending, publishing, spending, deletion, or account changes without an explicit approval gate.66- Keep sensitive data out of prompts and logs unless required and authorised.67- Prefer a reliable manual step to a brittle automation.