一键导入
fleetq-manage-workflow
Build, validate, cost, and execute FleetQ visual DAG workflows — including generating one from a natural-language goal.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build, validate, cost, and execute FleetQ visual DAG workflows — including generating one from a natural-language goal.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Connect an agent to FleetQ over MCP or the REST API, including obtaining credentials via dynamic client registration.
Create, run, monitor, and recover a FleetQ experiment through its 20-state pipeline via MCP tools or the REST API.
| name | fleetq-manage-workflow |
| description | Build, validate, cost, and execute FleetQ visual DAG workflows — including generating one from a natural-language goal. |
A workflow is a reusable directed graph of work. Nodes are typed:
start, end, agent, conditional, human_task, switch,
dynamic_fork, do_while. Workflows are templates; running one
materialises an experiment.
Requires a working connection — see the fleetq-connect skill first.
workflow_generate decomposes a natural-language goal into a graph. Use it
as a starting point, then refine — it produces a draft, not a final answer.
| Tool | Purpose |
|---|---|
workflow_create | Create the workflow shell. |
workflow_node_add / workflow_node_update / workflow_node_delete | Manage nodes. |
workflow_edge_add / workflow_edge_delete | Manage edges. |
workflow_save_graph | Persist a whole graph in one call. |
REST equivalent:
POST {{APP_URL}}/api/v1/workflows
PUT {{APP_URL}}/api/v1/workflows/{id}/graph
workflow_validate → structural check (unreachable nodes, missing start/end, cycles)
workflow_estimate_cost → projected credit cost per run
workflow_simulate → dry run without spending credits or sending outbound
workflow_activate → make it runnable
workflow_activate on an invalid graph fails. Run workflow_validate
first and fix what it reports — the errors name the offending node.
workflow_execution_chain — trace what ran, in order.workflow_snapshot_list — historical versions of the graph.workflow_compensation_runs — compensating actions triggered on failure.workflow_export_yaml / workflow_import_yaml move a workflow between
teams or environments as plain YAML. workflow_duplicate copies within a
team.
human_task nodes block. They create an approval request and wait.
An unattended agent run will stall there until a human completes it, or
until the SLA check escalates or expires the task.switch nodes route on case_value on the outgoing edges. An edge
with no matching case is never taken; a switch with no matching edge
dead-ends the branch.