Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

flowzap-diagrams流程图

Agent Skill

flowzap-diagrams 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,658

周安装

113

GitHub Stars

公开资料未说明

下载量

931
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:flowzap-diagrams(流程图)
来源仓库:https://github.com/flowzap-xyz/flowzap-diagrams
安装命令:
openclaw skills install flowzap-diagrams
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install flowzap-diagrams

简介

使用 FlowZap Code DSL 生成、验证和发布工作流程、序列和架构图。当用户要求创建工作流程、流程图等时使用

SKILL.md

name
flowzap-diagrams
description
>
tags

FlowZap Diagram Skill

Generate valid FlowZap Code (.fz) diagrams from natural-language requests, validate them, and return shareable FlowZap playground URLs.

This skill is designed to be paired with the flowzap-mcp server. The skill gives the agent FlowZap-specific diagram knowledge and output rules; the MCP server provides the actual tools.

Trust and privacy summary

  • This skill bundle is documentation only: SKILL.md plus reference files. It

does not execute code by itself.

  • The flowzap-mcp server runs locally on the user's machine over stdio.
  • Outbound requests are restricted to https://flowzap.xyz.
  • Raw HTTP logs, OpenAPI specs, and code snippets are parsed locally inside the

MCP package. Only generated FlowZap Code is sent to FlowZap public endpoints when validation or playground creation is requested.

When to use this skill

  • User asks for a workflow, flowchart, process diagram, sequence diagram, or architecture diagram.
  • User pastes HTTP logs, OpenAPI specs, or code and wants them visualised.
  • User wants to compare two diagram versions (diff) or patch an existing diagram.

Installation model

This setup has two parts:

  1. Install the skill bundle so your agent knows when to use FlowZap and how

to produce correct FlowZap Code.

  1. Install the MCP server so your agent can validate code, create

playground URLs, diff diagrams, and apply structured changes.

Install the skill bundle

Recommended:

npx skills add flowzap-xyz/flowzap-mcp --skill flowzap-diagrams

If your agent does not support skills.sh, install this bundle through your agent's skill manager or by copying the folder into the agent's local skills directory.

Manual locations:

  • Claude Code: .claude/skills/flowzap-diagrams/SKILL.md
  • Windsurf: .windsurf/skills/flowzap-diagrams/SKILL.md
  • Cursor: .cursor/skills/flowzap-diagrams/SKILL.md

Install the MCP server (required for tools)

If the FlowZap MCP server is not already configured, install it:

# Claude Code
claude mcp add --transport stdio flowzap -- npx -y flowzap-mcp@1.3.6

# Or add to .mcp.json / claude_desktop_config.json / cursor / windsurf config:
{
  "mcpServers": {
    "flowzap": {
      "command": "npx",
      "args": ["-y", "flowzap-mcp@1.3.6"]
    }
  }
}

Package verification

The pinned version 1.3.6 can be verified against the npm registry:

FieldValue
npmflowzap-mcp@1.3.6
Integrity (SHA-512)sha512-9pnsETVvbCj5+cDEbiwRBWbqaA+FDMIJFU/vylXCnJOAt6nuvlFQf3/M8WI6EeBoVtGw/OyBZtJTQSjFUh4U0w==
Shasum86a434a49f4ec9e6fae76cc34acb73f357e81b1f
Sourcegithub.com/flowzap-xyz/flowzap-mcp
LicenseMIT

To verify locally before use:

npm view flowzap-mcp@1.3.6 dist.integrity dist.shasum

Compatible tools: Claude Desktop, Claude Code, Cursor, Windsurf, OpenAI Codex, Warp, Zed, Cline, Roo Code, Continue.dev, Sourcegraph Cody.

Not compatible: Replit, Lovable.dev.

Without the MCP server, this skill can still help an agent draft FlowZap Code, but it cannot validate diagrams, create playground URLs, or use the FlowZap tooling workflow described below.

Available MCP tools

ToolPurpose
flowzap_validateCheck .fz syntax before sharing
flowzap_create_playgroundGet a shareable playground URL
flowzap_get_syntaxRetrieve full DSL docs at runtime
flowzap_export_graphExport diagram as structured JSON (lanes, nodes, edges)
flowzap_artifact_to_diagramParse HTTP logs / OpenAPI / code → diagram + playground URL
flowzap_diffStructured diff between two .fz versions
flowzap_apply_changePatch a diagram (insert/remove/update nodes/edges)

FlowZap Code DSL — quick reference

FlowZap Code is not Mermaid, not PlantUML. It is a unique DSL offering a simple syntax for a triple-view option to workflow, sequence and architecture diagrams.

Shapes (only 4)

ShapeUse for
circleStart / End events
rectangleProcess steps / actions
diamondDecisions (Yes/No branching)
taskboxAssigned tasks (owner, description, system)

Syntax rules

  • Node IDs are globally unique, sequential, no gaps: n1, n2, n3
  • Node attributes use colon: label:"Text"
  • Edge labels use equals inside brackets: [label="Text"]
  • Handles are required on every edge: n1.handle(right) -> n2.handle(left)
  • Directions: left, right, top, bottom
  • Cross-lane edges: prefix target with lane name: sales.n5.handle(top)
  • Lane display label: one # Label comment on the same line as the opening brace
  • Loops: loop [condition] n1 n2 n3 — flat, inside a lane block
  • Layout: prefer horizontal left→right; use top/bottom only for cross-lane hops

Multi-lane sequence design

  • Ping-pong rule: For multi-participant processes, every cross-lane interaction must alternate back-and-forth between lanes. A request from Lane A → Lane B must be followed by a response from Lane B → Lane A before any new major cross-lane request begins. This is now a strict validation requirement, not just a readability suggestion.
  • Chronological order: The sequence view follows cross-lane edge definition order. Define request, response, then next request in the exact order they happen.

Gotchas — never do these

  • Do NOT use label="Text" on nodes (must be label:"Text").
  • Do NOT use label:"Text" on edges (must be [label="Text"]).
  • Do NOT skip node numbers (n1, n3 → invalid; must be n1, n2).
  • Do NOT omit lane prefix on cross-lane edges.
  • Do NOT output Mermaid, PlantUML, or any other syntax.
  • Do NOT add comments except the single # Display Label per lane.
  • Do NOT place loop outside a lane's braces.
  • Do NOT use a taskbox shape unless the user explicitly requests it.

Minimal templates

Single lane:

process { # Process
n1: circle label:"Start"
n2: rectangle label:"Step"
n3: circle label:"End"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left)
}

Two lanes with cross-lane edge:

user { # User
n1: circle label:"Start"
n2: rectangle label:"Submit"
n5: rectangle label:"Receive result"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> app.n3.handle(top) [label="Send"]
}

app { # App
n3: rectangle label:"Process"
n4: rectangle label:"Respond"
n3.handle(right) -> n4.handle(left)
n4.handle(top) -> user.n5.handle(bottom) [label="Result"]
}

Decision branch:

flow { # Flow
n1: rectangle label:"Check"
n2: diamond label:"OK?"
n3: rectangle label:"Fix"
n4: rectangle label:"Proceed"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> n3.handle(top) [label="No"]
n2.handle(right) -> n4.handle(left) [label="Yes"]
}

For the full DSL specification and advanced multi-lane examples: See references/syntax.md

Workflow: how to generate a diagram

  1. Identify the actors/systems (→ lanes) and steps (→ nodes) from the user's description.
  2. Write FlowZap Code following all rules above.
  3. Call flowzap_validate to verify syntax.
  4. If valid, call flowzap_create_playground to get a shareable URL.
  5. Return the FlowZap Code and the playground URL to the user.
  6. Always output only raw FlowZap Code when showing the diagram — no Markdown fences wrapping .fz content, no extra commentary mixed in.

Full MCP documentation: flowzap.xyz/docs/mcp

Security and data transparency

The trust boundary is intentionally narrow:

  • The skill bundle is static Markdown and reference text.
  • The MCP server runs locally and only calls public FlowZap APIs.
  • Outbound traffic is restricted to https://flowzap.xyz.
  • Validation is stateless; playground sessions are time-limited.

The flowzap-mcp server runs locally on the user's machine (stdio transport) and enforces the following safeguards:

ControlDetail
TLS onlyAll outbound requests require https:// and are restricted to flowzap.xyz (SSRF protection)
No authenticationUses only public FlowZap APIs; no API keys, tokens, or user credentials are stored or transmitted
No user-data accessCannot read diagrams, accounts, or any data beyond what the agent explicitly passes in
Input validationCode capped at 50 KB, total input at 100 KB; null bytes and control characters stripped
Rate limitingClient-side 30 requests/minute sliding window
Request timeout30-second hard timeout with AbortController
Response sanitizationOnly expected fields are returned; playground URLs validated against allowlist
Audit loggingAll tool calls and API requests logged to stderr (not exposed to the MCP client)

Data flow scope

The MCP server processes raw inputs locally and sends only generated or agent-provided FlowZap Code to FlowZap public endpoints:

  1. POST https://flowzap.xyz/api/validate — returns syntax validation result
  2. POST https://flowzap.xyz/api/playground/create — returns an ephemeral playground URL (60-minute TTL, non-guessable token)

If the agent uses flowzap_artifact_to_diagram, the raw HTTP logs, OpenAPI spec, or code snippet are parsed locally inside the MCP package first. Only the resulting FlowZap Code is sent when a playground URL is created.

No local file paths, environment variables, user identity, repository contents, or credentials are transmitted by the MCP package.

Playground URL access controls

Playground URLs are ephemeral, time-limited (60-minute TTL), and use non-guessable cryptographic tokens. They are read-only views of the diagram code submitted at creation time. No account or login is required to view them; no data persists beyond the TTL.

Data lifecycle

EndpointData storedRetention
POST /api/validateNone — stateless; code is parsed in memory and discarded after the response0 (not persisted)
POST /api/playground/createFlowZap Code only (in PostgreSQL)60 minutes (database row + playground URL both expire)

The playground session is stored server-side with a cryptographic token (UUID v4). After the 60-minute TTL, the session is deleted — either on the next access attempt or during a periodic sweep. No user identity, file paths, environment variables, or host metadata are attached to the session.

What the MCP server does NOT do

  • No filesystem access — cannot read or write files on the host machine
  • No environment variable access — does not read or transmit process.env or shell variables
  • No code execution — does not evaluate, compile, or run any user code; it only transmits FlowZap DSL text
  • No network scanning — outbound connections are restricted to flowzap.xyz over TLS (SSRF-protected allowlist)
  • No long-term data persistence — playground sessions expire after 60 minutes; the validate endpoint stores nothing
  • No telemetry or tracking — no analytics, device fingerprinting, or usage data is collected by the MCP server; server-side API logs record only IP, user-agent, and code length (not code content)

Further resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.36%
按下载量换算804

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills