@@ -25,7 +25,7 @@ Relies on common helper functions in common.ps1
2525#>
2626param (
2727 [Parameter (Position = 0 )]
28- [ValidateSet (' claude' , ' gemini' , ' copilot' , ' cursor-agent' , ' qwen' , ' opencode' , ' codex' , ' windsurf' , ' kilocode' , ' auggie' , ' roo' , ' codebuddy' , ' amp' , ' q' )]
28+ [ValidateSet (' claude' , ' gemini' , ' copilot' , ' cursor-agent' , ' qwen' , ' opencode' , ' codex' , ' windsurf' , ' kilocode' , ' auggie' , ' roo' , ' codebuddy' , ' amp' , ' q' , ' bob ' )]
2929 [string ]$AgentType
3030)
3131
@@ -57,6 +57,7 @@ $ROO_FILE = Join-Path $REPO_ROOT '.roo/rules/specify-rules.md'
5757$CODEBUDDY_FILE = Join-Path $REPO_ROOT ' CODEBUDDY.md'
5858$AMP_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
5959$Q_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
60+ $BOB_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
6061
6162$TEMPLATE_FILE = Join-Path $REPO_ROOT ' .specify/templates/agent-file-template.md'
6263
@@ -382,7 +383,8 @@ function Update-SpecificAgent {
382383 ' codebuddy' { Update-AgentFile - TargetFile $CODEBUDDY_FILE - AgentName ' CodeBuddy CLI' }
383384 ' amp' { Update-AgentFile - TargetFile $AMP_FILE - AgentName ' Amp' }
384385 ' q' { Update-AgentFile - TargetFile $Q_FILE - AgentName ' Amazon Q Developer CLI' }
385- default { Write-Err " Unknown agent type '$Type '" ; Write-Err ' Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|q' ; return $false }
386+ ' bob' { Update-AgentFile - TargetFile $BOB_FILE - AgentName ' IBM Bob' }
387+ default { Write-Err " Unknown agent type '$Type '" ; Write-Err ' Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|q|bob' ; return $false }
386388 }
387389}
388390
@@ -401,6 +403,7 @@ function Update-AllExistingAgents {
401403 if (Test-Path $ROO_FILE ) { if (-not (Update-AgentFile - TargetFile $ROO_FILE - AgentName ' Roo Code' )) { $ok = $false }; $found = $true }
402404 if (Test-Path $CODEBUDDY_FILE ) { if (-not (Update-AgentFile - TargetFile $CODEBUDDY_FILE - AgentName ' CodeBuddy CLI' )) { $ok = $false }; $found = $true }
403405 if (Test-Path $Q_FILE ) { if (-not (Update-AgentFile - TargetFile $Q_FILE - AgentName ' Amazon Q Developer CLI' )) { $ok = $false }; $found = $true }
406+ if (Test-Path $BOB_FILE ) { if (-not (Update-AgentFile - TargetFile $BOB_FILE - AgentName ' IBM Bob' )) { $ok = $false }; $found = $true }
404407 if (-not $found ) {
405408 Write-Info ' No existing agent files found, creating default Claude file...'
406409 if (-not (Update-AgentFile - TargetFile $CLAUDE_FILE - AgentName ' Claude Code' )) { $ok = $false }
@@ -415,7 +418,7 @@ function Print-Summary {
415418 if ($NEW_FRAMEWORK ) { Write-Host " - Added framework: $NEW_FRAMEWORK " }
416419 if ($NEW_DB -and $NEW_DB -ne ' N/A' ) { Write-Host " - Added database: $NEW_DB " }
417420 Write-Host ' '
418- Write-Info ' Usage: ./update-agent-context.ps1 [-AgentType claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|q]'
421+ Write-Info ' Usage: ./update-agent-context.ps1 [-AgentType claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|q|bob ]'
419422}
420423
421424function Main {
0 commit comments