Metadata-Version: 2.4
Name: code-factory-agent
Version: 0.1.3
Summary: Extended Python asyncio port of the OpenAI Symphony spec
Project-URL: Homepage, https://github.com/Benjoyo/code-factory
Project-URL: Repository, https://github.com/Benjoyo/code-factory
Project-URL: Documentation, https://github.com/Benjoyo/code-factory/blob/main/README.md
Project-URL: Issues, https://github.com/Benjoyo/code-factory/issues
Project-URL: Changelog, https://github.com/Benjoyo/code-factory/releases
Author: Benjoyo
License: MIT License
        
        Copyright (c) 2026 Benjoyo
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Requires-Python: >=3.12
Requires-Dist: aiohttp<4,>=3.11.13
Requires-Dist: httpx<0.29,>=0.28.1
Requires-Dist: pydantic<3,>=2.11.7
Requires-Dist: python-liquid<3,>=2.1.0
Requires-Dist: pyyaml<7,>=6.0.2
Requires-Dist: rich<15,>=14.2.0
Requires-Dist: textual<9,>=8.1.0
Requires-Dist: typer<0.17,>=0.16.0
Requires-Dist: watchfiles<2,>=1.1.1
Provides-Extra: dev
Requires-Dist: pyright<2,>=1.1.398; extra == 'dev'
Requires-Dist: pytest-asyncio<1,>=0.25.3; extra == 'dev'
Requires-Dist: pytest-cov<7,>=6.1.1; extra == 'dev'
Requires-Dist: pytest<9,>=8.3.5; extra == 'dev'
Requires-Dist: ruff<0.12,>=0.11.0; extra == 'dev'
Description-Content-Type: text/markdown

<div align="center">

<h1>Code Factory</h1>

<p><strong>🏭 Orchestrate coding agents via Kanban — high autonomy, isolated per-issue workspaces, single-file repo-owned workflow contract</strong></p>

<p><a href="#quick-start">Quick Start</a> · <a href="https://github.com/Benjoyo/code-factory/blob/main/docs/cli.md">CLI</a> · <a href="https://github.com/Benjoyo/code-factory/blob/main/docs/workflow/README.md">Workflow</a> · <a href="https://github.com/Benjoyo/code-factory/blob/main/SPEC.md">Specification</a></p>

</div>

<p align="center">
  <img src="https://raw.githubusercontent.com/Benjoyo/code-factory/main/docs/images/code-factory-dashboard.png" alt="Code Factory operator dashboard showing live issue execution, throughput, token usage, and operator links" width="1257" />
</p>

Code Factory is a Python asyncio implementation and extension of the OpenAI Symphony spec. It
polls tracker work, creates isolated per-issue workspaces, runs coding-agent
sessions inside them, and keeps the workflow contract versioned in
`WORKFLOW.md`.

Use it when you want repeatable issue execution, repo-owned workflow policy,
and enough observability to operate concurrent agent runs without building a
custom harness around your coding agent.

## Typical Workflow

![Typical Code Factory workflow showing tracker intake, per-issue workspace creation, coding-agent execution, operator review, and issue state progression](https://raw.githubusercontent.com/Benjoyo/code-factory/main/docs/code-factory-typical-workflow.svg)

## What You Need

- Python 3.12
- [`uv`](https://docs.astral.sh/uv/)
- A valid `WORKFLOW.md`
- Access to the tracker configured in `WORKFLOW.md`
- A working coding-agent command available to `codex.command`

## Installation

Install `cf` from PyPI as a `uv` tool:

```bash
uv tool install code-factory-agent
```

Then run it directly:

```bash
cf --help
cf serve --no-guardrails
```

If you prefer not to install the tool, you can still run it from the repo with
`uv run cf ...`.

## Quick Start

### 1. Install from PyPI

```bash
uv tool install code-factory-agent
```

### 2. Create a starter workflow in a new project

```bash
cf init
```

`cf init` walks you through the starter values, renders a
project-specific `WORKFLOW.md`, and copies this repo's bundled skills into
`./.agents/skills`. Re-run with `--force` if you want to overwrite an existing
workflow or skills bundle.

Most projects should make a few repo-specific edits before first real use. The
starter workflow is intentionally generic; adapt the bootstrap, verification,
and review setup to your stack.

Example additions to copy into `WORKFLOW.md` and tailor:

```yaml
hooks:
  after_create: |
    git clone --depth 1 git@github.com:your-org/your-repo.git .
    uv sync

states:
  "In Progress":
    hooks:
      before_complete: |
        make verify
  "Rework":
    hooks:
      before_complete: |
        make verify

review:
  prepare: |
    uv sync
  servers:
    - name: app
      base_port: 8000
      command: |
        uv run python -m uvicorn your_project.app:app --host 127.0.0.1 --port {{ review.port }}
      url: http://127.0.0.1:{{ review.port }}
```

Use these as patterns, not defaults:

- `hooks.after_create`: install dependencies, build generated assets, or run any one-time workspace bootstrap your repo needs.
- `states.<state>.hooks.before_complete`: run the quality gate your team expects before handoff, for example `make verify`, `uv run pytest -q`, or a lint/test script.
- `review.prepare` and `review.servers`: make `cf review` immediately useful by starting the exact app or dev server a reviewer should inspect.

### 3. Start the service

```bash
cf serve --no-guardrails
```

If you omit the workflow path, the CLI defaults to `./WORKFLOW.md`.

### 4. Create issues and move to Todo

- Create new issues in Linear Backlog
- Move ready-for-dev issues to Todo

### 5. Steer agents during execution (optional)

Run:

```bash
cf steer ENG-123 "also add integration tests please"
```

This appends operator guidance to an in-flight issue turn.

### 6. Review PRs

Run:

```bash
cf review ENG-123
```

This will:

- Launch a review worktree and any configured review servers.
- Open the browser automatically, if configured.
- Let you quickly submit PR comments with any problems you find.

### 7. Move issues to Merging, Todo, or Rework

Move reviewed issues to:

- Merging, if review was successful
- Todo, if you left review comments in the PR
- Rework, if you left review comments and want a full, clean re-attempt at the issue

## CLI Overview

The main operator commands are:

- `cf init` to bootstrap a repo-local workflow and bundled skills
- `cf serve` to run the long-lived automation service
- `cf review` to launch a review worktree and any configured review servers
- `cf steer` to append operator guidance to an in-flight issue turn
- `cf issue`, `cf comment`, `cf workpad`, and `cf tracker` for tracker-facing
  operator actions

See [docs/cli.md](https://github.com/Benjoyo/code-factory/blob/main/docs/cli.md) for the general CLI reference and
[docs/ticket-cli.md](https://github.com/Benjoyo/code-factory/blob/main/docs/ticket-cli.md) for ticket-oriented commands.

## Ticket Surfaces

Agent sessions use flat `tracker_issue_*`, `tracker_comment_*`,
`tracker_pr_link`, and `tracker_file_upload` tools for ticket work. The
orchestrator manages `workpad.md` synchronization to a ticket comment
automatically during the run.

Operators can use the CLI for the same ticket surface area:

```bash
cf issue get ISSUE
cf issue list [--project PROJECT] [--team TEAM] [--state STATE]
cf issue create --team TEAM --title TITLE
cf issue update ISSUE
cf issue move ISSUE --state STATE
cf issue link-pr ISSUE --url URL
cf comment list ISSUE
cf comment create ISSUE
cf comment update COMMENT
cf workpad get ISSUE
cf workpad sync ISSUE
```

## Workflow

`WORKFLOW.md` is the main operator surface for Code Factory. It keeps tracker
configuration, active states, prompt sections, completion gates, review setup,
workspace hooks, and observability settings in the repo so teams can version and
hot-reload automation policy alongside application code.

See the workflow docs for the current contract:

- [Workflow docs](https://github.com/Benjoyo/code-factory/blob/main/docs/workflow/README.md)
- [Frontmatter reference](https://github.com/Benjoyo/code-factory/blob/main/docs/workflow/frontmatter.md)
- [Prompt template reference](https://github.com/Benjoyo/code-factory/blob/main/docs/workflow/prompt-template.md)
- [Specification](https://github.com/Benjoyo/code-factory/blob/main/SPEC.md)

## Observability

Code Factory exposes a local observability API and, when stderr is attached to a
TTY, a live terminal dashboard for operators. See
[docs/observability.md](https://github.com/Benjoyo/code-factory/blob/main/docs/observability.md) for endpoints, dashboard
behavior, and steering/discovery details.

## Runtime Notes

- Startup validates the workflow and required dispatch settings before the
  scheduler loop begins.
- `WORKFLOW.md` is hot-reloaded automatically; valid changes affect future
  dispatches without restarting the service.
- Only issues in active workflow states are dispatched.

## Development

For local development from a checkout:

```bash
git clone git@github.com:Benjoyo/code-factory.git
cd code-factory
make setup
```

Run the CLI directly from the repo with `uv run`:

```bash
uv run cf --help
uv run cf serve --no-guardrails
```

If you want the checkout on your PATH during development, install the local
editable tool:

```bash
uv tool install --editable .
```

Run the full verification suite:

```bash
make verify
```
