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 IDappgrammar_status— current status of the appgrammar itselftotal_steps— total number of steps in the planexecution— active execution details (if any):execution_id,status,current_step,started_at,completed_at
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
appgrammar_id | string (UUID) | Yes | ID of the appgrammar to check. |
Example
{
"method": "tools/call",
"params": {
"name": "appgrammar_status",
"arguments": {
"appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}