glastree_on_gitea

This commit is contained in:
2026-05-26 08:14:29 +02:00
commit 0bed099d05
9556 changed files with 1186307 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
declare(strict_types=1);
namespace Laravel\AgentDetector;
enum KnownAgent: string
{
case Cursor = 'cursor';
case Claude = 'claude';
case Cowork = 'cowork';
case Devin = 'devin';
case Replit = 'replit';
case Gemini = 'gemini';
case Codex = 'codex';
case V0 = 'v0';
case AugmentCli = 'augment-cli';
case Opencode = 'opencode';
case Amp = 'amp';
case Copilot = 'copilot';
case Antigravity = 'antigravity';
case Pi = 'pi';
case KiroCli = 'kiro-cli';
public function label(): string
{
return match ($this) {
self::AugmentCli => 'Augment CLI',
self::KiroCli => 'Kiro CLI',
self::V0 => 'v0',
default => ucfirst($this->value),
};
}
}