Commands
Commands
workspaces
List named workspaces from ~/.config/agentboard (or the platform config directory):
agentboard workspacesOutput contains one workspace name per line, sorted alphabetically.
run
Execute one Workspace Run: load config, read Sources, append item observations, render pending Actions, and execute Actions.
agentboard run work
agentboard run ./work.tomlDry run collects and renders pending Actions without writing Store files or executing Actions:
agentboard run ./work.toml --dry-runwatch
Repeatedly run one Workspace until Ctrl-C.
agentboard watch work
agentboard watch work --interval 30sIntervals are seconds with or without a trailing s.
watch holds the Workspace lock until it exits.
list
List latest stored items and derived Action state.
agentboard list workPlain output:
AB-001 ready pending Create the first worktreeJSON output:
agentboard list work --jsonshow
Show one latest stored item and its Action attempts.
agentboard show work AB-001
agentboard show work AB-001 --jsonIf the same item id exists in multiple Store item buckets, use the qualified form shown in the ambiguity error:
agentboard show work jira-team-a-atlassian-net-abc123:AB-001doctor
Validate a Workspace and local environment.
agentboard doctor workChecks include:
- Workspace config validation.
- Store directory writability.
- Required Source commands, for example
qmd. - Required Action commands, for example
gitforagentboard/create-worktree. - Source reachability by collecting items.
schema
Print the Workspace JSON Schema.
agentboard schema > agentboard.schema.jsonUse this for editor validation and config discovery.