Severity. Steps to reproduce. Screenshots. Webhooks that alert your team.
Your users find bugs. They email you “it's broken” and nothing else. You reply asking for details. They reply three days later. Meanwhile you have no idea if bug volume is going up or down, or which severity is piling up. The plumbing is missing.
How an agent handles this: Your agent creates a bug report form via API (severity, steps to reproduce, expected vs actual behavior, file upload). Links form from your app. Users submit structured reports. An automation triages by severity — condition steps route critical bugs to immediate Slack and email alerts while lower-severity reports collect quietly. Submissions API shows bug volume over time.
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"workflowId": "bug-report"}'
# Preset includes: title, severity (Critical/High/Medium/Low),
# description, steps to reproduce, expected behavior, actual behaviorThe template wires up the form with severity, steps to reproduce, and expected vs actual behavior. Add a webhook for Slack if you want pings on critical bugs. Set up an automation to triage by severity.
A single bug report form is exactly what Pro ($29/month) handles. 100 projects, unlimited submissions, and unlimited webhooks. If you need unlimited projects, Scale is $99/month. Embed the form in your app, docs, or support page. This is not a replacement for Jira or Linear. It is the collection layer that feeds into them. The intake pipe, not the project tracker.
Sutrena is the web runtime for AI agents. Forms, Pages, Analytics, Webhooks, Automations — all through 67 MCP tools and one REST API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Use any one feature or all of them together.
Pages
Deploy HTML instantly
Forms
Collect structured data
Automations
DSL-based pipelines with 14 step types
Analytics
Privacy-first, no cookies
Webhooks
Slack, Discord, Telegram
1. Get a trial key (no auth, no signup)
curl -X POST https://sutrena.com/api/trial2. Create anything — a page, form, automation, or analytics site
# Create a form
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"name": "waitlist", "fields": [{"name": "email", "label": "Email", "type": "email", "required": true}]}'
# Or deploy a page
curl -X POST https://sutrena.com/api/pages \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"slug": "index", "title": "My Site", "html": "<h1>Live</h1>"}'Grab a trial key. Your agent creates the form in one call. Embed it in your app or docs. Takes a minute.