AI-DLC - one core, many harnesses

September 11, 2026 ยท View on GitHub

AI-DLC (AI-Driven Development Life Cycle) turns AI coding assistants into structured, verifiable software-delivery workflows. One harness-neutral core runs natively in Claude Code, Kiro CLI, Kiro IDE, Codex CLI, Cursor, opencode, and GitHub Copilot.

version license

The Quick Start below installs the latest stable AI-DLC release.

Quick Start

1. Install AI-DLC

macOS, Linux, or WSL:

curl -fsSL https://github.com/awslabs/aidlc-workflows/releases/latest/download/install.sh | sh

Windows PowerShell:

irm https://github.com/awslabs/aidlc-workflows/releases/latest/download/install.ps1 | iex

The installer adds the native aidlc command and every harness runtime. Bun and Node.js are not required. If your shell cannot find aidlc, follow the PATH instruction printed by the installer or start a new shell.

Prefer to manage the project files manually? Install the matching native aidlc command, download aidlc-runtime-X.Y.Z.tar.gz from the release, and copy runtime/<harness>/ into your project.

2. Configure a project

From the project root, select the harness you use:

cd /path/to/your-project
aidlc config --harness claude
aidlc doctor

Replace claude with kiro, kiro-ide, codex, cursor, opencode, or copilot. Running aidlc config without --harness starts the interactive setup when a terminal is available.

3. Start a workflow

Open your harness in the configured project and describe the work:

/aidlc Build a REST API for inventory management

Codex CLI uses $aidlc instead of /aidlc. AI-DLC selects a workflow from the request, asks for missing decisions, and stops at approval gates before moving forward.

For provider setup, trust prompts, and harness-specific prerequisites, use the guide in the table below. The complete walkthrough is in Getting Started.

Pick your harness

HarnessConfigureOpenInvokeGuide
Claude Codeaidlc config --harness claudeclaude/aidlcGetting Started
Kiro CLI >= 2.6aidlc config --harness kirokiro-cli chat/aidlcKiro CLI
Kiro IDEaidlc config --harness kiro-ideOpen the project/aidlcKiro IDE
Codex CLI >= 0.145.0aidlc config --harness codexcodex$aidlcCodex CLI
Cursoraidlc config --harness cursorOpen Cursor or run agent/aidlcCursor
opencode >= 1.17aidlc config --harness opencodeopencode/aidlcopencode
GitHub Copilot CLI >= 1.0.74 / VS Code >= 1.130aidlc config --harness copilotCopilot CLI or VS Code/aidlcGitHub Copilot

Model-provider setup belongs to the harness. Claude Code and the shipped Codex configuration default to Amazon Bedrock; GitHub Copilot uses GitHub sign-in or BYOK; Kiro, Cursor, and opencode use their configured provider. The methodology itself is provider-independent.

AI-DLC works best with capable reasoning models. The current recommended model is Claude Opus 4.8.

Why AI-DLC

Ad-hoc AI coding loses context as projects grow. AI-DLC keeps requirements, decisions, implementation, tests, and operational work connected through one audited lifecycle:

  • 5 phases and 33 stages from initialization through operation
  • 14 agents: 11 domain experts, 2 reviewers, and an adaptive composer
  • 11 workflow profiles for features, bug fixes, infrastructure, security, proofs of concept, enterprise delivery, and other common work
  • Human approval gates and source-bound review evidence
  • 98-event audit trail plus persistent state, team knowledge, and learned rules
  • The same deterministic engine across every supported harness

Start with Workflow Profiles to compare Classic, Express, and the focused workflows. See the AI-DLC Workflows 2.0 Specification for the architecture and methodology.

Important

Generative AI can make mistakes. Review generated output and costs before acting on them. See the AWS Responsible AI Policy.

Documentation

GuideUse it when
Getting StartedInstalling, configuring, and running your first workflow
User GuideUsing workflows, profiles, agents, knowledge, and approval gates
Harness guidesHandling provider, trust, and runtime differences
Install and LifecycleUpdating, pinning, installing offline, using mirrors, or uninstalling
Harness Engineer GuideReshaping stages, agents, rules, sensors, and knowledge
Developer ReferenceChanging the engine, hooks, packaging, or tests

Repository Layout

  • core/ - hand-authored, harness-neutral methodology and engine
  • core/tools/ - 70 aidlc-*.ts engine and authoring tools
  • harness/<name>/ - thin, harness-specific manifests and integrations
  • plugins/<name>/ - optional AIDLC plugins
  • scripts/ - packaging, binary, installer, and release tooling
  • tests/ - smoke, unit, integration, and end-to-end tests
  • docs/ - user, harness-engineering, and developer documentation
  • dist/ and dist-release/ - generated, ignored local outputs

Edit core/ or harness/<name>/, never generated dist* output.

Development

Install dependencies and generate every harness:

bun install --frozen-lockfile
bun scripts/package.ts

Useful commands:

bun scripts/package.ts <name>     # generate one harness
bun scripts/package.ts --check    # determinism guard
bun tests/run-tests.ts --ci       # smoke, unit, and integration
bun tests/run-tests.ts --release  # full release acceptance

See the Contributing Guide for the complete development workflow and Porting to a New Harness to add another runtime.

Troubleshooting

Run aidlc doctor from the project root first. Common fixes:

SymptomFix
aidlc is not foundApply the PATH instruction printed by the installer or start a new shell
Project/runtime version skewFinish the active workflow, then run aidlc config
Codex hooks do not runTrust the project hooks as described in the Codex guide
Bedrock access failsEnable the configured models and verify AWS credentials and region
Plugin stages disappear after refreshRun /aidlc plugin sync
Refreshed skills do not take effectStart a new harness session

See Troubleshooting for diagnostic and recovery procedures.

References