You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Motivation
<!-- Why is this change necessary? -->
# Content
<!-- Please include a summary of the change -->
# Testing
<!-- How was the change tested? -->
# Please check the following before marking your PR as ready for review
- [ ] I have added tests for my changes
- [ ] I have updated the documentation or added new documentation as
needed
The `codegen` CLI allows users to run and interact with agents from the terminal.
8
+
The `codegen` CLI is your terminal interface to Codegen agents. Use it to view agents, pull their work, create new agents, and run Claude Code with full telemetry and monitoring.
9
9
10
10
<iframe
11
11
className="w-full aspect-video rounded-xl"
@@ -16,126 +16,48 @@ The `codegen` CLI allows users to run and interact with agents from the terminal
16
16
allowFullScreen
17
17
></iframe>
18
18
19
-
## Installation
19
+
## Installation & Setup
20
20
21
21
```bash
22
22
uv tool install codegen
23
23
```
24
24
25
-
## Initialization
25
+
The CLI uses your API token for authentication. Get your token and organization ID from the **[authentication guide](/api-reference/authentication)**.
26
26
27
27
```bash
28
28
codegen login
29
29
```
30
30
31
-
## CLI Reference
31
+
## Key Commands
32
32
33
-
### `codegen` (root)
33
+
### `codegen`
34
34
35
-
**Description:** Launches the interactive TUI if no subcommand is provided.
36
-
37
-
---
38
-
39
-
### `codegen agent`
40
-
41
-
**Description:** Create a new agent run with a prompt, fetch an existing agent run by ID, or pull PR branch.
0 commit comments