@agentic-kernel/core
v0.6.0
Published
The microkernel — a minimal, governed `plan → authorize → execute → observe` loop with pluggable seams (planner, policy, tools, memory, state, observer). Ships in-memory reference implementations plus the immutable execution-log and replay model. Bounded
Readme
@agentic-kernel/core
The microkernel — a minimal, governed plan → authorize → execute → observe loop with pluggable seams (planner, policy, tools, memory, state, observer). Ships in-memory reference implementations plus the immutable execution-log and replay model. Bounded autonomy (iteration ceiling, stall→reflect) is built in.
Part of Agentic Kernel — a microkernel agent runtime, feature-paired across TypeScript and Python.
Install
npm install @agentic-kernel/coreUsage
import { createAgentEngine, BasicPolicy, ToolRegistry } from "@agentic-kernel/core";
const engine = createAgentEngine({
planner,
policy: new BasicPolicy({ maxSteps: 8, allowedTools: [] })
});
const result = await engine.run({ agent, task, host });See the documentation site for guides and the full API.
License
Apache-2.0
