This package is Laravel version of GitHub Copilot CLI SDK, which allows you to interact with GitHub Copilot CLI programmatically from your Laravel applications.
- PHP >= 8.4
- Laravel >= 12.x
- Copilot CLI Latest version
composer require revolution/laravel-copilot-sdkOptional operation
COPILOT_CLI_PATH=copilotInstead of starting a new CLI process for each request, you can connect to an existing Copilot CLI server running in TCP mode. This is useful for:
- Laravel Forge/Cloud deployments with background process management
- Sharing a single CLI instance across multiple Laravel processes
- Better performance with persistent connections
Start the Copilot CLI server:
copilot --headless --port 12345Configure your .env:
COPILOT_URL=127.0.0.1:12345When COPILOT_URL is set, the SDK will connect to the existing server instead of starting a new CLI process.
php artisan vendor:publish --tag=copilot-configcomposer remove revolution/laravel-copilot-sdkWe provide a high-level API that uses a Laravel Facade on top of a layer that replicates the official SDK.
This should be sufficient for general use.
Artisan commands, controllers, jobs... the SDK can be used anywhere in Laravel where you can invoke the Copilot CLI.
use Revolution\Copilot\Facades\Copilot;
$response = Copilot::run(prompt: 'Tell me something about Laravel.');
dump($response->content());use Revolution\Copilot\Contracts\CopilotSession;
use Revolution\Copilot\Facades\Copilot;
$content = Copilot::start(function (CopilotSession $session) {
dump('Starting Copilot session: '.$session->id());
$response = $session->sendAndWait(prompt: 'Tell me something about PHP.');
dump($response->content());
$response = $session->sendAndWait(prompt: 'Tell me something about Laravel.');
dump($response->content());
return $response->content();
});
dump($content);Alternatively, you can use the copilot() helper function.
// Don't forget to import the function
use function Revolution\Copilot\copilot;
// If you specify a prompt as a string, it is the same as Copilot::run().
$response = copilot('Tell me something about Laravel.');
// If you pass a closure, it is the same as Copilot::start().
copilot(function (CopilotSession $session) {
$response = $session->sendAndWait(prompt: 'Tell me something about PHP.');
});
// If you don't pass anything, it's the same as Facade.
dump(copilot()->client()->ping());For more than simple use, use the Copilot Facade above.
Provide Laravel way testing support with Copilot::fake().
Copilot::fake() is a mock for features used from the Copilot Facade. Other features are not mocked.
use Revolution\Copilot\Facades\Copilot;
Copilot::fake('2');
$response = Copilot::run(prompt: '1 + 1');
// Pest
expect($response->content())->toBe('2');
// PHPUnit
$this->assertEquals('2', $response->content());When calling multiple times with Copilot::start()
use Revolution\Copilot\Facades\Copilot;
use Revolution\Copilot\Contracts\CopilotSession;
Copilot::fake([
'*' => Copilot::sequence()
->push(Copilot::response('2'))
->push(Copilot::response('4')),
]);
Copilot::start(function (CopilotSession $session) use (&$response1, &$response2) {
$response1 = $session->sendAndWait(prompt: '1 + 1');
$response2 = $session->sendAndWait(prompt: '2 + 2');
});
expect($response1->content())->toBe('2');Assert that a specific prompt was called.
Copilot::assertPrompt('1 + *');Assert that a prompt was not called.
Copilot::assertNotPrompt('1 + *');Assert the number of prompts called.
Copilot::assertPromptCount(3);Assert that no prompts were called.
Copilot::assertNothingSent();Prevent all JSON-RPC requests. If called, an exception Revolution\Copilot\Exceptions\StrayRequestException is thrown.
Copilot::preventStrayRequests();When you want to allow only some commands.
Copilot::preventStrayRequests(allow: ['ping']);Stop prevention.
Copilot::preventStrayRequests(false);Only JSON-RPC requests are prevented, so starting a client is not prevented.
Most of the English documentation is included in the official SDK, so we won't provide much here. README and Getting Started Guide are provided in English.
Only Japanese documentation is available in docs/jp. Ask Copilot!!
MIT