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
Access up-to-date information, research libraries, find documentation
56
-
online.
57
-
</Card>
58
-
</CardGroup>
59
-
60
-
<Note>
61
-
These capabilities allow Codegen agents to handle complex tasks across
62
-
multiple systems, just like a human developer.
63
-
</Note>
8
+
Codegen agents follow a simple but powerful workflow: they're triggered from your existing tools, work in secure sandboxes to implement changes, create pull requests, and then monitor and fix any issues that arise. This creates a seamless development experience that integrates naturally with your team's existing processes.
9
+
10
+
## The Agent Happy Path
11
+
12
+
Here's how Codegen agents work from start to finish:
13
+
14
+
```mermaid
15
+
graph TD
16
+
A[Trigger from Integration] --> B[Work in Remote Sandbox]
17
+
B --> C[Create Pull Request]
18
+
C --> D[Monitor CI Checks]
19
+
D --> E[Auto-fix Failed Checks]
20
+
E --> D
21
+
D --> D1[All checks pass ✓]
22
+
D1 --> G[Ready for Review]
23
+
G --> F[Respond to Follow-up Questions]
24
+
F --> G
25
+
26
+
A1[Slack @mention] --> A
27
+
A2[Linear issue assignment] --> A
28
+
A3[GitHub issue comment] --> A
29
+
```
30
+
31
+
### 1. Trigger `@codegen` from Your Tools
32
+
33
+
Agents activate seamlessly from the platforms you already use:
34
+
35
+
-**[Slack](/integrations/slack)** - Tag `@codegen` in any channel or send a direct message
36
+
-**[Linear](/integrations/linear)** - Assign an issue to Codegen or mention it in comments
37
+
-**[Jira](/integrations/jira)** - Assign an issue to Codegen or mention it in comments
38
+
-**[ClickUp](/integrations/clickup)** - Assign a task to Codegen or mention it in comments
39
+
-**[Monday.com](/integrations/monday)** - Assign an item to Codegen or mention it in comments
40
+
-**[GitHub](/integrations/github)** - Comment on issues or PRs to request changes
41
+
-**[API](http://localhost:3001/api-reference/agents/create-agent-run)** - Programmatically trigger agents for automated workflows
42
+
43
+
### 2. Work in Secure Sandboxes
44
+
45
+
Once triggered, agents work in **[isolated sandbox environments](/sandboxes/overview)** where they can:
46
+
47
+
- Execute code safely without affecting your systems
48
+
- Install dependencies and run tests
49
+
- Make changes and validate them before committing
50
+
- Access your repository context while maintaining security
Copy file name to clipboardExpand all lines: docs/introduction/overview.mdx
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ icon: "robot"
5
5
iconType: "solid"
6
6
---
7
7
8
-
Codegen provides intelligent AI agents designed to seamlessly integrate into your existing developer workflows.
8
+
Codegen helps you run frontier code agents at scale. It provides the necessary building blocks (sandboxes, integrations, telemetry) for successful enterprise code agent deployments across thousands of teams today.
9
9
10
10
Think of it as an AI coworker that can understand and solve coding challenges, access your codebase instantly, and interact directly with your development tools.
11
11
@@ -109,3 +109,20 @@ Codegen is SOC 2 Type II certified, ensuring your code and data are handled with
109
109
Learn how to use Codegen for common code transformation tasks.
110
110
</Card>
111
111
</CardGroup>
112
+
113
+
## Learn More
114
+
115
+
<CardGroupcols={2}>
116
+
<Card
117
+
title="Join the Community"
118
+
icon="people-group"
119
+
href="/introduction/community"
120
+
>
121
+
Connect with other developers, get help, and share your experiences in our
Copy file name to clipboardExpand all lines: docs/settings/agent-permissions.mdx
+9-43Lines changed: 9 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,14 @@ icon: "shield-check"
6
6
7
7
Configure what actions the AI agent is allowed to perform across your organization. These permission settings provide fine-grained control over agent capabilities to ensure they operate within your security and workflow requirements.
8
8
9
+
<Card
10
+
title="Configure Agent Permissions"
11
+
icon="shield-check"
12
+
href="https://codegen.com/settings/permissions"
13
+
>
14
+
Control what actions agents are allowed to perform in your organization.
15
+
</Card>
16
+
9
17
## Available Permissions
10
18
11
19
### Enable PR Creation
@@ -28,7 +36,7 @@ Control whether the codegen agent is able to create pull requests in your reposi
28
36
29
37
### Enable Rules Detection
30
38
31
-
Allow the agent to automatically detect and apply rules from various rule files in your repositories.
39
+
Allow the agent to automatically detect and apply rules from various rule files in your repositories. You can also configure manual repository rules at [codegen.com/settings/repo-rules](http://localhost:3001/settings/repo-rules).
32
40
33
41
**Supported rule file formats:**
34
42
@@ -90,48 +98,6 @@ Access your agent permissions at:
90
98
Control what actions agents are allowed to perform in your organization.
91
99
</Card>
92
100
93
-
## Permission Combinations
94
-
95
-
### Development Teams
96
-
97
-
```
98
-
✅ Enable PR Creation
99
-
✅ Enable Rules Detection
100
-
❌ Enforce Signed Commits (unless required)
101
-
```
102
-
103
-
Standard setup for most development teams wanting full agent capabilities.
104
-
105
-
### Security-Conscious Organizations
106
-
107
-
```
108
-
✅ Enable PR Creation
109
-
✅ Enable Rules Detection
110
-
✅ Enforce Signed Commits
111
-
```
112
-
113
-
Maximum security with full agent functionality and commit verification.
114
-
115
-
### Read-Only Advisory Mode
116
-
117
-
```
118
-
❌ Enable PR Creation
119
-
✅ Enable Rules Detection
120
-
❌ Enforce Signed Commits
121
-
```
122
-
123
-
Agents provide analysis and suggestions without making direct code changes.
124
-
125
-
### Compliance-First Approach
126
-
127
-
```
128
-
✅ Enable PR Creation
129
-
❌ Enable Rules Detection
130
-
✅ Enforce Signed Commits
131
-
```
132
-
133
-
Strict control with manual rule management and required commit signing.
0 commit comments