Use tapd workflow commands to query TAPD workflow metadata.
All workflow commands use the configured TAPD credentials from tapd login or
the TAPD_ACCESS_TOKEN / TAPD_CLIENT_ID / TAPD_CLIENT_SECRET environment
variables.
Workflow commands require a workspace:
tapd workflow last-steps --workspace-id 123456The short form is also supported:
tapd workflow last-steps -w 123456Workflow commands default to table output:
tapd workflow last-steps -w 123456Use JSON when you need the full status alias/name map:
tapd workflow last-steps -w 123456 --format jsonList workflow final statuses:
tapd workflow last-steps -w 123456The TAPD API currently supports the story workflow system:
tapd workflow last-steps -w 123456 --system storyGroup by workflow ID or workitem type ID:
tapd workflow last-steps -w 123456 --group-key workflow_id
tapd workflow last-steps -w 123456 --group-key workitem_type_idThe workflow command implementation currently lives in:
internal/cmd/workflow.go
When adding or renaming workflow commands:
- Reuse the typed SDK methods from
github.com/go-tapd/tapd. - Keep table output compact and use
--format jsonfor full response data. - Update
features.md. - Update this document.
- Regenerate shell completion files if they have been installed locally.