Skip to content

Commit 8d552e6

Browse files
author
pengjiahan.pjh
committed
feat:qoder agent
1 parent ad3bb1a commit 8d552e6

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/scripts/create-release-packages.ps1

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
.PARAMETER Agents
1616
Comma or space separated subset of agents to build (default: all)
17-
Valid agents: claude, gemini, copilot, cursor-agent, qwen, opencode, windsurf, codex, kilocode, auggie, roo, codebuddy, amp, q, bob
17+
Valid agents: claude, gemini, copilot, cursor-agent, qwen, opencode, windsurf, codex, kilocode, auggie, roo, codebuddy, amp, q, bob, qoder
1818
1919
.PARAMETER Scripts
2020
Comma or space separated subset of script types to build (default: both)
@@ -343,6 +343,10 @@ function Build-Variant {
343343
$cmdDir = Join-Path $baseDir ".bob/commands"
344344
Generate-Commands -Agent 'bob' -Extension 'md' -ArgFormat '$ARGUMENTS' -OutputDir $cmdDir -ScriptVariant $Script
345345
}
346+
'qoder' {
347+
$cmdDir = Join-Path $baseDir ".qoder/commands"
348+
Generate-Commands -Agent 'qoder' -Extension 'md' -ArgFormat '$ARGUMENTS' -OutputDir $cmdDir -ScriptVariant $Script
349+
}
346350
}
347351

348352
# Create zip archive
@@ -352,7 +356,7 @@ function Build-Variant {
352356
}
353357

354358
# Define all agents and scripts
355-
$AllAgents = @('claude', 'gemini', 'copilot', 'cursor-agent', 'qwen', 'opencode', 'windsurf', 'codex', 'kilocode', 'auggie', 'roo', 'codebuddy', 'amp', 'q', 'bob')
359+
$AllAgents = @('claude', 'gemini', 'copilot', 'cursor-agent', 'qwen', 'opencode', 'windsurf', 'codex', 'kilocode', 'auggie', 'roo', 'codebuddy', 'amp', 'q', 'bob', 'qoder')
356360
$AllScripts = @('sh', 'ps')
357361

358362
function Normalize-List {
@@ -417,4 +421,4 @@ foreach ($agent in $AgentList) {
417421
Write-Host "`nArchives in ${GenReleasesDir}:"
418422
Get-ChildItem -Path $GenReleasesDir -Filter "spec-kit-template-*-${Version}.zip" | ForEach-Object {
419423
Write-Host " $($_.Name)"
420-
}
424+
}

0 commit comments

Comments
 (0)