@pumped-fn/sdk-claude
v2.0.0
Published
Claude CLI model provider for @pumped-fn/sdk
Readme
@pumped-fn/sdk-claude
Claude CLI model provider for @pumped-fn/sdk.
import { createScope } from "@pumped-fn/lite"
import { agent } from "@pumped-fn/sdk"
import { claude } from "@pumped-fn/sdk-claude"
const triage = agent({ name: "triage" })
const scope = createScope({ tags: [claude()] })
const ctx = scope.createContext()
await ctx.exec({ flow: triage.turn, input: { prompt: "Triage this ticket." } })claude() returns a lazy model tag. The Claude harness is created only when the model is first used, and the agent can be run with codex() or model(fake) instead without changing the graph.
