Open App

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

  1. Log in (once per machine):
wyrdos auth login
  1. Verify that you are authenticated and see which workspace and scopes you have:
wyrdos auth check --output table
  1. For agents or CI, prefer JSON:
wyrdos auth check --output json

Get operational context

See a snapshot of the current organisation, key containers, zones, and actions:

wyrdos context --output table

Agents should use:

wyrdos context --output json

to 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 table

Or in JSON:

wyrdos engines summary --output json

You can drill into specific aspects with:

  • wyrdos engines goals
  • wyrdos engines values
  • wyrdos engines principles
  • wyrdos engines pillars
  • wyrdos engines risks
  • wyrdos engines context

Given a container (for example, a team, project, or workspace slice), find related pages:

wyrdos pages related-to-container <container-id> --output table

If you do not know the container ID, resolve it first:

wyrdos resolve container "Team Operations" --output json

Then pass the resolved ID to pages related-to-container.

You can also search across all pages:

wyrdos pages search --query "on-call rota" --output table

Inspect a zone or action before updating it

  1. List actions in your inbox:
wyrdos actions inbox --output table
  1. Inspect one action in more detail:
wyrdos actions get <action-id> --output json
  1. Review related context — for example, the zone:
wyrdos zones get <zone-id> --output json
  1. Make an update (for example, using a JSON file):
wyrdos actions update <action-id> --file ./action-update.json --output json

Plan today

Get a concise view of what matters today across containers, zones, and actions:

wyrdos plan today --output table

Agents should call:

wyrdos plan today --output json

and then select the most relevant items based on their instructions.