Infinite You is an AI agent factory. It orchestrates AI agents for you so you can do more work without doing everything manually.
Why?
Leverage.
With Infinite You, you codify your process into a workflow with different AGENTs.md and run them as wrappers around OpenAI codex.
For example:
- dispatch 10 agents to run independently in separate work trees
- have one agent loop through a series of tasks, and then have a reviewer review the output and retrigger the loop if it failed
- tell the agents a series of plans, and run them in dependency order
- have a cron setup to autonomously look at git tasks or whatever and submit tasks that go through a write/review cycle loop
Install
- install codex
npm i -g @openai/codex - install on macOS/Linux:
curl -fsSL https://github.com/portpowered/infinite-you/releases/latest/download/install.sh | sh - install on Windows PowerShell:
irm https://github.com/portpowered/infinite-you/releases/latest/download/install.ps1 | iex - go
cd your-project-directory - run
infinite-you - submit a work task on the website interface, like "go write a report on my codebase at TEST.md",
- wait till complete
- finished
claude variant
infinite-you init --executor claude --dir my-factory
infinite-you docs workstation
Example
Here's an example of the factory for infinite-you dispatching roughly 5-10 agents.
How It Works
The default no-argument starter flow looks like below: you give it a task, it spawns a basic agent CLI run and does stuff.
flowchart LR
classDef place fill:#000,stroke:#333,color:#fff,stroke-width:2px
classDef transition fill:#333,stroke:#333,color:#fff,rx:0,ry:0
P0((task:init)):::place
P1((task:complete)):::place
P2((task:failed)):::place
T0[process]:::transition
P0 --> T0
T0 --> P1
T0 -.->|on failure| P2
Customization
See authoring-workflows for the full configuration guide. Infinite you lets you customize your flow however you want.
The overall system of how infinite you works is relatively simple.
- You have work.
- Work goes to workstations where the work gets worked on by workers (agents, or just shell scripts)
- When the workstations complete the, work is converted to other work.
- Infinite you stops when no work remains.
Shipped example factories
Drag the images from the examples/factories directory into the web interface's flow graph, and it'll load the factory for you.























