anthropic.getEnvironment gets one Claude Managed Agents environment.
Example
automations/anthropic-get-environment.automation.ts
Inputs
RequiresenvironmentId. Inputs use public camelCase names and accept signals.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gets one Claude Managed Agents environment.
anthropic.getEnvironment gets one Claude Managed Agents environment.
import { automation, onInvocation, withPrerequisites } from "automate.ax"
import { anthropic } from "automate.ax/anthropic"
export default automation("Get environment", () => {
withPrerequisites(onInvocation(), () => {
anthropic.getEnvironment({ environmentId: "environment-id" })
})
})
environmentId. Inputs use public camelCase names and accept signals.