This repository contains the Agentic package workspace.
| Package | Path | Purpose |
|---|---|---|
@tnezdev/agentic |
packages/agentic |
Core primitives and CLI |
@tnezdev/agentic-runtime-local |
packages/agentic-runtime-local |
Local runtime package |
Run checks from the repository root:
bun test
bun run typecheck
bun run buildThe dogfood workspace still lives at .agentic/. Start with .agentic/ONRAMP.md, then read packages/agentic/AGENTS.md for core package architecture.
Use dev for a one-shot local authoring loop over validate, inspect, serve, and eval:
agentic dev examples/case-review-bundle --jsonUse the explicit lifecycle commands when you want phase-by-phase output:
agentic validate examples/case-review-bundle --json
agentic inspect examples/case-review-bundle --json
agentic serve examples/case-review-bundle --clean --json
agentic eval examples/case-review-bundle --jsonTo scaffold a blank authored bundle in a new workspace:
agentic init
agentic validate . --json
agentic inspect . --jsonTo scaffold the runnable case-review starter:
agentic init --example case-review-bundle
agentic dev . --jsonagentic serve remains the stable local run path inside that loop. The older direct primitive noun commands (memory, workflow, task, etc.) are legacy in 0.6.0: still available for dogfood and harness internals, but not the supported product path or a long-term pre-1.0 compatibility promise.
docs/bundle-authoring-loop.mddescribes the starter-to-serve authored bundle workflow.docs/dev-command-shape.mddocuments the narrowagentic devloop.docs/framework-boundaries.mdexplains the package-vs-host boundary.docs/handler-packaging-boundary.mdexplains why executable handlers remain runtime-owned code.docs/hosted-runtime-handoff.mdmaps Agentic bundle contracts to a hosted runtime without adding hosting to core.docs/runtime-adapter-boundary.mddefines the core ports, runtime adapter, and harness adapter split.docs/runtime-state-layout.mddescribes authored bundle files versus runtime-generated records.
.agentic/is the project dogfood workspace — a persona, skills, workflow, tasks, and memories used to build Agentic itself. Read.agentic/ONRAMP.mdfor the maintainer flow.examples/case-review-bundle/is the canonical authored bundle example for the local runtime. It exercises surfaces, schedules, hooks, actions, capabilities, approvals, artifacts, and evals throughagentic serve.examples/second-brain/is a user-mode example. It shows how an agent harness can use Agentic primitives to run second-brain workflows with persona activation, task pickup, workflow gates, and finalized artifacts. Memory is intentionally left for user space and custom adapters.
Both examples include their own AGENTS.md bootstrap files for harnesses.