원클릭으로
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.