コンテンツにスキップ
これは最新の機能を備えた最新リリースですが、長期サポートは提供されません。サポートを継続するには、新しいリリースごとにアップグレードするか、四半期ごとの安定版リリースをご利用ください。

For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.

arctl get

Page as Markdown

レジストリリソースを一覧表示または取得します

レジストリリソースをタイプ別に一覧表示または取得します。

サポートされるタイプ: agents、mcps、skills、prompts、plugins、models、runtimes、secrets、deployments、accesspolicies、gateways、runtimeaccesspolicies。タイプ名では大文字と小文字は区別されず、単数形、複数形、登録済みエイリアスを使用できます。

使用方法

arctl get TYPE [NAME] [flags]

例:

arctl get all
arctl get agents
arctl get agents -l team=platform,tier=production
arctl get agents --show-labels         # list rows with a LABELS column
arctl get agents --tag stable          # list rows with a specific tag
arctl get agents --latest              # list rows with the literal "latest" tag
arctl get mcps
arctl get agent acme-summarizer
arctl get agent acme-summarizer -o yaml
arctl get agent acme-summarizer --tag stable
arctl get agent acme-summarizer --all-tags
arctl get deployment team-a/acme-summarizer
arctl get deployments --origin discovered  # list discovered (unmanaged) deployments
arctl get deployments --origin all         # list managed and discovered
arctl get skills -o json

コマンド固有のフラグ

--all-tags: Tagged kinds only: list every tag of NAME.
-l, --labels string: Tagged kinds only: filter list rows by comma-separated key=value labels.
--latest: Tagged kinds only: list rows with the literal 'latest' tag (equivalent to --tag latest).
--origin string: Deployments only: filter provenance by managed, discovered, or all (defaults to managed when unset).
-o, --output string: Output format: table, yaml, json (default "table").
--show-labels: Print an additional LABELS column with each resource's labels; ignored for -o yaml/json, which already include labels.
--tag string: Tagged kinds only. With NAME: fetch one tag (defaults to latest). Without NAME: filter the list to this tag.

グローバルフラグ

-h, --help: Display help information for the command.
--registry-token string: Registry bearer token (defaults to value of ARCTL_API_TOKEN env var).
--registry-url string: Registry URL (overrides ARCTL_API_BASE_URL env var; defaults to http://localhost:12121).