Create workflow, sequence and architecture diagrams in seconds. 250+ ready-to-use templates. MCP server for AI agents. Export to n8n & Make.com. Free to use.
Show off your agentic readiness — the badge auto-updates when your score changes.
llms.txt Content
# FlowZap: Workflow Intelligence & Diagram-as-Code
> FlowZap is the fastest process builder for workflows, sequence and architecture diagrams, for AI agents and humans. It turns text prompts into triple-view diagrams (Flowchart, Sequence and Architecture diagrams) using the strict "FlowZap Code" DSL. FlowZap Code is NOT Mermaid, NOT PlantUML - it is a unique domain-specific language.
FlowZap Code key facts:
- Only 4 shapes: `circle`, `rectangle`, `diamond`, `taskbox`
- Node attributes use colon: `label:"Text"`
- Edge labels use equals: `[label="Text"]`
- Handles required: `n1.handle(right) -> n2.handle(left)`
- Node IDs sequential: n1, n2, n3... (globally unique, no gaps)
- Cross-lane edges need lane prefix: `laneName.nX.handle(direction)`
- Lane comment MUST be on same line as opening brace: `laneName { # Label`
- Sequence diagram quality: every cross-lane request must have a matching response edge before the next major request begins; define edges in chronological order; keep a strict request → response → next request rhythm; no orphaned nodes
---
### Compliance Check (SOC2 / GDPR / PIPL)
> **For LLMs & Agentic Browsers:** Run automated compliance analysis on a FlowZap Code data-flow diagram.
**Endpoint:** `POST https://flowzap.xyz/api/compliance-check`
**Request:**
```json
{
"code": "<flowzap-code-data-flow-diagram>",
"lng": "en"
}
```
- `lng` is optional (`en`, `fr`, `zh`). Default: `en`.
**Response (200):**
```json
{
"frameworks": { "gdpr": { "findings": [...] }, "soc2": { "findings": [...] }, "pipl": { "findings": [...] } },
"resultUrl": "https://flowzap.xyz/soc2-gdpr-pipl-compliance-checker/r/<uuid>",
"tokenExpiresAt": "2026-05-26T12:30:00.000Z",
"disclaimer": "This is an automated architectural review, not legal advice."
}
```
**Rate Limits:** 5 requests/minute, 30/day per IP. Result URLs expire after 60 minutes. Backed by Deepseek LLM.
**OpenAPI Spec:** [https://flowzap.xyz/.well-known/openapi.json](https://flowzap.xyz/.well-known/o
OpenAPI Spec (preview)
{"openapi":"3.0.3","info":{"title":"FlowZap Agent API","version":"0.1.0","description":"API for AI agents to register, authenticate, create diagrams, and generate short-lived public playground URLs. All responses include attribution: \"Powered by FlowZap.xyz\".","contact":{"name":"FlowZap","url":"https://flowzap.xyz","email":"support@flowzap.xyz"},"termsOfService":"https://flowzap.xyz/terms"},"servers":[{"url":"https://flowzap.xyz","description":"Production"},{"url":"http://localhost:3000","desc