Agentic-Dev
The governed-agent kernel plus sandboxed execution, typed agent/skill/rule schema, a seven-act lifecycle FSM, a default-deny tool-exec gate, and local hybrid memory.
The Agentic-Dev bundle is the layer your own AI coding agent runs inside, not a layer that replaces your judgment with autonomy. Every agent, skill, and rule is a typed artifact; every act transition is a legal move on a state machine; every shell command an agent runs passes a default-deny gate. The kernel governs the loop, it does not hand the agent the keys.
What's in the bundle
- agent-kernel: the engine-neutral base: a Zod schema for agent/skill/rule artifacts, a seven-act lifecycle FSM (spec through ship), allow/deny/mutate governance guards, a hooks dispatcher, and an opt-in tamper-evident audit chain.
- agent-runner: spawns a headless coding agent into an
isolated worktree with a scrubbed, from-scratch environment: zero secret leak by construction,
plus an auditable
.jsonltranscript and a structured run report. - tool-exec: the governed tool-call primitive: a default-deny
command allowlist, Zod-strict argv validation, and
execFilearg-arrays only, an agent never reaches a shell. - local-store: the hybrid vector + full-text local memory an agent recalls over, shared with the Local-first bundle.
Install
export CAISSON_LICENSE_TOKEN=<the token from /dashboard/license>
bunx @caisson-sh/cli@latest --name caisson-app --edition agentic-dev
cd caisson-app
bun install--edition agentic-dev auto-selects the Agentic-Dev bundle's current modules, the command above scaffolds the whole bundle. Add or swap individual picks with --module <id@version>; see Getting started for the full flag reference.
How it composes
agent-kernel's FSM is the spine every governed act moves through, verify is the only act with
two outgoing edges, so a failed goal-backward verify reopens plan rather than advancing toward
ship. agent-runner spawns the actual worker inside that governed loop, in an isolated worktree
with an environment built from scratch rather than inherited. tool-exec is the gate every shell
command from that worker passes through, a command outside the declared allowlist is unreachable,
not merely discouraged. local-store gives the agent hybrid vector-plus-keyword recall that stays
on the machine unless you wire an explicit egress.
Composing with the base
agent-kernel imports no vendor SDK and runs no LLM, it is composition mechanism only, and both
the base @caisson/cli/@caisson/mcp-server and this bundle's curated content consume it
down-only. The same kernel underpins the create-caisson generator and the
buyer-facing MCP server, so the rules that govern your own workflow are the rules that govern code
generation.
Entitlement
Agentic-Dev is a commercial bundle (LicenseRef-Caisson-Commercial). Buy the bundle, or any
member module à la carte, a purchase grants the module's entitlement id, checked offline against
the license.
Related
local-privacy
A default-deny egress boundary every payload crosses before it can leave the process, a strict zero-egress PrivacyPolicy plus the EgressGuard runtime wrapper, with an empty allowlist blocking every host.
agent-kernel
The engine-neutral agent kernel, agent/skill/rule schema, seven-act lifecycle FSM, allow/deny/mutate governance, hooks dispatcher, and an opt-in tamper-evident audit chain. No vendor SDK, no LLM call.