Search the documentation
23 pages for --name.
Titles and paths first, then pages whose text carries it. Each row opens that page as this site last read it.
deploy-helm
Claude Developer Platform · in the page
agents-and-tools/mcp-tunnels/deploy-helm
…ic-registry/charts/mcp-tunnel \ --version 2.0.2 \ --namespace mcp-tunnel --create-namespace \ -f values.yaml ``` The setup component runs as a Helm pre-i…
using
Claude Developer Platform · in the page
cli-sdks-libraries/cli/using
…n to a shell variable: ```bash AGENT_ID=$(ant beta:agents create \ --name "My Agent" \ --model '{id: claude-opus-5}' \ --transform id --raw-output) printf '%s\n' "$AGENT_ID" ``` ```text Outpu…
admin-api
Claude Developer Platform · in the page
manage-claude/admin-api
…-key-id apikey_01Rj2N8SVvo6BePZj99NhmiT \ --status inactive \ --name "New Key Name" ``` ```python Python client = anthropic.Anthropic() api_key = client.beta.organization.api_keys.up…
cmek-azure-key-vault
Claude Developer Platform · in the page
manage-claude/cmek-azure-key-vault
…az keyvault key create \ --vault-name <your-vault-name> \ --name <your-key-name> \ --kty RSA --size 3072 \ --ops wrapKey unwrapKey ``` For HSM-backed keys, use `--kty…
wif-admin-api
Claude Developer Platform · in the page
manage-claude/wif-admin-api
…```bash CLI ant beta:organization:service-accounts create \ --name inference-worker \ --organization-role developer ``` ```python Python client = anthropic.Anthropic() service_…
aws
Claude Developer Platform · in the page
manage-claude/wif-providers/aws
…th the AWS CLI: ```bash CLI aws eks describe-cluster \ --name <cluster-name> \ --query "cluster.identity.oidc.issuer" \ --output text ``` The output looks like `htt…
Create the app registration that represents the Claude API audience.
Claude Developer Platform · in the page
manage-claude/wif-providers/azure
…h az aks update \ --resource-group <RESOURCE_GROUP> \ --name <CLUSTER_NAME> \ --enable-oidc-issuer \ --enable-workload-identity AKS_OIDC_ISSUER=$(az aks show \ -…
workspaces
Claude Developer Platform · in the page
manage-claude/workspaces
…ion"}' ``` ```bash CLI ant beta:organization:workspaces create --name Production ``` ```python Python client = anthropic.Anthropic() workspace = client.beta.organization.workspaces.cr…
memory
Claude Developer Platform · in the page
managed-agents/memory
…``` ```bash CLI store_id=$(ant beta:memory-stores create \ --name "User Preferences" \ --description "Per-user preferences and project context." \ --transform id --raw-output) ```…
Manage multiple agents with agent view
Claude Code CLI · in the page
agent-view
…the agent](/docs/en/errors#session-agent-no-longer-available). Pass `--name` to set the session's display name in agent view instead of the auto-generated one: ```bash theme={null} claude --bg --nam…
Claude Code changelog
Claude Code CLI · in the page
changelog
…xed `claude remote-control` rejecting its own flags (e.g. `--spawn`, `--name`) when a global flag or a wrapper-injected option precedes the subcommand * Fixed startup warnings (e.g. "N MCP servers n…
Deploy Claude apps gateway on AWS
Claude Code CLI · in the page
claude-apps-gateway-on-aws
…them: ```bash theme={null} aws secretsmanager create-secret --name gateway-jwt-secret \ --secret-string "$(openssl rand -base64 32)" aws secretsmanager create-secret --name gateway…
CLI reference
Claude Code CLI · in the page
cli-reference
…| `claude remote-control --name "My Project"` | | `claude respawn <id>` | Restart a [background session](/docs/en/agent-view#mana…
Message your other Claude Code sessions
Claude Code CLI · in the page
cross-session-messaging
…session's own name unless you typed that name at this terminal, with `--name` or with `/rename` and the name, since you launched or last resumed the session. When the output lists anything, it ends w…
Error reference
Claude Code CLI · in the page
errors
…text theme={null} Error: Shell command failed for pattern "!`git diff --name-only origin/HEAD...`": [stderr] fatal: ambiguous argument 'origin/HEAD...': unknown revision or path not in the working tre…
Hooks reference
Claude Code CLI · in the page
hooks
…` | The current session title if one is already set, for example via `--name` or `/rename`. A hook that emits `sessionTitle` can check `session_title` first to avoid overwriting a title the user set e…
Overview
Claude Code CLI · in the page
overview
…PR for review" # Bulk operations across files git diff main --name-only | claude -p "review these changed files for security issues" ``` See the [CLI reference](/docs/en/cli-referen…
Continue local sessions from any device with Remote Control
Claude Code CLI · in the page
remote-control
…------------------------------------------------------------ | | `--name "My Project"` | Set a custom session title visible in the session list at claude.ai/code.…
Manage sessions
Claude Code CLI · in the page
sessions
…AI-generated titles or default display names. * It doesn't check the `--name` of a [background](/docs/en/agent-view#from-your-shell) or `-p` session at startup. * It can't rename a session on an earli…
Claude Code settings reference
Claude Code CLI · in the page
settings-reference
…| Stop [`/rename`](/docs/en/sessions#name-your-sessions) and `--name` from changing the terminal tab title…
Extend Claude with skills
Claude Code CLI · in the page
skills
…- PR comments: !`gh pr view --comments` - Changed files: !`gh pr diff --name-only` ## Your task Summarize this pull request... ``` Substitution runs once over the original file. Command output is in…
Customize your status line
Claude Code CLI · in the page
statusline
…| Session name. Uses the custom name set with the `--name` flag or `/rename` when one exists, otherwise the AI-generated session title. The [default display name](/docs/en/sessions#…
How to Authenticate When Publishing to the Official MCP Registry
Model Context Protocol · in the page
registry/authentication
…p "${MY_RESOURCE_GROUP}" # Create a key vault az keyvault create --name "${MY_KEY_VAULT}" --location westus --resource-group "${MY_RESOURCE_GROUP}" # Create an ECDSA P-384 signing key az key…