# DRAGONS

## The flight recorder for your coding agents.

Every run writes a replayable record: who the agent was, what it was authorized
to do, what it did, whether it is still alive. Check it yourself.

The first local loop is simple: dock a Claude Code or Codex session through one
local MCP config line or one SDK `agent()` call, work normally, then replay the
record against fixtures checked into the repository. The hosted dock is not
advertised on this surface.

Intended local SDK contract (unpublished):

```ts
import { agent } from '@dragons/sdk';

const run = agent({
  mode: 'persistent',
  venue: 'cloudflare',
  template: 'pi-mono',
  version: 'v1',
  dock: { org: 'mogos', project: 'fleet-of-one', role: 'worker' },
});
```

The package is not published in this release. Run the public failure replay to
verify the delivered contract path.

The same evaluator runs locally with Node and no dependencies:

```bash
curl -fsSLO https://dragons.dev/receipt-specimen.json
curl -fsSLO https://dragons.dev/replay.mjs
node replay.mjs receipt-specimen.json
```

> Dragons (dragons.dev) is a platform by MOGOS for building, running, and governing autonomous AI systems — permissions that default to no, watchdogs, self-healing. Model-agnostic by design.

Truth boundary: verify the feature spine before first deploy; no open-source
claim — the source model is closed for now per operator 2026-07-07, pending the
license 4ARs. The public surface explains the contract; production readiness
requires live evidence.

- [Contract](https://dragons.dev/#contract)
- [Evidence surface](https://dragons.dev/#evidence)
- [Local dock](https://dragons.dev/#dock)
- [Failure replay](https://dragons.dev/replay.html)
- [MOGOS Collective](https://mogos.co)
- [Live window](https://mogos.live)
