For Engineers · Local Runtime

Any coding agent, one harness.
Every run on the record.

IAS runs Claude Code, Codex CLI, and Gemini CLI inside your own repos. Before a run starts, you can read the context pack it loads, the validators that gate it, and the approvals it needs.

ias start · local runtime
$
The Daily Gap

The agents are fine. The setup around them is improvised.

Chat-driven agents, any given morning:
"What's the auth spec?"
You re-paste the spec (3rd time)
Context window exceeded

Same task through IAS: the spec is already in the context pack.
The run reads it, logs what it read, and commits with the record attached.

IAS Run

Context loaded from docs/ias/

IAS Run

Spec read from context pack

IAS Run

Committed: a3f2b1c

The Workflow

Your repo. Your machine. Your policy, in version control.

Agents execute against your local checkout. The console works on run metadata and evidence; your source stays where it is.

Bootstrap

IAS scaffolds a docs/ias/ directory into your repo. Context packs, validator definitions, and approval rules live in version control, next to the code they govern.

Infrastructure

Run

ias start brings the local runtime online. It claims queued jobs and executes against your local checkout, with progress streaming in the CLI.

Infrastructure

Validators

Deterministic checks run on every step, the same rules every time. Approval gates open where your policy puts them, and only there.

Infrastructure

Git-Native

Every action lands as a commit with a real SHA. Any line of agent-written code traces back to the intent that produced it.

Infrastructure
Intent to Evidence

From an intent to a reviewed change.

Type an intent like “migrate the payments service to the new API contract”. IAS refines it into a spec with a readiness score, attaches the right context pack, and sets validators and approval gates before any agent runs. Step through the flow below.

intuitive-agent-system
Project: improve-landing-page
What would you like to build or change?
Choose your intent

* Simulated workflow for demonstration purposes

Pre-Run Visibility

You can read the context pack before the agent does.

Every run loads a named pack: coding standards, compliance rules, domain knowledge. Pinned items plus declared sources, so two runs of the same job read the same thing.

Context Packs
  • Pinned items plus declared sources: the pack is reproducible.
  • Idempotent upserts with dedup keys, safe to re-sync.
  • Every run records exactly which items it read.
Local Execution
  • ias start runs agents on your machine, against your checkout.
  • Source code never leaves your infrastructure.
  • The console receives run metadata and evidence, not code.
The Stack

A framework, a CLI, and a console.

Policy lives in the repo, runs happen on your machine, and oversight happens in one place.

In-repo policy

IAS Framework

Context packs, validator definitions, and approval rules scaffolded into your codebase, versioned with the code they govern.

Git-native.
ias-agent-framework
docs/ias/
context-packs/
architecture.md
glossary.md
policies/
quality-gates.yml
decision-routing.yml
world-model.md
Local runtime

IAS CLI

ias start claims queued work, loads the context pack, runs the agent against your checkout, and commits the result.

Runs on your machine.
ias-cli
$ ias bootstrap
 Scaffolded docs/ias/ directory
 Loaded context packs (3 files)
 Applied quality gates

$ ias claim --queue=sprint-42
 Claimed: PROJ-142 Auth middleware
 Executing against local checkout...
Run oversight

IAS Console

Watch runs in progress, answer blocking questions, and pull the evidence trail for any change.

Metadata and evidence only.
ias-workboard
Needs You2
Theme default?
Decision
API schema review
Blocked
Live3
User settings page
Running
Auth middleware
Running
Done5
Profile page refactor
Done
API rate limiting
Done
Daily Mechanics

What the harness handles, what stays in your hands.

Non-Blocking Questions

Agents don't stall on a missing decision. They file the question, stub the gap, and keep moving. You answer from the console when you're ready.

01

Review Beyond Compile

Work runs through role passes: PM scoping, UX validation, implementation review. Deterministic validators run alongside, the same rules on every run.

02

Durable Re-Entry

State lives in repo files, not chat history. Any agent, on any of the three models, can pick up a half-finished job, read the state, and continue.

03

See it run on your codebase.

Request a walkthrough and we'll run IAS against a real repo: an intent in, validators and approval gates on, a commit out with its evidence trail attached. Prefer to read first? The docs cover the full run lifecycle.

Read the docs