Example prompts
- “Give me a state-of-the-team report on the processes we own.”
- “What’s changed in our P2P team’s processes this quarter?”
- “Onboard a new joiner to how this team runs.”
End-to-end recipe
Confirm the workspace
Call
list_accessible_workspaces and switch if needed.Pull the team's slice of the index
Call
get_process_hierarchy rooted at the team’s value-stream node.Find what's changed
Call
get_recent_process_changes — the workspace-wide feed of recently-edited process versions, filtered to this team’s tree. Use this as your shortlist.Drill into the recently-changed processes
For each process from the previous step:
get_process_detailsfor current state, dependencies, and version labelget_process_observationsfor a recent observation summary (defaultverbosity="summary")
Spot-check emerging deviations
Call
get_observation_citation on the top two or three observations for primary-source detail.Ramp a new joiner
The same chain works for onboarding a new person (or a fresh agent): walk the team’s part of the hierarchy, fetch the top processes, surface dependencies and recent changes. Ground the joiner in the team’s actual operational reality, not in generic role-based assumptions.Prove control coverage
For audit-readiness questions (“where is control X supported?”, “what’s our evidence for policy Y?”), pull the relevant processes, surface the policies attached to the current version, and cite the supporting observations and activity timelines. Theattributes field on get_process_details surfaces the workspace’s custom compliance attributes if the user asks about a specific control type.
