Discover, compose, run, publish, and save Adobe Firefly workflows through the run-workflow MCP server.
93
96%
Does it follow best practices?
Impact
83%
1.25xAverage score across 3 eval scenarios
High
Do not use without reviewing
{
"context": "Tests the run-workflow skill's BARE ID rule: when the user's entire message is just an ID with no verb, the agent must inspect it, not rerun or re-execute it. This guards against a specific failure mode where pasting an ID (e.g. to check on a run) accidentally triggers a brand-new, possibly costly, workflow execution.",
"type": "weighted_checklist",
"checklist": [
{
"name": "No clarifying question needed",
"description": "The agent did not ask the user what they meant by the ID before acting — the bare-ID rule resolves the intent unambiguously without needing to ask.",
"max_score": 10
},
{
"name": "Calls inspect_run",
"description": "The agent called inspect_run with the pasted ID as its tool call for this turn.",
"max_score": 35
},
{
"name": "Presents inspection results",
"description": "The agent presented the inspection results (executions, outputs, or diagnostics) back to the user in its response.",
"max_score": 15
},
{
"name": "No run_workflow call",
"description": "The agent did NOT call run_workflow or run_workflow_submit at any point in this turn.",
"max_score": 30
},
{
"name": "No definition reuse",
"description": "The agent did NOT extract actions/connections from the inspect_run result and pass them into a new run.",
"max_score": 10
}
]
}