One change
quickstart
managed-agents/quickstart
Nearest release: v2.1.238, published under an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
managed-agents/quickstart Changed · +37 / -20 lines
from line 37
For Linux environments, download the release binary directly. ```bash - VERSION=1.22.1 + VERSION=1.26.1 OS=$(uname -s | tr '[:upper:]' '[:lower:]') case $(uname -m) in x86_64) ARCH=amd64 ;;
from line 88
<Tab title="Java"> ```groovy Gradle - implementation("com.anthropic:anthropic-java:2.53.0") + implementation("com.anthropic:anthropic-java:2.57.0") ``` </Tab>
from line 161
echo "Agent ID: $AGENT_ID, version: $AGENT_VERSION" ``` - ```bash CLI - AGENT_ID=$(ant beta:agents create \ - --name "Coding Assistant" \ - --model '{id: claude-opus-5}' \ - --system "You are a helpful coding assistant. Write clean, well-documented code." \ - --tool '{type: agent_toolset_20260401}' \ - --transform id --raw-output) + <MultiFileExample language="cli" label="CLI"> + ```bash CLI + AGENT_ID=$(ant beta:agents create --transform id --raw-output < coding-assistant.agent.yaml) - echo "Agent ID: $AGENT_ID" - ``` + echo "Agent ID: $AGENT_ID" + ``` + <File filename="coding-assistant.agent.yaml"> + ```yaml + name: Coding Assistant + model: + id: claude-opus-5 + system: You are a helpful coding assistant. Write clean, well-documented code. + tools: + - type: agent_toolset_20260401 + ``` + </File> + </MultiFileExample> + ```python Python from anthropic import Anthropic
from line 366
echo "Environment ID: $ENVIRONMENT_ID" ``` - ```bash CLI - ENVIRONMENT_ID=$(ant beta:environments create \ - --name "quickstart-env" \ - --config '{type: cloud, networking: {type: unrestricted}}' \ - --transform id --raw-output) + <MultiFileExample language="cli" label="CLI"> + ```bash CLI + ENVIRONMENT_ID=$(ant beta:environments create --transform id --raw-output < quickstart.environment.yaml) - echo "Environment ID: $ENVIRONMENT_ID" - ``` + echo "Environment ID: $ENVIRONMENT_ID" + ``` + + <File filename="quickstart.environment.yaml"> + ```yaml + name: quickstart-env + config: + type: cloud + networking: + type: unrestricted + ``` + </File> + </MultiFileExample> ```python Python environment = client.beta.environments.create(