@@ -9,7 +9,7 @@ Mirrors the behavior of scripts/bash/update-agent-context.sh:
99 2. Plan Data Extraction
1010 3. Agent File Management (create from template or update existing)
1111 4. Content Generation (technology stack, recent changes, timestamp)
12- 5. Multi-Agent Support (claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, roo, codebuddy, amp, shai, q, bob, qoder)
12+ 5. Multi-Agent Support (claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, roo, codebuddy, amp, shai, tabnine, q, bob, qoder)
1313
1414. PARAMETER AgentType
1515Optional agent key to update a single agent. If omitted, updates all existing agent files (creating a default Claude file if none exist).
@@ -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' , ' shai' , ' q' , ' bob' , ' qoder' )]
28+ [ValidateSet (' claude' , ' gemini' , ' copilot' , ' cursor-agent' , ' qwen' , ' opencode' , ' codex' , ' windsurf' , ' kilocode' , ' auggie' , ' roo' , ' codebuddy' , ' amp' , ' shai' , ' tabnine ' , ' q' , ' bob' , ' qoder' )]
2929 [string ]$AgentType
3030)
3131
@@ -58,6 +58,7 @@ $CODEBUDDY_FILE = Join-Path $REPO_ROOT 'CODEBUDDY.md'
5858$QODER_FILE = Join-Path $REPO_ROOT ' QODER.md'
5959$AMP_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
6060$SHAI_FILE = Join-Path $REPO_ROOT ' SHAI.md'
61+ $TABNINE_FILE = Join-Path $REPO_ROOT ' TABNINE.md'
6162$Q_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
6263$BOB_FILE = Join-Path $REPO_ROOT ' AGENTS.md'
6364
@@ -386,9 +387,10 @@ function Update-SpecificAgent {
386387 ' qoder' { Update-AgentFile - TargetFile $QODER_FILE - AgentName ' Qoder CLI' }
387388 ' amp' { Update-AgentFile - TargetFile $AMP_FILE - AgentName ' Amp' }
388389 ' shai' { Update-AgentFile - TargetFile $SHAI_FILE - AgentName ' SHAI' }
390+ ' tabnine' { Update-AgentFile - TargetFile $TABNINE_FILE - AgentName ' Tabnine CLI' }
389391 ' q' { Update-AgentFile - TargetFile $Q_FILE - AgentName ' Amazon Q Developer CLI' }
390392 ' bob' { Update-AgentFile - TargetFile $BOB_FILE - AgentName ' IBM Bob' }
391- default { Write-Err " Unknown agent type '$Type '" ; Write-Err ' Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|q|bob|qoder' ; return $false }
393+ default { Write-Err " Unknown agent type '$Type '" ; Write-Err ' Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|tabnine| q|bob|qoder' ; return $false }
392394 }
393395}
394396
@@ -408,6 +410,7 @@ function Update-AllExistingAgents {
408410 if (Test-Path $CODEBUDDY_FILE ) { if (-not (Update-AgentFile - TargetFile $CODEBUDDY_FILE - AgentName ' CodeBuddy CLI' )) { $ok = $false }; $found = $true }
409411 if (Test-Path $QODER_FILE ) { if (-not (Update-AgentFile - TargetFile $QODER_FILE - AgentName ' Qoder CLI' )) { $ok = $false }; $found = $true }
410412 if (Test-Path $SHAI_FILE ) { if (-not (Update-AgentFile - TargetFile $SHAI_FILE - AgentName ' SHAI' )) { $ok = $false }; $found = $true }
413+ if (Test-Path $TABNINE_FILE ) { if (-not (Update-AgentFile - TargetFile $TABNINE_FILE - AgentName ' Tabnine CLI' )) { $ok = $false }; $found = $true }
411414 if (Test-Path $Q_FILE ) { if (-not (Update-AgentFile - TargetFile $Q_FILE - AgentName ' Amazon Q Developer CLI' )) { $ok = $false }; $found = $true }
412415 if (Test-Path $BOB_FILE ) { if (-not (Update-AgentFile - TargetFile $BOB_FILE - AgentName ' IBM Bob' )) { $ok = $false }; $found = $true }
413416 if (-not $found ) {
0 commit comments