Use tapd setting commands to query TAPD workspace settings.
All setting commands use the configured TAPD credentials from tapd login or
the TAPD_ACCESS_TOKEN / TAPD_CLIENT_ID / TAPD_CLIENT_SECRET environment
variables.
Setting commands require a workspace:
tapd setting workspace --workspace-id 123456The short form is also supported:
tapd setting workspace -w 123456Setting commands default to table output:
tapd setting workspace -w 123456Use JSON when piping to another program or when you need the full SDK response shape:
tapd setting workspace -w 123456 --format jsonShow workspace settings:
tapd setting workspace -w 123456Query one setting by name:
tapd setting workspace -w 123456 --type is_enabled_story_category
tapd setting workspace -w 123456 --type workspace_metrologyKnown setting names exposed by the SDK are:
is_enabled_story_categoryworkspace_metrology
The setting command implementation currently lives in:
internal/cmd/setting.go
When adding or renaming setting 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.