
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@cleocode/cant
Advanced tools
CANT DSL — cant-core (SSoT) parser, validator, and pipeline executor via napi-rs; agent identity, message parsing, and migration utilities
CANT protocol parser, validator, and runtime for the CLEO ecosystem. Wraps the
Rust cant-core crate via napi-rs
so TypeScript consumers get the full Rust validator (42 static-analysis rules)
and pipeline executor without spawning a separate process.
CANT is a constrained agent specification language: agents, protocol constraints, typed tokens, deterministic pipelines, and orchestration workflows (sessions, parallel arms, conditionals, approval gates, repeat loops, try/catch). The format is whitespace-significant Markdown with typed frontmatter.
pnpm add @cleocode/cant
The package ships pre-built napi binaries via optionalDependencies for
x86_64-unknown-linux-gnu. On other platforms @cleocode/cant falls back to
typed errors at runtime — the TypeScript surface still loads but
parser/validator/executor calls require a native binding present.
cant-core is the single source of truth (SSoT) for all CANT parsing.
There is no JS-regex fallback parser in the routine code path. If the native
addon is absent, parseCANTMessage throws a typed error unless the
CLEO_CANT_ALLOW_JS_FALLBACK=1 env-var is explicitly set (degraded mode,
not for production use).
import {
parseDocument,
validateDocument,
executePipeline,
listSections,
migrateMarkdown,
serializeCantDocument,
initCantParser,
parseCANTMessage,
} from '@cleocode/cant';
parseDocument(filePath: string): Promise<CantDocument>Parses a .cant file into a structured AST. The AST mirrors the Rust
canonical types from crates/cant-core/src/dsl/ast.rs.
validateDocument(filePath: string): Promise<CantValidationResult>Runs the 42-rule static-analysis validator. Returns a structured result with per-diagnostic line/column coordinates and severity levels:
interface CantValidationResult {
valid: boolean;
errorCount: number;
warningCount: number;
diagnostics: NativeDiagnostic[];
}
Used by caamp pi cant validate and caamp pi cant install to reject
invalid .cant files before they hit the runtime.
executePipeline(filePath: string, pipelineName: string): Promise<JsPipelineResult>Runs a deterministic pipeline by name from a .cant file. Pipelines are
the executable subset of CANT — declarative steps with explicit inputs,
outputs, and exit codes. Workflow constructs (sessions, parallel arms,
conditionals, etc.) are interpreted by the cant-bridge.ts
Pi extension, not by this package.
migrateMarkdown(input: string): MigrateResultConverts legacy markdown agent definitions to canonical .cant format.
Used by cleo cant migrate to bring pre-CANT skill libraries into the
new format without losing semantics.
parseCANTMessage(text: string): ParsedCANTMessageParses an inline CANT message embedded in agent transcripts (used by the brain memory bridge for cross-provider transcript hooks).
┌─────────────────────────────────────┐
│ TypeScript consumers │
│ (caamp, cleo, cant-bridge.ts) │
└────────────────┬────────────────────┘
│
▼
┌─────────────────────────────────────┐
│ @cleocode/cant (this package) │
│ src/document.ts — TS API surface │
│ src/parse.ts — message parser │
│ src/migrate/ — markdown→cant │
└────────────────┬────────────────────┘
│ napi-rs binding
▼
┌─────────────────────────────────────┐
│ crates/cant-napi │
│ parse_document, validate_document │
│ execute_pipeline │
└────────────────┬────────────────────┘
│
▼
┌─────────────────────────────────────┐
│ crates/cant-core (Rust) │
│ AST types, parser, validator, │
│ pipeline executor (deterministic) │
└─────────────────────────────────────┘
The Rust core is the canonical source of truth for AST shape and validation rules. The TypeScript surface is a thin async wrapper.
There are two execution paths in the CleoOS runtime:
| Path | Engine | Use case |
|---|---|---|
| Path A — Pi-interactive | cant-bridge.ts Pi extension | User opens a Pi session and runs /cant:load <file> then /cant:run <file> <workflow> for interactive workflow execution. The Pi extension reuses this package for parsing and validation, then interprets workflow constructs (Session, Parallel, Conditional, ApprovalGate, Repeat, ForLoop, LoopUntil, TryCatch) in TypeScript using Pi's native subagent spawning. |
| Path B — Deterministic pipelines | executePipeline() (this package) | Pure-data pipelines with explicit inputs and outputs. Runs synchronously inside the napi binding without LLM involvement. Used for build steps, migration scripts, validation gates. |
There is no third execution engine — the legacy @cleocode/core/cant
WorkflowExecutor was deleted in v2026.4.7 per ADR-035 §D5
"single engine, cant-bridge.ts as canonical".
pnpm --filter @cleocode/cant test
Tests use real .cant fixtures from crates/cant-core/fixtures/ and
seed agents from packages/agents/seed-agents/.
pnpm --filter @cleocode/cant build:napi
Requires a Rust toolchain. Produces napi/cant.linux-x64-gnu.node.
Other platform triples are added via the workspace release pipeline,
not locally.
| Crate | Status | Purpose |
|---|---|---|
crates/cant-core | Active — SSoT | Parser, validator, 42 static-analysis rules, pipeline executor |
crates/cant-napi | Active | napi-rs cdylib binding wrapping cant-core + cant-runtime |
crates/cant-runtime | Active | Deterministic pipeline execution engine (Path B) |
crates/cant-router | DELETED (T11807) | Model-tier classifier — removed in the state-machine collapse (T11764); model selection owned by the E9 chokepoint |
crates/cant-lsp | Shelved from default build (E8 T11434) | Language Server Protocol for .cant files — kept in workspace, build with cargo build -p cant-lsp |
crates/cant-core — Rust SSoT (parser, validator, pipeline executor)crates/cant-napi — napi-rs bindings (cdylib)packages/cleo/templates/cleoos-hub/pi-extensions/cant-bridge.ts — Pi-interactive runtime (Path A).cleo/adrs/ADR-035-pi-v2-v3-harness.md — architecture decisions for the CANT execution modelMIT
FAQs
CANT DSL — cant-core (SSoT) parser, validator, and pipeline executor via napi-rs; agent identity, message parsing, and migration utilities
We found that @cleocode/cant demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.