<!-- GENERATED by docs/scripts/gen-cli-reference — DO NOT EDIT.
Source of truth: the cobra command definitions in cmd/axiom/cmd/.
Regenerate from the repo root with: go run ./docs/scripts/gen-cli-reference -->
axiom client
Create and manage Client Builder clients (typed SDKs)
Create and manage Client Builder clients: tenant-scoped bundles of marketplace nodes and flows that compile into a typed SDK.
axiom client create <name> # create a new, empty client
axiom client list # list your tenant's clients
axiom client get <client> # show one client's members and versions
axiom client add <client-id> --package ... --node ... --alias ...
axiom client add <client-id> --flow <artifact-id> --alias ...
axiom client members <client-id> # list members
axiom client remove-member <client-id> <id> # remove a member
axiom client build <client-id> --lang python,go # build an SDK
axiom client status <client-id> --version N --watch # poll build status
axiom client sync # reconcile a client to match axiom-client.yamlSee docs/guides/build-a-client-sdk.md for the full Client Builder workflow. Requires a prior "axiom login".
Usage
axiom client [flags]
axiom client [command]Flags
| Flag | Shorthand | Type | Default | Description |
|---|---|---|---|---|
--help | -h | bool | help for client |
Subcommands
| Command | Description |
|---|---|
| axiom client add | Add a marketplace node or a saved flow as a client member |
| axiom client build | Build an SDK for a client in one or more languages |
| axiom client create | Create a new, empty Client Builder client |
| axiom client download | Download a succeeded build's SDK zip |
| axiom client get | Show one Client Builder client |
| axiom client list | List your tenant's Client Builder clients |
| axiom client members | List a client's members |
| axiom client remove-member | Remove a member from a client's draft |
| axiom client status | Show a client version's per-language build status |
| axiom client sync | Reconcile a client to match a declarative axiom-client.yaml manifest |
See also
- axiom — Axiom CLI — build and push node packages
- axiom client add — Add a marketplace node or a saved flow as a client member
- axiom client build — Build an SDK for a client in one or more languages
- axiom client create — Create a new, empty Client Builder client
- axiom client download — Download a succeeded build's SDK zip
- axiom client get — Show one Client Builder client
- axiom client list — List your tenant's Client Builder clients
- axiom client members — List a client's members
- axiom client remove-member — Remove a member from a client's draft
- axiom client status — Show a client version's per-language build status
- axiom client sync — Reconcile a client to match a declarative axiom-client.yaml manifest
Related