Last active 5 hours ago

更新 Vibe Coding CLI 工具

jetsung revised this gist 5 months ago. Go to revision

1 file changed, 2 insertions

vibe-coding.sh

@@ -10,6 +10,8 @@ cli() {
10 10 npm install -g @iflow-ai/iflow-cli
11 11
12 12 npm install -g @qwen-code/qwen-code
13 +
14 + npm install -g @tencent-ai/codebuddy-code
13 15 }
14 16
15 17 spec() {

jetsung revised this gist 5 months ago. Go to revision

1 file changed, 1 insertion, 1 deletion

vibe-coding.sh

@@ -21,7 +21,7 @@ spec() {
21 21 binary_list() {
22 22 urls=(
23 23 "https://opencode.ai/install"
24 - "https://claude.ai/install.sh"
24 + "https://filetas.asfd.cn/claude.ai/install.sh"
25 25 )
26 26
27 27 for url in "${urls[@]}"; do

jetsung revised this gist 5 months ago. Go to revision

1 file changed, 1 insertion, 1 deletion

vibe-coding.sh

@@ -1,7 +1,6 @@
1 1 #!/usr/bin/env bash
2 2
3 3 cli() {
4 - npm install -g @anthropic-ai/claude-code
5 4 npm install -g @musistudio/claude-code-router
6 5
7 6 npm install -g @openai/codex
@@ -22,6 +21,7 @@ spec() {
22 21 binary_list() {
23 22 urls=(
24 23 "https://opencode.ai/install"
24 + "https://claude.ai/install.sh"
25 25 )
26 26
27 27 for url in "${urls[@]}"; do

jetsung revised this gist 5 months ago. Go to revision

1 file changed, 12 insertions

vibe-coding.sh

@@ -19,9 +19,21 @@ spec() {
19 19 uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
20 20 }
21 21
22 + binary_list() {
23 + urls=(
24 + "https://opencode.ai/install"
25 + )
26 +
27 + for url in "${urls[@]}"; do
28 + echo "execute: curl -L fx4.cn/x | bash -s -- $url | bash"
29 + curl -L fx4.cn/x | bash -s -- "$url" | bash
30 + done
31 + }
32 +
22 33 main() {
23 34 cli
24 35 spec
36 + binary_list
25 37 }
26 38
27 39 main "$@"

jetsung revised this gist 5 months ago. Go to revision

1 file changed, 27 insertions

vibe-coding.sh(file created)

@@ -0,0 +1,27 @@
1 + #!/usr/bin/env bash
2 +
3 + cli() {
4 + npm install -g @anthropic-ai/claude-code
5 + npm install -g @musistudio/claude-code-router
6 +
7 + npm install -g @openai/codex
8 +
9 + npm install -g @google/gemini-cli
10 +
11 + npm install -g @iflow-ai/iflow-cli
12 +
13 + npm install -g @qwen-code/qwen-code
14 + }
15 +
16 + spec() {
17 + npm install -g @fission-ai/openspec
18 +
19 + uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
20 + }
21 +
22 + main() {
23 + cli
24 + spec
25 + }
26 +
27 + main "$@"
Newer Older