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
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Cody is an AI Agent that allows you to run AI workflows on-demand, or on a schedule that you define, right inside your Laravel app.
8
+
Cody is an AI Agent that allows you to run AI workflows on-demand, or on a schedule that you define, right inside your
9
+
Laravel app.
9
10
10
11
## Features
11
12
@@ -40,7 +41,8 @@ codex mcp add --url https://mcp.linear.app/mcp linear
40
41
codex mcp login linear -c experimental_use_rmcp_client=true
41
42
```
42
43
43
-
The project `composer.json` should include a Cody setup script, which is executed on git worktrees to get the branch ready for agent workflows. For example:
44
+
The project `composer.json` should include a Cody setup script, which is executed on git worktrees to get the branch
45
+
ready for agent workflows. For example:
44
46
45
47
```json
46
48
{
@@ -77,25 +79,20 @@ There are two main ways to use Cody Agent; on-demand, or on a schedule.
77
79
78
80
Coding can be invoked with `php artisan cody <branch-name> --prompt='<prompt>'`.
79
81
80
-
For example:
82
+
For example:
81
83
82
84
```bash
83
85
php artisan cody migrate-to-wayfinder --prompt='Switch from ziggy.js to Laravel Wayfinder. Update all references.'
84
86
```
85
87
86
-
This command will:
88
+
This command will:
87
89
88
90
1. Create a new git worktree at `../<app-name>-migrate-to-wayfinder`
89
91
2. Call `composer ai` script on the worktree
90
92
3. Call Codex CLI with the prompt to complete the task
91
93
4. Again call Codex to create a succint commit message and PR description
92
94
5. Commit, push, and create a PR on GitHub using the PR template (when available)
93
95
94
-
```php
95
-
$cody = new Codinglabs\Cody();
96
-
echo $cody->echoPhrase('Hello, Codinglabs!');
97
-
```
98
-
99
96
## Testing
100
97
101
98
```bash
@@ -106,13 +103,9 @@ composer test
106
103
107
104
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
108
105
109
-
## Contributing
110
-
111
-
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
112
-
113
106
## Security Vulnerabilities
114
107
115
-
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
108
+
Create an issue to notify us of any security vulnerabilities.
0 commit comments