Skip to main content

appgrammar_status

Axiom: II — Context | Category: Execution

Get the status of an appgrammar execution including steps completed and total steps.

Returns the appgrammar's overall status (generating, ready, failed) alongside the active execution state if one exists. Useful for monitoring progress or resuming after a disconnection.

Response fields:

  • appgrammar_id — the queried ID
  • appgrammar_status — current status of the appgrammar itself
  • total_steps — total number of steps in the plan
  • execution — active execution details (if any): execution_id, status, current_step, started_at, completed_at

Parameters

ParameterTypeRequiredDescription
appgrammar_idstring (UUID)YesID of the appgrammar to check.

Example

{
"method": "tools/call",
"params": {
"name": "appgrammar_status",
"arguments": {
"appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}