Metadata-Version: 2.4
Name: ratchet-factory
Version: 0.1.0
Summary: Scaffold and generate agents and modules for the Ratchet framework
Project-URL: Homepage, https://getratchet.dev
Project-URL: Repository, https://github.com/ratchet-framework/Ratchet
Author: Aaron Benson
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: ratchet-core>=0.1.0
Description-Content-Type: text/markdown

# ratchet-factory

Scaffold and generate agents and modules for the [Ratchet framework](https://getratchet.dev).

## Install

```bash
pip install ratchet-factory
```

## Usage

### Create a new agent

```bash
ratchet init my-agent
```

Creates a ready-to-run agent with config, trust tiers, guardrails, incident directory, backlog, and entry point script.

### Create a new module

```bash
ratchet new module disk-monitor --description "Monitor disk usage and alert on thresholds"
```

Creates a new `ratchet-*` package with pyproject.toml, RatchetModule implementation, and README.

## License

MIT
