Skip to content

Commit 1b2db81

Browse files
committed
Merge branch 'fix/private-github-release-bundle-downloads'
Fixes private/SSO-protected GitHub release bundle downloads by resolving browser release URLs to GitHub REST API asset URLs, with full GHES support.
2 parents ed10b32 + a4ce981 commit 1b2db81

336 files changed

Lines changed: 47465 additions & 10141 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@
4848
"openai.chatgpt",
4949
// Kilo Code
5050
"kilocode.Kilo-Code",
51-
// Roo Code
52-
"RooVeterinaryInc.roo-cline",
5351
// Claude Code
5452
"anthropic.claude-code"
5553
],

.devcontainer/post-create.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ run_command "npm install -g @jetbrains/junie-cli@latest"
5656
echo "✅ Done"
5757

5858
echo -e "\n🤖 Installing Pi Coding Agent..."
59-
run_command "npm install -g @mariozechner/pi-coding-agent@latest"
59+
run_command "npm install -g @earendil-works/pi-coding-agent@latest"
6060
echo "✅ Done"
6161

6262
echo -e "\n🤖 Installing Kiro CLI..."
@@ -88,9 +88,9 @@ fi
8888
run_command "$kiro_binary --help > /dev/null"
8989
echo "✅ Done"
9090

91-
echo -e "\n🤖 Installing Kimi CLI..."
91+
echo -e "\n🤖 Installing Kimi Code CLI..."
9292
# https://code.kimi.com
93-
run_command "pipx install kimi-cli"
93+
run_command "npm install -g @moonshot-ai/kimi-code@latest"
9494
echo "✅ Done"
9595

9696
echo -e "\n🤖 Installing CodeBuddy CLI..."

.editorconfig

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
charset = utf-8
8+
indent_style = space
9+
indent_size = 4
10+
11+
[*.{yml,yaml}]
12+
indent_size = 2
13+
14+
[*.{json,jsonc}]
15+
indent_size = 2
16+
17+
[*.md]
18+
indent_size = 2
19+
trim_trailing_whitespace = false
20+
21+
[*.{sh,bash}]
22+
indent_size = 4
23+
24+
[*.{ps1,psm1,psd1}]
25+
indent_size = 4
26+
27+
[Makefile]
28+
indent_style = tab

.gitattributes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
* text=auto eol=lf
22

3-
.github/workflows/*.lock.yml linguist-generated=true merge=ours -whitespace
3+
.github/workflows/*.lock.yml linguist-generated=true merge=ours -whitespace
4+
# The project constitution is the one dogfooding artifact carried forward.
5+
# Keep it exempt from git's whitespace checks (git diff --check / CI) since its
6+
# generated formatting is not hand-edited.
7+
.specify/memory/constitution.md -whitespace

.github/ISSUE_TEMPLATE/agent_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
Thanks for requesting a new agent! Before submitting, please check if the agent is already supported.
1010
11-
**Currently supported agents**: Claude Code, Gemini CLI, GitHub Copilot, Cursor, Qwen Code, opencode, Codex CLI, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy, Qoder CLI, Kiro CLI, Amp, SHAI, Tabnine CLI, Antigravity, IBM Bob, Mistral Vibe, Kimi Code, Trae, Pi Coding Agent, iFlow CLI, Devin for Terminal
11+
**Currently supported agents**: Amp, Antigravity, Auggie CLI, Claude Code, Cline, CodeBuddy, Codex CLI, Cursor, Devin for Terminal, Firebender, Forge, Gemini CLI, GitHub Copilot, Goose, Hermes Agent, IBM Bob, Junie, Kilo Code, Kimi Code, Kiro CLI, Lingma, Mistral Vibe, Oh My Pi, opencode, Pi Coding Agent, Qoder CLI, Qwen Code, RovoDev ACLI, SHAI, Tabnine CLI, Trae, ZCode, Zed
1212
1313
- type: input
1414
id: agent-name

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,39 @@ body:
6262
label: AI Agent
6363
description: Which AI agent are you using?
6464
options:
65+
- Amp
66+
- Antigravity
67+
- Auggie CLI
6568
- Claude Code
69+
- Cline
70+
- CodeBuddy
71+
- Codex CLI
72+
- Cursor
73+
- Devin for Terminal
74+
- Firebender
75+
- Forge
6676
- Gemini CLI
6777
- GitHub Copilot
68-
- Cursor
69-
- Qwen Code
70-
- opencode
71-
- Codex CLI
72-
- Windsurf
78+
- Goose
79+
- Hermes Agent
80+
- IBM Bob
81+
- Junie
7382
- Kilo Code
74-
- Auggie CLI
75-
- Roo Code
76-
- CodeBuddy
77-
- Qoder CLI
83+
- Kimi Code
7884
- Kiro CLI
79-
- Amp
85+
- Lingma
86+
- Mistral Vibe
87+
- Oh My Pi
88+
- opencode
89+
- Pi Coding Agent
90+
- Qoder CLI
91+
- Qwen Code
92+
- RovoDev ACLI
8093
- SHAI
81-
- IBM Bob
82-
- Antigravity
94+
- Tabnine CLI
95+
- Trae
96+
- ZCode
97+
- Zed
8398
- Not applicable
8499
validations:
85100
required: true

0 commit comments

Comments
 (0)