Adds CLI support for the new metadata list endpoints:
Command
Endpoint
Notes
gn metric tags
/v1/metadata/tags
all tags used across metric metadata
gn asset tags
/v1/metadata/assets/tags
semantic tags, optional --filter
gn asset categories
/v1/metadata/assets/categories
optional --filter
gn asset blockchains
/v1/metadata/assets/blockchains
optional --filter
--filter accepts the same CEL expressions as gn asset list (bare RHS auto-quoted via the existing normalizeFilter), and --dry-run/-o json|csv|table work as on the other commands.
Implementation notes
New api.ListNames client method for the shared {"data":[{"name":...}]} shape.
Shared runNamesListCommand helper drives all four commands.
CSV/table output now uses a caller-supplied column label via output.Options.Header — tag, category, blockchain — defaulting to the existing metric label, so gn metric list output is unchanged (PrintCSV/PrintTable signatures remain backward compatible).
Tests use the existing isolated runCLI helper (HOME=t.TempDir(), pinned Go caches) so they never read the developer's ~/.gn or fire OAuth refresh calls. One test file per command file.
Testing
Dry-run URL assertions, JSON list output, CEL filter pass-through, CSV/table header labels.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds CLI support for the new metadata list endpoints:
--filter accepts the same CEL expressions as gn asset list (bare RHS auto-quoted via the existing normalizeFilter), and --dry-run/-o json|csv|table work as on the other commands.
Implementation notes
Testing