Example prompts
- “Find the highest-leverage automation opportunities in our P2P value stream.”
- “Where in our close cycle should we focus next?”
- “Scan our org for duplicate invoice processing across geographies.”
End-to-end recipe
Confirm the workspace
Call
list_accessible_workspaces and switch if needed.Build the work queue
Call
get_process_hierarchy — the whole tree, or filtered to the value stream of interest. The leaves become your work queue.Fan out in parallel across leaves
For each leaf:
get_process_details— current version, steps, dependencies. Note step count, manual vs system steps, exception count.get_process_observations— exception volume per process (default summary verbosity).
Check process attributes
Inspect the
attributes field already returned by get_process_details — “automation status”, “system of record”, “control level”, or similar attributes that help rank candidates.Confirm each top candidate
For each top candidate:
get_process_observationswithverbosity="full"— confirm the deviation or manual pattern with concrete evidence.- Read the
dependenciesfield already returned byget_process_detailsfor a first cut at blast radius.
What to surface in the brief
- A ranked list of candidate processes
- For each: observation count, dependency depth, pattern signal
- Citable process IDs and observation timestamps
- Gaps where the workspace doesn’t have enough evidence yet

