CLI
Install the you-agent-factory CLI and look up the core you commands for starting a factory, submitting work, checking sessions, and reading packaged docs.
Install
Install the you CLI with the published release entrypoint for your operating system. These commands install the binary; they do not start a factory.macOS / Linux
curl -fsSL https://github.com/portpowered/you-agent-factory/releases/latest/download/install.sh | shWindows (PowerShell)
irm https://github.com/portpowered/you-agent-factory/releases/latest/download/install.ps1 | iexCommands
Use this matrix to pick a core you command and see whether a factory must already be running. Startup forms create or attach to a local runtime. Submit forms enqueue work against a live factory. Docs print packaged reference markdown offline.| Command | Purpose | Factory must already be running? |
|---|---|---|
| you | Start the default local factory and dashboard from the current project. | No — this starts the runtime. |
| you run --dir <factory> | Start or attach to a local factory from an explicit factory directory. | No — this starts the runtime. |
| you run --named <factory> / you run --factory <path> | Run a named or portable factory without guessing the local directory layout. | No — this starts the runtime. |
| you run --work <batch.json> | Submit batch JSON as part of local factory startup, not steady-state ingress. | No when used with a startup form such as --dir. |
| you submit | Submit one work item to a factory that is already accepting work. | Yes |
| you submit batch | Upsert batch JSON to a running factory session. | Yes |
| you session list | Check whether a factory host has open sessions before submitting work. | Yes — talks to a running host. |
| you work list / you work show | Inspect work items from a running factory. | Yes |
| you docs / you docs <topic> | Print packaged reference markdown from the installed binary. | No |