Sign In

ark-runtime-kernel

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ark-runtime-kernel

AI architecture gate for TypeScript repos, agents, and CI

Source
npmnpm
Version
1.13.0
Version published
Weekly downloads
97
-64.47%
Maintainers
1
Weekly downloads
 
Created
Source

Ark — AI Architecture Gate for TypeScript

Your AI writes most of the code now. Ark makes sure it can't quietly break your architecture.
One machine-readable contract — enforced the moment code is written, again at merge, and (optionally) at runtime.
Agents don't just get blocked: Ark gives them tools to ask where code belongs and a contract they read before generating.
Adopting on a messy, pre-existing codebase? Ark tells you the truth — the share of code it actually governs, and which violations are real debt vs. a wrong contract — and guides the cleanup in order, instead of freezing everything green.
Ships a complete 11-layer architecture you adopt one layer at a time. Native for Claude Code, Cursor, and Codex — plus rule files for Windsurf, Cline, Copilot, Kiro, Roo Code, Continue, and Gemini CLI.

CI Security npm License: MIT Node TypeScript Zero deps

2-Minute Setup · Why Ark · 11 Layers · Brownfield Adoption · Agent Gates + Tools · CI Gate · Runtime Kernel · Docs

This is what happens when an agent tries to import a persistence adapter into your domain layer with Ark's write gate active:

An AI agent is blocked from importing a persistence adapter into the domain layer, then self-corrects by defining a port

The agent doesn't just get blocked — it gets the violation as feedback, reads the architecture contract, and fixes its own approach. No review round-trip.

2-Minute Setup

No code changes. No new runtime. Just a config and a CI line.

npm install -D ark-runtime-kernel typescript
npx ark init                  # asks before generating config, agent gates, and CI templates
npx ark-check                 # done: cross-layer imports now fail the check

ark init detects your existing layer directories, proposes a canonical layer for every ungoverned directory (harvested from the 11-layer profile and the presets — directories it doesn't recognize are flagged for you to classify, never guessed), and suggests the profile layers you haven't adopted, so you see the full division before deciding what to adopt. Know the shape you want up front? Start from a named preset instead of detection:

npx ark init --preset hexagonal        # or: layered, feature-sliced, monorepo

Workspace monorepos (npm/yarn/pnpm/bun) are auto-detectedark init reads your workspaces (or pnpm-workspace.yaml) and writes a cross-package profile anchored at the real workspace roots instead of the src/** starter, so packages/*/domain and apps/*/domain are governed by one contract. Check what each layer actually matches with npx ark-check --coverage.

Each preset writes a canonical ark.config.json (inward-only dependency rules, all layers optional) so a fresh project is governed from the first commit. On an empty project it generates the complete profile with every layer optional: the check passes immediately, and each layer starts being enforced as soon as its directory gains source files. Agents get the same guidance — the ark://manifest resource includes suggestedLayers, and the generated AGENTS.md carries the placement table, so an agent asked for a saga or a background job knows where it belongs before writing it.

Adopting on a codebase that already has violations? Freeze them and ratchet down:

npx ark-check --update-baseline   # writes .ark-baseline.json — commit it
npx ark-check --baseline          # only NEW violations fail from now on

If almost all the violations are a single layer edge, --update-baseline refuses to freeze and tells you why: that pattern is usually a wrong contract, not debt (e.g. every route reaching a framework through its sanctioned entrypoint). Fix the contract first — freezing it would bury the bug as "debt". Pass --force to freeze anyway.

Then gate your agents (Claude Code shown; Cursor / Codex / others). If you use Codex in an Ark project, register the MCP server early so ark://manifest is available during generation:

// .claude/settings.json
{
  "hooks": {
    "PreToolUse": [{
      "matcher": "Write|Edit|MultiEdit",
      "hooks": [{ "type": "command",
        "command": "npx ark-mcp --hook --root \"$CLAUDE_PROJECT_DIR\" --config ark.config.json" }]
    }]
  }
}

The same ark.config.json powers every gate.

Or generate the starter agent and CI gate files:

npx ark-check --install-agent-gates

This writes opt-in templates for MCP discovery, Claude/Cursor rules, Codex config notes, GitHub Actions, and agent instructions — plus the /ark-* skills (below) in each detected tool's command location. Existing files are skipped unless you pass --force. Every command Ark writes into these files follows your package managerpnpm exec, yarn, or npx — so a pnpm-only or yarn repo is never handed an npx instruction.

The /ark-* skills

Eight autonomous slash commands, installed for every agent CLI detected in the repo (Claude Code skills, Cursor commands, Codex prompts, Windsurf/Cline workflows; Copilot prompt files via --tools copilot, since .github/ isn't a reliable signal). Each one gathers everything it needs from the repo, takes sensible defaults instead of asking, finishes with a strict ark-check, and explains itself in plain language — useful whether you know hexagonal architecture cold or are just trying to keep your code clean:

SkillWhat invoking it does
/ark-coverageReports the governed %, proposes a layer for every ungoverned directory, and ranks unused Ark capabilities
/ark-fixResolves violations at the root cause (ports, moves, type relocations) — value coupling before type-only, never by weakening the contract
/ark-adoptOnboards an existing codebase the right way: diagnose → fix the contract → classify the tree → freeze only real debt, with the framework-border principle
/ark-placeAnswers "where does this new code go?" from the contract, and scaffolds it there
/ark-contractEvolves ark.config.json safely, with before/after violation impact
/ark-explainPlain-language tour of this project's architecture and why each rule exists
/ark-runtimeMigrates hand-rolled event buses/outboxes/sagas to the runtime kernel
/ark-upgradeAfter a package update, refreshes gates + skills across all detected CLIs

Codex reads slash-command prompts from ~/.codex/prompts, not the repo, so the generated .codex/prompts/*.md need a one-time copy there: mkdir -p ~/.codex/prompts && cp .codex/prompts/*.md ~/.codex/prompts/. The installer prints this step, and /ark-adopt / /ark-upgrade offer to run it for you. Every other host loads the skills from the repo path directly.

The package postinstall only prints the next command; it never prompts or writes files during npm install. Use npx ark init --yes for non-interactive setup.

Updating Ark

For projects that already use Ark:

npm install -D ark-runtime-kernel@latest
npx ark-check --root . --config ark.config.json --strict-config
npm run check:architecture

This updates the local ark, ark-check, and ark-mcp binaries used by npm scripts and CI. npm run check:architecture is the recommended alias, but it is optional: the direct npx ark-check --root . --config ark.config.json --strict-config command is the real check and works even if the alias has not been added yet.

The lockfile controls the version CI gets, so commit the updated package-lock.json, pnpm-lock.yaml, or yarn.lock.

Generated setup files are intentionally not rewritten during package updates: AGENTS.md, MCP config, Claude/Cursor settings, Codex notes, and GitHub Actions templates stay under your project's control. To add any new starter templates:

npx ark-check --install-agent-gates

Existing files are skipped. To regenerate them from the latest templates, review your local changes first, then run:

npx ark-check --install-agent-gates --force

Adopted Ark before its emitted commands became package-manager-aware, on a pnpm or yarn repo? Your existing gate files may still invoke npx. Rewrite only the command runner — no --force clobber, every customization preserved — with:

npx ark-check --install-agent-gates --migrate-commands

A normal ark-check flags this when it detects a runner that doesn't match your package manager.

Why Ark (and not just a linter)?

If you only need import-boundary linting in CI, dependency-cruiser, eslint-plugin-boundaries, and Nx module boundaries are solid tools. Ark's reason to exist is the write-time, agent-native half they don't cover:

Arkdependency-cruisereslint-plugin-boundariesNx boundaries
Cross-layer import checks in CI✅ (TS resolver)
Blocks AI agents before code lands (MCP + hook)
Machine-readable contract for agents (ark://manifest)
MCP tools the agent calls to place code correctly (ark_place, …)
Injects the contract into agent context at session start
Forbidden ambient globals per layer (Date.now in domain, ...)➖ (generic ESLint)
Event/intent governance (who may publish what)
Baseline ratchet for existing codebases➖ (via ESLint)
Optional runtime enforcement
Runtime dependencies0manymanyNx

One config. Three enforcement moments:

GateToolWhen it runsWhat it enforces
Writeark-mcpAgent PreToolUse (Write/Edit)The SAME layer rules as CI (contract-first), placement, intent refs, forbidden globals; an infra heuristic only for ungoverned targets
Mergeark-checkCI (GitHub Actions etc.)Cross-layer imports + intent references (real TS resolver) + forbidden globals
RuntimecreateArkKernel()Running process (opt-in)Intent registry, event contracts, observed layer flow, policies

Batteries included: the 11-layer profile (all optional)

You don't have to design a layer model before adopting Ark — it ships a complete, production-shaped division for Hexagonal + Event-Driven + DDD systems. Every layer is optional by design: on a fresh project the strict check passes immediately, and each layer starts being enforced the moment its directory gains source files. Adopt two layers or all eleven; ark.config.json is always authoritative and you can rename, remove, or re-map any of it.

LayerConventional directoriesIntent prefixes
DomainModeldomain/Domain.
ApplicationOrchestrationapplication/, app/Application.
PersistenceAdaptersadapters/persistence/, repositories/, ...Adapter.Persistence., Adapter.Repository.
IntegrationAdaptersadapters/integration/, integrations/, ...Adapter.Integration., Adapter.External.
WorkflowSagaEngineworkflows/, sagas/Workflow.
BackgroundJobsSchedulingjobs/, schedules/Job.
PresentationAdapterspresentation/, adapters/api/, ...Presentation., Adapter.Api., ...
ReportingReadModelsreporting/, read-models/, projections/Reporting.
ExtensibilityMetadatametadata/, extensions/Metadata.
SecurityAuditObservabilitysecurity/, audit/, observability/Security., Audit., Observability.
Kernelkernel/Kernel.

The default rule matrix is strict-deny: only the classic flows are open (Presentation→Application, Application→Domain, Workflow→Application/Domain, Jobs→Application) and everything else is a violation until you allow it explicitly. The profile isn't just for the linter — agents get it too: ark://manifest lists the layers your project hasn't adopted yet as suggestedLayers, so when an agent needs to create its first saga or background job, it puts it in the conventional place and adds the layer to the config instead of inventing an ungoverned location.

npx ark-check --print-config eleven-layer > ark.config.json   # the full profile, ready to edit

Adopting an existing codebase (honestly)

Most architecture tools assume you already have clean layers. Ark's job on a messy, pre-existing repo is different: tell the truth about what it governs, and guide the cleanup in order — never a false-green.

  • Honest coverage. ark-check --coverage leads with Governed: N% — the share of your source Ark actually enforces rules on. If a config governs a minority of the tree, a passing check means almost nothing, and Ark says so out loud. For every ungoverned directory it proposes a canonical layer (from the 11-layer profile + presets) or flags it as yours to classify. governed and suggestions ship in --coverage --json.

  • Diagnose before you freeze. A full check ranks violations by layer edge and target subtree — the burn-down order — and reports it as summary in --json. When one edge dominates, that's the signal the contract is wrong, not the code, so --update-baseline refuses a lopsided freeze instead of burying a config bug as "debt".

  • Real coupling vs. type placement. Each import violation is tagged typeOnly. An import type erases at compile time — it's no runtime coupling, usually just a type in the wrong layer (a cheap move). The summary splits valueCount (fix first) from typeOnlyCount, so you attack real coupling before cosmetics.

  • Protect the border around a framework, not its internals. Using a DI/kernel framework (dcouplr, NestJS, a custom kernel)? Don't try to govern its inside. Declare its public surface as one layer (the entrypoints app code is meant to import) and treat the rest as a black box. Overlapping globs resolve most-specific-first, so a kernel/app/** surface layer wins over a kernel/** catch-all regardless of declaration order — allow the edge into the surface, deny it into the internals. That facade split is how Ark stays compatible with any runtime instead of duplicating the framework's own wiring.

The /ark-adopt skill runs this whole flow autonomously: config → diagnose → fix the contract → classify the tree → freeze only genuine debt, with a ranked burn-down plan.

The AI Write Gate

Most tools tell the agent the rules after it breaks them. Ark hands the agent the contract up front and a toolkit to stay inside it — so generated code lands right the first time, with no review round-trip. ark-mcp is a zero-dependency MCP server + one-shot hook.

Enforcement — the wrong code never lands:

  • ark-mcp --hook — PreToolUse gate: computes the post-edit file content, validates it against your layers, exits 2 with the violations when the write must be blocked. The agent reads the reason and self-corrects.
  • ark-mcp --session-context — SessionStart injection: prints a compact contract summary (layers, forbidden globals, baseline state) into the agent's context, so it knows the architecture from the first token instead of learning by rejection. Silent no-op outside Ark projects, so it can't leak into other repos.

A resolvable cross-layer import is judged by your layer rules — exactly as ark-check judges it — so the two gates can't disagree on a governed edge: ark.config.json is authoritative on both. (A route calling a repository or a repository importing the DB is allowed by the contract with no special flag; a denied edge is a LAYER_IMPORT_VIOLATION.)

Honest boundary: the write gate is the fast, agent-facing guard. The merge gate (ark-check) is the authoritative check for the full TypeScript import graph, path aliases, cycles, and baseline ratchets. Use both; the same ark.config.json drives them.

Tools the agent calls proactively — they appear in its tool list automatically, so it queries the contract instead of guessing (no skill or doc-reading needed):

  • ark_place"where does this file go?" → its layer, forbidden globals, and which layers it may / must not import. The agent asks before writing.
  • validate_code — validate a snippet on demand, for runtimes without hooks.
  • ark_check — the full architecture check as structured JSON (baseline-aware).
  • ark_coverage — per-layer file counts + the full list of ungoverned files.
  • ark://manifest (resource) — the whole contract as JSON, read before generating code.

Copy-paste setups for Claude Code, Cursor, and OpenAI Codex, plus instruction-tier rule files for Windsurf, Cline, GitHub Copilot, Kiro, Roo Code, Continue, and Gemini CLI: docs/ai-gates.md.

ark-check — The CI Gate

npx ark-check --root . --config ark.config.json --strict-config   # fail on coverage gaps too
npx ark-check --json                                              # machine-readable
npx ark-check --baseline                                          # ratchet mode
npx ark-check --coverage                                          # Governed: N% + per-directory layer proposals
npx ark-check --doctor                                            # consolidated health view + ranked top actions
npx ark-check --report ark-report.html                            # visual architecture report

--report [file.html] writes a self-contained HTML report (no external assets, works offline). It shows the layers ordered innermost → outermost with each one's purpose and a real example file, the dependency direction (what each layer may import) plus the precise matrix, current violations grouped with fix hints, and which gates are live (naming the files it found). Give a layer an optional "description" in ark.config.json and it shows up as its purpose — the named presets seed these for you. The visual sibling of /ark-explain; a handy artifact to attach to a PR or share when onboarding. It's a generated file — add it to .gitignore (ark-check reminds you) rather than committing it.

What it catches (via real TypeScript module resolution — path aliases included):

  • Import/export violations (relative, aliases, packages, dynamic import(), require)
  • String intent references across forbidden layers
  • Circular dependencies (cycles in the resolved import graph)
  • Raw publish() calls that bypass registered intent creators
  • Missing / mismatched publish source metadata
  • Forbidden ambient globals per layer (fetch, Date.now, Math.random, ...) — see below

Fast on repeat runs, monorepo-ready:

  • Per-file scan cache in node_modules/.cache/ark-check.json (keyed by mtime+size and the config/manifest contents). Unchanged files skip the TypeScript parse; import edges are always re-resolved against the live filesystem, so the cache can never hide a new violation. Disable with --no-cache.
  • Path aliases resolve against the nearest tsconfig.json above each source file (like tsc), so a monorepo with per-package alias maps runs under a single --root. Pass --tsconfig <path> to force one config for every file.

Violations come with the layer edge, the resolved target, and a fix hint:

✖ LAYER_IMPORT_VIOLATION  src/domain/order.ts:3
  DomainModel → PersistenceAdapters  (src/adapters/persistence/pg-order-repository.ts)
  DomainModel must not import PersistenceAdapters.
  fix: Depend on a port/interface owned by an inner layer instead, or move this code.

Domain purity: forbiddenGlobals

Import rules can't catch code that reaches for an ambient global — an agent can call fetch() or Date.now() in your domain layer without importing anything. Declare the globals a layer must not touch and both the write gate and CI enforce it:

// ark.config.json
{
  "name": "DomainModel",
  "patterns": ["src/domain/**"],
  "intentPrefixes": ["Domain."],
  "forbiddenGlobals": ["fetch", "process", "Date.now", "Math.random"]
}
✖ FORBIDDEN_GLOBAL  src/domain/order.ts:12
  DomainModel must not use the ambient global "Date.now".
  fix: Inject the capability through a port (e.g. a Clock, IdGenerator, or HttpPort).

Entries are either dotted ("Date.now" flags exactly that property access) or bare ("console" flags console.*, fetch(...), new WebSocket(...)). Detection is positional, not scope-aware: mentions in types or import names are never flagged. npx ark init seeds the domain layer with ["fetch", "process", "Date.now", "Math.random"] (a pure domain does no I/O and is deterministic); add "console" or any other global per project. Violations participate in the --baseline ratchet like every other rule.

Infrastructure layers: mayImportInfrastructure

When an import resolves to a declared layer, the write gate judges it by your layer rules — exactly like ark-check — so an edge the contract allows (a route calling a repository, a repository importing the DB) is never blocked, and a denied edge is a LAYER_IMPORT_VIOLATION. The heuristic below is a fallback only for ungoverned targets: an external package, or a path no declared layer covers.

For those, the write gate blocks obvious infrastructure imports (/infra, /adapters, /persistence, /db, and ORMs like Prisma/TypeORM) so an agent can't quietly wire a database package into your pure core. It skips this for layers whose name already signals an infra role (PersistenceAdapters, FrameworkAdapters, …). If an infra layer has an unconventional name and you rely on this heuristic rather than explicit rules, opt it in:

// ark.config.json
{
  "name": "Storage",
  "patterns": ["src/storage/**"],
  "mayImportInfrastructure": true
}

The pure core (domain/application) stays protected; forbiddenPatterns you add yourself apply in every layer regardless. ark-check (CI) is unaffected — it already judges imports by your layer rules, not this heuristic.

Architectural security invariants

Ark is not a security scanner — it won't find injection bugs, leaked secrets, or vulnerable dependencies (reach for Semgrep, gitleaks, and npm audit for those). But several security properties are architectural invariants: they hold only if certain code lives in certain layers and never reaches for certain capabilities. Those are exactly what AI-generated code breaks and what a line-level linter can't see — and they're just layer rules plus forbiddenGlobals:

  • Confine secret/env access to one layer. process.env scattered across the codebase is how secrets leak into logs, clients, and error messages. Forbid process in every pure layer, and give env/config its own layer that's allowed to touch it — everything else must receive config as an argument:

    // Pure layers forbid it…
    { "name": "DomainModel", "patterns": ["src/domain/**"],
      "forbiddenGlobals": ["fetch", "process", "Date.now", "Math.random"] }
    // …one config layer owns it. Nothing may import outward into it by accident,
    // and it's the only place process.env appears.
    { "name": "RuntimeConfiguration", "patterns": ["src/**/config/**", "src/env.ts"] }
    
  • Confine outbound network to adapters (no SSRF from the core). Forbid fetch everywhere except the integration layer, so a use case or domain rule can't be tricked into calling an attacker-controlled URL. Outbound calls go through an injected client owned by the adapter.

  • No weak randomness in the core. Math.random is not cryptographically secure; minting IDs, tokens, or nonces with it is a classic vulnerability. Forbidding it in the domain forces those through an injected IdGenerator/TokenService you can point at a secure source.

The write gate blocks these as an agent types them; CI blocks them at merge; the --baseline ratchet lets you adopt them on an existing codebase without a big-bang fix. None of this replaces a real security review — it removes the architectural footguns before they ship.

GitHub Action

- uses: pedroknigge/ark-runtime-kernel@main
  with:
    github-token: ${{ secrets.GITHUB_TOKEN }}   # comments violations on the PR

Inputs: root, config, strict-config, baseline, version.

ESLint plugin (in-editor feedback)

// eslint.config.js
import ark from 'ark-runtime-kernel/eslint';
export default [ark.configs.recommended];

Rules: ark/no-domain-infra-imports, ark/no-raw-event-publish, ark/require-publish-source, ark/no-forbidden-globals (not in recommended — scope it to your layer directories):

{
  files: ['src/domain/**'],
  rules: { 'ark/no-forbidden-globals': ['error', { globals: ['fetch', 'process', 'Date.now', 'Math.random'] }] },
}

The Runtime Kernel (opt-in)

The gates above need zero changes to your code. When you also want runtime guarantees — registered intents only, payload contracts, observed producer→event layer flows — route your events through the kernel:

import { readFileSync } from 'node:fs';
import { createStrictArkKernelFromConfig } from 'ark-runtime-kernel';

const arkConfig = JSON.parse(readFileSync('ark.config.json', 'utf8'));
const ark = createStrictArkKernelFromConfig(arkConfig); // strict defaults, your rules

const OrderPlaced = ark.registry.define<
  'Domain.Order.OrderPlaced',
  { orderId: string; amount: number }
>('Domain.Order.OrderPlaced');

ark.registry.define<'Application.PlaceOrder', { orderId: string }>(
  'Application.PlaceOrder',
  { produces: ['Domain.Order.OrderPlaced'] }
);

// Payload contracts: Ark's own schema format, or any Standard Schema
// validator (zod, valibot, arktype) via `standardSchema`.
ark.eventContracts.register({
  intent: 'Domain.Order.OrderPlaced',
  version: '1',
  allowAdditionalFields: false,
  schema: {
    orderId: { type: 'string', required: true },
    amount: { type: 'number', required: true },
  },
});

ark.projections.register({
  name: 'OrderIds',
  sourceIntents: ['Domain.Order.OrderPlaced'],
  initialState: { ids: [] as string[] },
  project: (event, state) => ({ ids: [...state.ids, event.payload.orderId as string] }),
});

const publisher = ark.publisher('Application.PlaceOrder');
await publisher.publish(OrderPlaced, { orderId: 'o1', amount: 129 }, { eventVersion: '1' });

ark.manifest().toJSON(); // the complete machine-readable contract

What it gives you: intent registry with produces/dependsOn, strict event bus (registered intents only, known sources), event contracts, hard/soft policies, observed layer-flow enforcement ('hard' | 'soft' | 'off') using your ark.config.json prefixes and rules, projections, observability/drift reports, and pluggable audit/outbox/workflow interfaces (in-memory defaults — see production hardening).

Honest scope: runtime enforcement covers governed paths only — what you route through Ark. Everything else is covered by the static gates.

NestJS

import { ArkModule, InjectArk } from 'ark-runtime-kernel/nestjs';
import type { ArkKernel } from 'ark-runtime-kernel';

@Module({ imports: [ArkModule.forRoot()] })
export class AppModule {}

@Injectable()
export class PlaceOrderService {
  constructor(@InjectArk() private readonly ark: ArkKernel) {}
}

@nestjs/common is an optional peer dependency — the core stays zero-dependency.

Documentation

Development

npm ci
npm run build              # ark-mcp loads dist/
npx vitest run
npm run typecheck
npm run check:architecture # Ark gates itself in CI

Release is GitHub-first, npm second:

  • Land the upgrade on GitHub and wait for CI + Security to pass.
  • Create an annotated tag (vX.Y.Z) and a GitHub Release for it. Prefer a signed tag; set ARK_REQUIRE_SIGNED_RELEASE_TAG=true in the publish workflow once signing is configured.
  • Run the manual Publish npm workflow with dry_run: true.
  • If that passes, rerun Publish npm with dry_run: false.

Local verification: npm run release:npm -- --dry. Local real publish requires -- --allow-local and should be used only as an emergency path because it cannot attach GitHub Actions npm provenance.

License

MIT © Pedro Knigge

Ark doesn't generate architecture. It protects the architecture you have, helps you organize the one you don't yet — and tells you the truth about the difference.

Keywords

architecture

FAQs

Package last updated on 06 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts