@dezifi/dak
v0.1.0-beta.2
Published
DAK — Dezifi Agent Kit. Infrastructure-as-Code SDK for AI agents.
Maintainers
Readme
@dezifi/dak
DAK — Dezifi Agent Kit. Infrastructure-as-Code SDK for AI agents.
DAK is the open-source SDK that lets you define your AI agent infrastructure — agents, credentials, workflows, guardrails, evaluators, triggers — as code. DAK synthesizes your code into an AIformation manifest (JSON) that the Dezifi platform (Yojak) consumes to provision real agents.
Think "what AWS CDK does for CloudFormation, DAK does for Dezifi."
Status
Experimental. Wave 1 foundation only — App, Stack, Construct tree, synth pipeline, manifest schema. L2 resources (Agent, Credential, Workflow, etc.) ship in Wave 2.
Quick start
import { App, Stack } from '@dezifi/dak';
const app = new App({ name: 'MyApp' });
new Stack(app, 'Production', { workspace: 'acme-prod' });
app.synth();This writes dak.out/manifest.json and dak.out/tree.json. Deploy with the dak CLI (Wave 3).
License
MIT
