All skills
Skillintermediate
environment api
```graphql type LLM { model: String! withPrompt(prompt: String!): LLM! history: [LLMMessage!]! lastReply(): String!
Claude Code Knowledge Pack7/10/2026
Overview
type LLM {
model: String!
withPrompt(prompt: String!): LLM!
history: [LLMMessage!]!
lastReply(): String!
withEnvironment(Environment!): LLM!
environment: Environment
}
type Environment {
with[Type]Binding(key: String!, value: [Type], overwrite: Bool, overwriteType: Bool): Environment!
bindings: [Binding!]
binding(key: String!): Binding
encode: File!
}
type Binding {
key: String!
as[Type]: [Type]!
}