ARMARA Course 04

Course 04 / Module 04

Drive a running mission: pause before cancel

Resume and pause reversibly, inspect an empty timeline without invention, then cancel the exact mission deliberately.

Level
Intermediate
Time
14 minutes
Commands
5
Finish
A cancelled mission record

Video / coming soon

The written lesson is complete now.

Pair the mission and owner IDs

Every live control in this sitting required --agent-id. Keep both UUIDs together before acting.

Use two PowerShell windows for tail and controls.
01

Put reversible before irreversible

Pause is the reversible brake. Resume releases it. Cancel is one-way and belongs last.

02

Resume with both IDs

Run in your terminal
armaraos mission resume <MISSION_ID> --agent-id <AGENT_UUID> --json
03

Read the timeline

Run in your terminal
armaraos mission timeline <MISSION_ID> --agent-id <AGENT_UUID> --json
Real responses showing mission running, empty timeline, and paused
Fresh live output / reversible controls / 24 August 2026

An empty timeline means no handoff was recorded. The command still worked.

04

Watch interactively, then stop

Run in your terminal
armaraos mission tail <MISSION_ID> --agent-id <AGENT_UUID> --interval-secs 3
05

Pause again before deciding

Run in your terminal
armaraos mission pause <MISSION_ID> --agent-id <AGENT_UUID> --json
06

Cancel deliberately

Run in your terminal
armaraos mission cancel <MISSION_ID> --agent-id <AGENT_UUID> --json
Real cancelled mission response with zero handoffs, tokens, tool calls, and cost
Fresh live output / one-way final state
07

Verify the record remains

Run in your terminal
armaraos mission get <MISSION_ID> --agent-id <AGENT_UUID> --json

Cancelled is final, but its record remains inspectable. Zero work metrics are the honest result.

Check it / read final state

Explain the empty timeline.

Get the mission, confirm cancelled, and explain why no delegation claim follows from an empty timeline.

Safety note

Use pause while deciding. Cancel only after capturing the mission ID, owner ID, and needed evidence, because cancellation cannot be resumed.

Troubleshooting for this sitting
What you seeLikely causeWhat to do
Agent ID requiredOwner was omitted.Add the owner UUID.
Timeline is emptyNo handoff occurred.Preserve the observation.
Tail keeps pollingIt is interactive.Stop with Ctrl+C.
Resume fails after cancelCancel is one-way.Create a new mission only if needed.

Back to Module 4.3

Next / Module 4.5

Read what happened: traces

Lesson ready