Skip to content

Commit 694de56

Browse files
author
pengjiahan.pjh
committed
resolve:conflict
2 parents f205fa3 + d068e1c commit 694de56

7 files changed

Lines changed: 42 additions & 13 deletions

File tree

.github/workflows/scripts/create-github-release.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ gh release create "$VERSION" \
4040
.genreleases/spec-kit-template-roo-ps-"$VERSION".zip \
4141
.genreleases/spec-kit-template-codebuddy-sh-"$VERSION".zip \
4242
.genreleases/spec-kit-template-codebuddy-ps-"$VERSION".zip \
43+
.genreleases/spec-kit-template-qoder-sh-"$VERSION".zip \
44+
.genreleases/spec-kit-template-qoder-ps-"$VERSION".zip \
4345
.genreleases/spec-kit-template-amp-sh-"$VERSION".zip \
4446
.genreleases/spec-kit-template-amp-ps-"$VERSION".zip \
4547
.genreleases/spec-kit-template-shai-sh-"$VERSION".zip \

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,9 @@ build_variant() {
202202
codebuddy)
203203
mkdir -p "$base_dir/.codebuddy/commands"
204204
generate_commands codebuddy md "\$ARGUMENTS" "$base_dir/.codebuddy/commands" "$script" ;;
205+
qoder)
206+
mkdir -p "$base_dir/.qoder/commands"
207+
generate_commands qoder md "\$ARGUMENTS" "$base_dir/.qoder/commands" "$script" ;;
205208
amp)
206209
mkdir -p "$base_dir/.agents/commands"
207210
generate_commands amp md "\$ARGUMENTS" "$base_dir/.agents/commands" "$script" ;;
@@ -217,7 +220,7 @@ build_variant() {
217220
}
218221

219222
# Determine agent list
220-
ALL_AGENTS=(claude gemini copilot cursor-agent qwen opencode windsurf codex kilocode auggie roo codebuddy amp shai q)
223+
ALL_AGENTS=(claude gemini copilot cursor-agent qwen opencode windsurf codex kilocode auggie roo codebuddy amp shai qoder q)
221224
ALL_SCRIPTS=(sh ps)
222225

223226
norm_list() {

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Specify supports multiple AI agents by generating agent-specific command files a
4343
| **Auggie CLI** | `.augment/rules/` | Markdown | `auggie` | Auggie CLI |
4444
| **Roo Code** | `.roo/rules/` | Markdown | N/A (IDE-based) | Roo Code IDE |
4545
| **CodeBuddy CLI** | `.codebuddy/commands/` | Markdown | `codebuddy` | CodeBuddy CLI |
46+
| **Qoder CLI** | `.qoder/commands/` | Markdown | `qoder` | Qoder CLI |
4647
| **Amazon Q Developer CLI** | `.amazonq/prompts/` | Markdown | `q` | Amazon Q Developer CLI |
4748
| **Amp** | `.agents/commands/` | Markdown | `amp` | Amp CLI |
4849
| **SHAI** | `.shai/commands/` | Markdown | `shai` | SHAI CLI |
@@ -311,6 +312,7 @@ Require a command-line tool to be installed:
311312
- **opencode**: `opencode` CLI
312313
- **Amazon Q Developer CLI**: `q` CLI
313314
- **CodeBuddy CLI**: `codebuddy` CLI
315+
- **Qoder CLI**: `qoder` CLI
314316
- **Amp**: `amp` CLI
315317
- **SHAI**: `shai` CLI
316318

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ Want to see Spec Kit in action? Watch our [video overview](https://www.youtube.c
136136

137137
| Agent | Support | Notes |
138138
|-----------------------------------------------------------|---------|---------------------------------------------------|
139+
| [Qoder CLI](https://qoder.com/cli) || |
139140
| [Claude Code](https://www.anthropic.com/claude-code) || |
140141
| [GitHub Copilot](https://code.visualstudio.com/) || |
141142
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) || |
@@ -161,14 +162,14 @@ The `specify` command supports the following options:
161162
| Command | Description |
162163
|-------------|----------------------------------------------------------------|
163164
| `init` | Initialize a new Specify project from the latest template |
164-
| `check` | Check for installed tools (`git`, `claude`, `gemini`, `code`/`code-insiders`, `cursor-agent`, `windsurf`, `qwen`, `opencode`, `codex`, `shai`) |
165+
| `check` | Check for installed tools (`git`, `claude`, `gemini`, `code`/`code-insiders`, `cursor-agent`, `windsurf`, `qwen`, `opencode`, `codex`, `shai`, `qoder`) |
165166

166167
### `specify init` Arguments & Options
167168

168169
| Argument/Option | Type | Description |
169170
|------------------------|----------|------------------------------------------------------------------------------|
170171
| `<project-name>` | Argument | Name for your new project directory (optional if using `--here`, or use `.` for current directory) |
171-
| `--ai` | Option | AI assistant to use: `claude`, `gemini`, `copilot`, `cursor-agent`, `qwen`, `opencode`, `codex`, `windsurf`, `kilocode`, `auggie`, `roo`, `codebuddy`, `amp`, `shai`, or `q` |
172+
| `--ai` | Option | AI assistant to use: `claude`, `gemini`, `copilot`, `cursor-agent`, `qwen`, `opencode`, `codex`, `windsurf`, `kilocode`, `auggie`, `roo`, `codebuddy`, `qoder`, `shai`, `amp`, or `q` |
172173
| `--script` | Option | Script variant to use: `sh` (bash/zsh) or `ps` (PowerShell) |
173174
| `--ignore-agent-tools` | Flag | Skip checks for AI agent tools like Claude Code |
174175
| `--no-git` | Flag | Skip git repository initialization |
@@ -190,6 +191,9 @@ specify init my-project --ai claude
190191
# Initialize with Cursor support
191192
specify init my-project --ai cursor-agent
192193

194+
# Initialize with Qoder support
195+
specify init my-project --ai qoder
196+
193197
# Initialize with Windsurf support
194198
specify init my-project --ai windsurf
195199

@@ -364,7 +368,7 @@ specify init . --force --ai claude
364368
specify init --here --force --ai claude
365369
```
366370

367-
The CLI will check if you have Claude Code, Gemini CLI, Cursor CLI, Qwen CLI, opencode, Codex CLI, or Amazon Q Developer CLI installed. If you do not, or you prefer to get the templates without checking for the right tools, use `--ignore-agent-tools` with your command:
371+
The CLI will check if you have Claude Code, Gemini CLI, Cursor CLI, Qwen CLI, opencode, Codex CLI, Qoder CLI, or Amazon Q Developer CLI installed. If you do not, or you prefer to get the templates without checking for the right tools, use `--ignore-agent-tools` with your command:
368372

369373
```bash
370374
specify init <project_name> --ai claude --ignore-agent-tools

scripts/bash/update-agent-context.sh

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
#
3131
# 5. Multi-Agent Support
3232
# - Handles agent-specific file paths and naming conventions
33-
# - Supports: Claude, Gemini, Copilot, Cursor, Qwen, opencode, Codex, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy CLI, Amp, SHAI, or Amazon Q Developer CLI
33+
# - Supports: Claude, Gemini, Copilot, Cursor, Qwen, opencode, Codex, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy CLI, Qoder CLI, Amp, SHAI, or Amazon Q Developer CLI
3434
# - Can update single agents or all existing agent files
3535
# - Creates default Claude file if no agent files exist
3636
#
3737
# Usage: ./update-agent-context.sh [agent_type]
38-
# Agent types: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|shai|q
38+
# Agent types: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|qoder|shai|q
3939
# Leave empty to update all existing agent files
4040

4141
set -e
@@ -70,6 +70,7 @@ KILOCODE_FILE="$REPO_ROOT/.kilocode/rules/specify-rules.md"
7070
AUGGIE_FILE="$REPO_ROOT/.augment/rules/specify-rules.md"
7171
ROO_FILE="$REPO_ROOT/.roo/rules/specify-rules.md"
7272
CODEBUDDY_FILE="$REPO_ROOT/CODEBUDDY.md"
73+
QODER_FILE="$REPO_ROOT/QODER.md"
7374
AMP_FILE="$REPO_ROOT/AGENTS.md"
7475
SHAI_FILE="$REPO_ROOT/SHAI.md"
7576
Q_FILE="$REPO_ROOT/AGENTS.md"
@@ -616,6 +617,9 @@ update_specific_agent() {
616617
codebuddy)
617618
update_agent_file "$CODEBUDDY_FILE" "CodeBuddy CLI"
618619
;;
620+
qoder)
621+
update_agent_file "$QODER_FILE" "Qoder CLI"
622+
;;
619623
amp)
620624
update_agent_file "$AMP_FILE" "Amp"
621625
;;
@@ -627,7 +631,7 @@ update_specific_agent() {
627631
;;
628632
*)
629633
log_error "Unknown agent type '$agent_type'"
630-
log_error "Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|amp|shai|q"
634+
log_error "Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|qoder|shai|amp|q"
631635
exit 1
632636
;;
633637
esac
@@ -697,6 +701,11 @@ update_all_existing_agents() {
697701
found_agent=true
698702
fi
699703

704+
if [[ -f "$QODER_FILE" ]]; then
705+
update_agent_file "$QODER_FILE" "Qoder CLI"
706+
found_agent=true
707+
fi
708+
700709
if [[ -f "$Q_FILE" ]]; then
701710
update_agent_file "$Q_FILE" "Amazon Q Developer CLI"
702711
found_agent=true
@@ -726,7 +735,7 @@ print_summary() {
726735

727736
echo
728737

729-
log_info "Usage: $0 [claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|codebuddy|shai|q]"
738+
log_info "Usage: $0 [claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|codebuddy|qoder|shai|q]"
730739
}
731740

732741
#==============================================================================

scripts/powershell/update-agent-context.ps1

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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)
12+
5. Multi-Agent Support (claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, roo, qoder, codebuddy, amp, shai, q)
1313
1414
.PARAMETER AgentType
1515
Optional 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
#>
2626
param(
2727
[Parameter(Position=0)]
28-
[ValidateSet('claude','gemini','copilot','cursor-agent','qwen','opencode','codex','windsurf','kilocode','auggie','roo','codebuddy','amp','shai','q')]
28+
[ValidateSet('claude','gemini','copilot','cursor-agent','qwen','opencode','codex','windsurf','kilocode','auggie','roo','codebuddy','qoder,'amp','shai','q')]
2929
[string]$AgentType
3030
)
3131
@@ -55,6 +55,7 @@ $KILOCODE_FILE = Join-Path $REPO_ROOT '.kilocode/rules/specify-rules.md'
5555
$AUGGIE_FILE = Join-Path $REPO_ROOT '.augment/rules/specify-rules.md'
5656
$ROO_FILE = Join-Path $REPO_ROOT '.roo/rules/specify-rules.md'
5757
$CODEBUDDY_FILE = Join-Path $REPO_ROOT 'CODEBUDDY.md'
58+
$QODER_FILE = Join-Path $REPO_ROOT 'QODER.md'
5859
$AMP_FILE = Join-Path $REPO_ROOT 'AGENTS.md'
5960
$SHAI_FILE = Join-Path $REPO_ROOT 'SHAI.md'
6061
$Q_FILE = Join-Path $REPO_ROOT 'AGENTS.md'
@@ -381,10 +382,11 @@ function Update-SpecificAgent {
381382
'auggie' { Update-AgentFile -TargetFile $AUGGIE_FILE -AgentName 'Auggie CLI' }
382383
'roo' { Update-AgentFile -TargetFile $ROO_FILE -AgentName 'Roo Code' }
383384
'codebuddy' { Update-AgentFile -TargetFile $CODEBUDDY_FILE -AgentName 'CodeBuddy CLI' }
385+
'qoder' { Update-AgentFile -TargetFile $QODER_FILE -AgentName 'Qoder CLI' }
384386
'amp' { Update-AgentFile -TargetFile $AMP_FILE -AgentName 'Amp' }
385387
'shai' { Update-AgentFile -TargetFile $SHAI_FILE -AgentName 'SHAI' }
386388
'q' { Update-AgentFile -TargetFile $Q_FILE -AgentName 'Amazon Q Developer CLI' }
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|shai|q'; return $false }
389+
default { Write-Err "Unknown agent type '$Type'"; Write-Err 'Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|qoder|amp|shai|q'; return $false }
388390
}
389391
}
390392

@@ -402,6 +404,7 @@ function Update-AllExistingAgents {
402404
if (Test-Path $AUGGIE_FILE) { if (-not (Update-AgentFile -TargetFile $AUGGIE_FILE -AgentName 'Auggie CLI')) { $ok = $false }; $found = $true }
403405
if (Test-Path $ROO_FILE) { if (-not (Update-AgentFile -TargetFile $ROO_FILE -AgentName 'Roo Code')) { $ok = $false }; $found = $true }
404406
if (Test-Path $CODEBUDDY_FILE) { if (-not (Update-AgentFile -TargetFile $CODEBUDDY_FILE -AgentName 'CodeBuddy CLI')) { $ok = $false }; $found = $true }
407+
if (Test-Path $QODER_FILE) { if (-not (Update-AgentFile -TargetFile $QODER_FILE -AgentName 'Qoder CLI')) { $ok = $false }; $found = $true }
405408
if (Test-Path $SHAI_FILE) { if (-not (Update-AgentFile -TargetFile $SHAI_FILE -AgentName 'SHAI')) { $ok = $false }; $found = $true }
406409
if (Test-Path $Q_FILE) { if (-not (Update-AgentFile -TargetFile $Q_FILE -AgentName 'Amazon Q Developer CLI')) { $ok = $false }; $found = $true }
407410
if (-not $found) {
@@ -418,7 +421,7 @@ function Print-Summary {
418421
if ($NEW_FRAMEWORK) { Write-Host " - Added framework: $NEW_FRAMEWORK" }
419422
if ($NEW_DB -and $NEW_DB -ne 'N/A') { Write-Host " - Added database: $NEW_DB" }
420423
Write-Host ''
421-
Write-Info 'Usage: ./update-agent-context.ps1 [-AgentType claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|q]'
424+
Write-Info 'Usage: ./update-agent-context.ps1 [-AgentType claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|qoder|amp|shai|q]'
422425
}
423426

424427
function Main {

src/specify_cli/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,12 @@ def _format_rate_limit_error(status_code: int, headers: httpx.Headers, url: str)
190190
"install_url": "https://www.codebuddy.ai/cli",
191191
"requires_cli": True,
192192
},
193+
"qoder": {
194+
"name": "Qoder CLI",
195+
"folder": ".qoder/",
196+
"install_url": "https://qoder.com/cli",
197+
"requires_cli": True,
198+
},
193199
"roo": {
194200
"name": "Roo Code",
195201
"folder": ".roo/",
@@ -933,7 +939,7 @@ def ensure_executable_scripts(project_path: Path, tracker: StepTracker | None =
933939
@app.command()
934940
def init(
935941
project_name: str = typer.Argument(None, help="Name for your new project directory (optional if using --here, or use '.' for current directory)"),
936-
ai_assistant: str = typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, amp, shai, or q"),
942+
ai_assistant: str = typer.Option(None, "--ai", help="AI assistant to use: claude, gemini, copilot, cursor-agent, qwen, opencode, codex, windsurf, kilocode, auggie, codebuddy, qoder, amp, shai, or q"),
937943
script_type: str = typer.Option(None, "--script", help="Script type to use: sh or ps"),
938944
ignore_agent_tools: bool = typer.Option(False, "--ignore-agent-tools", help="Skip checks for AI agent tools like Claude Code"),
939945
no_git: bool = typer.Option(False, "--no-git", help="Skip git repository initialization"),

0 commit comments

Comments
 (0)