Written By William Bowen
Last updated About 2 months ago
Intro
Use this agent to build ANY workflow you wantโฆin natural language.
Instructions
Head to:
Type your workflow idea into the text box.
Copy the prompt.
Paste the prompt into the prompt node. The AI Agent now has clear and complete instructions to complete your workflow.
Save your agent.
Assign it to an inbox.
For now, this template + generated prompt can only send SMS. It cannot take any outside actions (like update CRM). Please contact our AI team (wbowen@clerk.chat) to chat about building more advanced AI agents. Our product supports it!
In cases where actions need to be taken outside of sending an SMS, the AI agent will defer to a human to complete those tasks. Human-in-the-loop.
Use cases
Any workflow you want to build.
Support use case, marketing use case, sales use case, etc.
Screenshots
Template
Example{
"$schema": "https://web-api.clerk.chat/pipeline-schema",
"name": "Workflow Template",
"nodes": [
{
"type": "ai_bot",
"name": "Paste prompt here",
"triggeredBy": [
"unreadMessage.fromAny"
],
"responseType": "user_message",
"staticId": 2,
"nodeConfig": {
"modelProvider": "openai",
"modelVersion": null,
"maxTokens": null,
"temperature": null,
"variables": {},
"prompt": "",
"promptSections": [],
"sectionTemplates": {},
"responseSchema": {
"type": "object",
"required": [],
"properties": {}
},
"opts": {
"sendStructuredConvo": true
}
}
},
{
"type": "trigger",
"name": "Start",
"triggeredBy": [
"userMessage"
],
"responseType": "json",
"staticId": 1
}
],
"edges": [
{
"name": null,
"sourceNode": "Start",
"destinationNode": "Paste prompt here",
"sourceVariables": null,
"filters": []
}
]
}