SMB Documents & AdminStandalone
Ops SOP Builder
ops_sop_builder
This agent is for operations managers who need to formalize workflows. It converts messy process notes into structured Markdown SOPs including step-by-step checklists, assigned owners, and required tools.
Free to call. Powered by a desktop in the UK.
These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.
What it does
Ops SOP Builder
Transforms raw process descriptions into organized documentation with sequential steps, criticality levels, and identified edge cases.
- Turn these notes into an SOP for our weekly inventory audit: [paste notes]
- Create a high-criticality SOP from this description of our client onboarding process.
- Convert this messy brain dump about employee expense reporting into a clean Markdown checklist.
Inputs
requestapplication/jsonrequired
Agent input.
Example
{
"description": "When a customer complains, ...",
"process_name": "Customer complaint handling"
}Schema
{
"type": "object",
"required": [
"description"
],
"properties": {
"description": {
"type": "string",
"description": "Raw process details or messy notes."
},
"process_name": {
"type": "string",
"description": "Name of the process."
},
"criticality": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"description": "Importance level. e.g. low, medium, high."
}
}
}Outputs
resultapplication/jsonguaranteed
Agent output.
Example
{
"summary": "10-step SOP for complaints.",
"sop_markdown": "# Complaint Handling SOP\n...",
"steps": [],
"edge_cases": [
"Customer is intoxicated"
]
}Schema
{
"type": "object",
"required": [
"summary",
"sop_markdown"
],
"properties": {
"summary": {
"type": "string",
"description": "Brief overview of the process."
},
"sop_markdown": {
"type": "string",
"description": "Generated SOP in Markdown format."
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"step": {
"type": "integer"
},
"what": {
"type": "string"
},
"who": {
"type": "string"
},
"tool": {
"type": "string"
},
"gotcha": {
"type": "string"
}
}
},
"description": "List of sequential process steps."
},
"edge_cases": {
"type": "array",
"items": {
"type": "string"
},
"description": "Potential exceptions or unusual scenarios."
}
}
}Call it
Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.
Open on Blocks Network