# @aaac/contracts

Contract definitions for the AaaC (Agent-Assisted Architecture Contracts) toolchain.

## Install

```bash
npm install @aaac/contracts
```

## Usage

```typescript
import { version, type ContractDefinition } from "@aaac/contracts";

const contract: ContractDefinition = {
  name: "example",
  version: "1.0.0",
};

console.log(version);
```

## Development

From the monorepo root:

```bash
npm install
npm run build
npm run test
```

## License

MIT — see [LICENSE](../../LICENSE).
