Examples and workflows
Practical CLI workflows for authentication, context, engines, pages, and action/zone operations.
This page shows end-to-end CLI workflows that combine multiple commands.
Each example includes both human-readable and JSON output patterns where it matters.
Authenticate and verify scope
- Log in (once per machine):
wyrdos auth login- Verify that you are authenticated and see which workspace and scopes you have:
wyrdos auth check --output table- For agents or CI, prefer JSON:
wyrdos auth check --output jsonGet operational context
See a snapshot of the current organisation, key containers, zones, and actions:
wyrdos context --output tableAgents should use:
wyrdos context --output jsonto get a structured representation of the same information.
Inspect engines summary
Understand the strategic context — engines, goals, values, principles, pillars, and risks:
wyrdos engines summary --output tableOr in JSON:
wyrdos engines summary --output jsonYou can drill into specific aspects with:
wyrdos engines goalswyrdos engines valueswyrdos engines principleswyrdos engines pillarswyrdos engines riskswyrdos engines context
Find pages related to a container
Given a container (for example, a team, project, or workspace slice), find related pages:
wyrdos pages related-to-container <container-id> --output tableIf you do not know the container ID, resolve it first:
wyrdos resolve container "Team Operations" --output jsonThen pass the resolved ID to pages related-to-container.
You can also search across all pages:
wyrdos pages search --query "on-call rota" --output tableInspect a zone or action before updating it
- List actions in your inbox:
wyrdos actions inbox --output table- Inspect one action in more detail:
wyrdos actions get <action-id> --output json- Review related context — for example, the zone:
wyrdos zones get <zone-id> --output json- Make an update (for example, using a JSON file):
wyrdos actions update <action-id> --file ./action-update.json --output jsonPlan today
Get a concise view of what matters today across containers, zones, and actions:
wyrdos plan today --output tableAgents should call:
wyrdos plan today --output jsonand then select the most relevant items based on their instructions.
All rights reserved.