@agentskit/os-runtime
v1.0.0-alpha.1
Published
AgentsKitOS runtime — handler factories with pluggable LLM, tool, memory adapters.
Maintainers
Readme
@agentskit/os-runtime
Handler factories for AgentsKitOS flow execution. Pluggable adapters: LlmAdapter, ToolExecutor, HumanReviewer, MemoryAdapter. No AgentsKit dependency in core — implementers plug in.
Status
Pre-1.0 alpha. M1.
Quick start
import { runFlow } from '@agentskit/os-flow'
import { buildLiveHandlers } from '@agentskit/os-runtime'
const handlers = buildLiveHandlers({
adapters: {
llm: myAnthropicAdapter,
tool: myToolExecutor,
human: mySlackReviewer,
},
lookupAgent: (id) => config.agents.find((a) => a.id === id),
})
await runFlow(flow, { handlers, ctx })License
MIT
