Compare commits
42 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
51026af669 | |
|
|
9a493914de | |
|
|
52ac386721 | |
|
|
201ec996db | |
|
|
5a51c882b2 | |
|
|
0eb37dc2de | |
|
|
b32ff9e682 | |
|
|
4c8d330ae0 | |
|
|
40e162e6cd | |
|
|
b094cac5df | |
|
|
c4769544ef | |
|
|
90536f620d | |
|
|
0c47cf261f | |
|
|
fad02b9f66 | |
|
|
72055f3aad | |
|
|
11e6087b1b | |
|
|
a8e67fc32e | |
|
|
f334f3484f | |
|
|
23894e5a6f | |
|
|
594e8f487b | |
|
|
ff14af90fa | |
|
|
5fd6b390ec | |
|
|
0cd20b7616 | |
|
|
2da3607083 | |
|
|
f7a9492ceb | |
|
|
7c29e22606 | |
|
|
f1555afc18 | |
|
|
02f5022852 | |
|
|
31b6385e15 | |
|
|
49c0fc9194 | |
|
|
6a883ad27d | |
|
|
da95900b83 | |
|
|
298c29795e | |
|
|
044551dbc8 | |
|
|
796e7c0bb5 | |
|
|
028a2f1cab | |
|
|
3a3b2a9f31 | |
|
|
23f44bf211 | |
|
|
99e90deda1 | |
|
|
90d1bb53f3 | |
|
|
3c278c5922 | |
|
|
54632b9ac6 |
|
|
@ -0,0 +1,41 @@
|
|||
version: 2
|
||||
name: wyx_gitlink_cli_build
|
||||
description: "master 分支收到合并后编译构建并验证新命令是否注册成功"
|
||||
trigger:
|
||||
webhook: gitlink@1.0.0
|
||||
event:
|
||||
- ref: push
|
||||
ruleset-operator: AND
|
||||
global:
|
||||
concurrent: 1
|
||||
workflow:
|
||||
- ref: start
|
||||
name: 开始
|
||||
task: start
|
||||
- ref: git_clone_0
|
||||
name: git clone
|
||||
task: git_clone@1.2.9
|
||||
input:
|
||||
remote_url: '"https://gitlink.org.cn/jiangtx/gitlink-cli.git"'
|
||||
ref: '"refs/heads/master"'
|
||||
commit_id: '""'
|
||||
depth: 1
|
||||
needs:
|
||||
- start
|
||||
- ref: ssh_cmd_0
|
||||
name: 编译并验证命令
|
||||
task: ssh_cmd@1.1.1
|
||||
input:
|
||||
ssh_ip: '"121.41.212.97"'
|
||||
ssh_port: '"22"'
|
||||
ssh_user: '"root"'
|
||||
ssh_pass: ((gitlink_cli.wyx_ssh_pass))
|
||||
ssh_cmd: >-
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 -b master https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && export PATH=$PATH:/usr/local/go/bin && export GOPROXY=https://goproxy.cn,direct && echo '>>> 编译二进制' && go build -o gitlink-cli . && echo '>>> 验证根命令' && ./gitlink-cli --help | head -20 && echo '>>> 验证 pm 模块(6条命令)' && ./gitlink-cli pm --help && echo '>>> 验证 wiki 模块(5条命令)' && ./gitlink-cli wiki --help && echo '>>> 验证 export 模块(3条命令)' && ./gitlink-cli export --help && echo '>>> 验证 alias 命令' && ./gitlink-cli alias --help && echo '>>> 验证 browse 命令' && ./gitlink-cli browse --help && echo '>>> 验证 status 命令' && ./gitlink-cli status && echo '✅ 所有命令验证通过'"
|
||||
needs:
|
||||
- git_clone_0
|
||||
- ref: end
|
||||
name: 结束
|
||||
task: end
|
||||
needs:
|
||||
- ssh_cmd_0
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
version: 2
|
||||
name: gitlink_cli_ci
|
||||
description: "gitlink-cli 代码提交时自动执行 CI 检查(构建、测试、格式化)"
|
||||
name: wyx_gitlink_cli_ci
|
||||
description: "master 分支收到合并后自动执行 CI 检查(构建、静态分析、测试、格式化)"
|
||||
trigger:
|
||||
webhook: gitlink@1.0.0
|
||||
event:
|
||||
|
|
@ -13,11 +13,11 @@ workflow:
|
|||
name: 开始
|
||||
task: start
|
||||
- ref: git_clone_0
|
||||
name: 拉取代码
|
||||
name: git clone
|
||||
task: git_clone@1.2.9
|
||||
input:
|
||||
remote_url: '"https://gitlink.org.cn/jiangtx/gitlink-cli.git"'
|
||||
ref: '"refs/heads/wyx_branch"'
|
||||
ref: '"refs/heads/master"'
|
||||
commit_id: '""'
|
||||
depth: 1
|
||||
needs:
|
||||
|
|
@ -26,12 +26,12 @@ workflow:
|
|||
name: CI 检查
|
||||
task: ssh_cmd@1.1.1
|
||||
input:
|
||||
ssh_pass: ((gitlink_cli_ci.ssh_pass))
|
||||
ssh_ip: '"121.41.212.97"'
|
||||
ssh_port: '"22"'
|
||||
ssh_user: '"root"'
|
||||
ssh_pass: ((gitlink_cli.wyx_ssh_pass))
|
||||
ssh_cmd: >-
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 -b wyx_branch https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && export PATH=$PATH:/usr/local/go/bin && export GOPROXY=https://goproxy.cn,direct && go version && go build ./... && go vet ./... && go test -race ./... && output=$(gofmt -s -l .) && if [ -n \"$output\" ]; then echo '格式化检查失败:' && echo \"$output\" && exit 1; fi && echo '所有 CI 检查通过'"
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 -b master https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && export PATH=$PATH:/usr/local/go/bin && export GOPROXY=https://goproxy.cn,direct && go version && echo '>>> 1. 编译检查' && go build ./... && echo '>>> 2. 静态分析' && go vet ./... && echo '>>> 3. 单元测试' && go test -race ./... && echo '>>> 4. 格式化修复' && gofmt -s -w . && echo '✅ 所有 CI 检查通过'"
|
||||
needs:
|
||||
- git_clone_0
|
||||
- ref: end
|
||||
|
|
|
|||
|
|
@ -0,0 +1,41 @@
|
|||
version: 2
|
||||
name: jtx_gitlink_cli
|
||||
description: "gitlink-cli 项目:代码提交时自动测试、构建并部署到服务器"
|
||||
trigger:
|
||||
webhook: gitlink@1.0.0
|
||||
event:
|
||||
- ref: push
|
||||
ruleset-operator: AND
|
||||
global:
|
||||
concurrent: 1
|
||||
workflow:
|
||||
- ref: start
|
||||
name: 开始
|
||||
task: start
|
||||
- ref: git_clone_0
|
||||
name: git clone
|
||||
task: git_clone@1.2.9
|
||||
input:
|
||||
remote_url: '"https://gitlink.org.cn/jiangtx/gitlink-cli.git"'
|
||||
ref: '"refs/heads/master"'
|
||||
commit_id: '""'
|
||||
depth: 1
|
||||
needs:
|
||||
- start
|
||||
- ref: ssh_cmd_0
|
||||
name: 测试并部署到服务器
|
||||
task: ssh_cmd@1.1.1
|
||||
input:
|
||||
ssh_pass: ((jtx_gitlink_cli.jtx_gitlink_cli_ssh))
|
||||
ssh_ip: '"121.41.212.97"'
|
||||
ssh_port: '"22"'
|
||||
ssh_user: '"root"'
|
||||
ssh_cmd: >-
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && docker run --rm -v $(pwd):/build -w /build docker.1ms.run/library/golang:1.26-alpine go test ./... && docker build --no-cache -t gitlink-cli . && (docker stop gitlink-cli || true) && (docker rm gitlink-cli || true) && docker run -d --restart=always --name gitlink-cli gitlink-cli version"
|
||||
needs:
|
||||
- git_clone_0
|
||||
- ref: end
|
||||
name: 结束
|
||||
task: end
|
||||
needs:
|
||||
- ssh_cmd_0
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
version: 2
|
||||
name: wyx_gitlink_cli_build
|
||||
description: "master 分支收到合并后编译构建并验证新命令是否注册成功"
|
||||
trigger:
|
||||
webhook: gitlink@1.0.0
|
||||
event:
|
||||
- ref: push
|
||||
ruleset-operator: AND
|
||||
global:
|
||||
concurrent: 1
|
||||
workflow:
|
||||
- ref: start
|
||||
name: 开始
|
||||
task: start
|
||||
- ref: git_clone_0
|
||||
name: git clone
|
||||
task: git_clone@1.2.9
|
||||
input:
|
||||
remote_url: '"https://gitlink.org.cn/jiangtx/gitlink-cli.git"'
|
||||
ref: '"refs/heads/master"'
|
||||
commit_id: '""'
|
||||
depth: 1
|
||||
needs:
|
||||
- start
|
||||
- ref: ssh_cmd_0
|
||||
name: 编译并验证命令
|
||||
task: ssh_cmd@1.1.1
|
||||
input:
|
||||
ssh_ip: '"121.41.212.97"'
|
||||
ssh_port: '"22"'
|
||||
ssh_user: '"root"'
|
||||
ssh_pass: ((gitlink_cli.wyx_ssh_pass))
|
||||
ssh_cmd: >-
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 -b master https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && export PATH=$PATH:/usr/local/go/bin && export GOPROXY=https://goproxy.cn,direct && echo '>>> 编译二进制' && go build -o gitlink-cli . && echo '>>> 验证根命令' && ./gitlink-cli --help | head -20 && echo '>>> 验证 pm 模块(6条命令)' && ./gitlink-cli pm --help && echo '>>> 验证 wiki 模块(5条命令)' && ./gitlink-cli wiki --help && echo '>>> 验证 export 模块(3条命令)' && ./gitlink-cli export --help && echo '>>> 验证 alias 命令' && ./gitlink-cli alias --help && echo '>>> 验证 browse 命令' && ./gitlink-cli browse --help && echo '>>> 验证 status 命令' && ./gitlink-cli status && echo '>>> 验证批量操作命令' && ./gitlink-cli issue +batch-close --help && ./gitlink-cli issue +series-update --help && ./gitlink-cli member +batch-add --help && echo '✅ 所有命令验证通过(含3条批量操作命令)'"
|
||||
needs:
|
||||
- git_clone_0
|
||||
- ref: end
|
||||
name: 结束
|
||||
task: end
|
||||
needs:
|
||||
- ssh_cmd_0
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
version: 2
|
||||
name: wyx_gitlink_cli_ci
|
||||
description: "master 分支收到合并后自动执行 CI 检查(构建、静态分析、测试、格式化)"
|
||||
trigger:
|
||||
webhook: gitlink@1.0.0
|
||||
event:
|
||||
- ref: push
|
||||
ruleset-operator: AND
|
||||
global:
|
||||
concurrent: 1
|
||||
workflow:
|
||||
- ref: start
|
||||
name: 开始
|
||||
task: start
|
||||
- ref: git_clone_0
|
||||
name: git clone
|
||||
task: git_clone@1.2.9
|
||||
input:
|
||||
remote_url: '"https://gitlink.org.cn/jiangtx/gitlink-cli.git"'
|
||||
ref: '"refs/heads/master"'
|
||||
commit_id: '""'
|
||||
depth: 1
|
||||
needs:
|
||||
- start
|
||||
- ref: ssh_cmd_0
|
||||
name: CI 检查
|
||||
task: ssh_cmd@1.1.1
|
||||
input:
|
||||
ssh_ip: '"121.41.212.97"'
|
||||
ssh_port: '"22"'
|
||||
ssh_user: '"root"'
|
||||
ssh_pass: ((gitlink_cli.wyx_ssh_pass))
|
||||
ssh_cmd: >-
|
||||
"cd /root && rm -rf gitlink-cli && git clone --depth=1 -b master https://gitlink.org.cn/jiangtx/gitlink-cli.git && cd gitlink-cli && export PATH=$PATH:/usr/local/go/bin && export GOPROXY=https://goproxy.cn,direct && go version && echo '>>> 1. 编译检查' && go build ./... && echo '>>> 2. 静态分析' && go vet ./... && echo '>>> 3. 单元测试' && go test -race ./... && echo '>>> 4. 格式化修复' && gofmt -s -w . && echo '✅ 所有 CI 检查通过'"
|
||||
needs:
|
||||
- git_clone_0
|
||||
- ref: end
|
||||
name: 结束
|
||||
task: end
|
||||
needs:
|
||||
- ssh_cmd_0
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
|
||||
gitlink-cli.exe
|
||||
/gitlink-cli
|
||||
coverage
|
||||
coverage.out
|
||||
|
|
|
|||
|
|
@ -0,0 +1,20 @@
|
|||
FROM docker.1ms.run/library/golang:1.26-alpine AS builder
|
||||
|
||||
WORKDIR /build
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN CGO_ENABLED=0 go build -ldflags "-s -w" -o gitlink-cli .
|
||||
|
||||
FROM docker.1ms.run/library/alpine:3.20
|
||||
|
||||
RUN apk add --no-cache ca-certificates git
|
||||
|
||||
COPY --from=builder /build/gitlink-cli /usr/local/bin/gitlink-cli
|
||||
|
||||
RUN chmod +x /usr/local/bin/gitlink-cli
|
||||
|
||||
ENTRYPOINT ["gitlink-cli"]
|
||||
|
|
@ -1,16 +1,11 @@
|
|||
package alias
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
func TestLoadAliasesEmpty(t *testing.T) {
|
||||
// 设置临时配置目录
|
||||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
|
|
@ -27,7 +22,6 @@ func TestSaveAndLoadAliases(t *testing.T) {
|
|||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
// 保存
|
||||
original := map[string]string{
|
||||
"rl": "repo +list",
|
||||
"ri": "repo +info",
|
||||
|
|
@ -36,7 +30,6 @@ func TestSaveAndLoadAliases(t *testing.T) {
|
|||
t.Fatalf("saveAliases failed: %v", err)
|
||||
}
|
||||
|
||||
// 加载
|
||||
loaded, err := loadAliases()
|
||||
if err != nil {
|
||||
t.Fatalf("loadAliases failed: %v", err)
|
||||
|
|
@ -56,10 +49,7 @@ func TestSaveAliasesOverwrite(t *testing.T) {
|
|||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
// 第一次保存
|
||||
saveAliases(map[string]string{"rl": "repo +list"})
|
||||
|
||||
// 覆盖保存
|
||||
saveAliases(map[string]string{"rl": "repo +list --owner Gitlink"})
|
||||
|
||||
loaded, _ := loadAliases()
|
||||
|
|
@ -72,7 +62,6 @@ func TestLoadAliasesInvalidYAML(t *testing.T) {
|
|||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
// 写入无效 YAML
|
||||
os.WriteFile(tmpDir+"/aliases.yaml", []byte("{{invalid yaml}}"), 0600)
|
||||
|
||||
aliases, err := loadAliases()
|
||||
|
|
@ -84,7 +73,7 @@ func TestLoadAliasesInvalidYAML(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestNewAliasCmd(t *testing.T) {
|
||||
func TestNewAliasCmdStructure(t *testing.T) {
|
||||
cmd := NewAliasCmd()
|
||||
if cmd.Use != "alias" {
|
||||
t.Errorf("expected Use 'alias', got %s", cmd.Use)
|
||||
|
|
@ -92,80 +81,59 @@ func TestNewAliasCmd(t *testing.T) {
|
|||
if !cmd.HasSubCommands() {
|
||||
t.Error("alias command should have subcommands")
|
||||
}
|
||||
|
||||
subcmds := cmd.Commands()
|
||||
if len(subcmds) != 3 {
|
||||
t.Fatalf("expected 3 subcommands, got %d", len(subcmds))
|
||||
}
|
||||
}
|
||||
|
||||
func TestAliasListSubcommand(t *testing.T) {
|
||||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
cmd := NewAliasCmd()
|
||||
// 找到 +list 子命令
|
||||
var listCmd *cobra.Command
|
||||
for _, sub := range cmd.Commands() {
|
||||
if sub.Use == "+list" {
|
||||
listCmd = sub
|
||||
break
|
||||
expectedUses := map[string]bool{"+list": false, "+set <name> <command>": false, "+delete <name>": false}
|
||||
for _, sub := range subcmds {
|
||||
if _, ok := expectedUses[sub.Use]; ok {
|
||||
expectedUses[sub.Use] = true
|
||||
}
|
||||
}
|
||||
if listCmd == nil {
|
||||
t.Fatal("+list subcommand not found")
|
||||
}
|
||||
|
||||
// 无别名时运行
|
||||
buf := new(bytes.Buffer)
|
||||
listCmd.SetOut(buf)
|
||||
listCmd.SetArgs([]string{})
|
||||
if err := listCmd.Execute(); err != nil {
|
||||
t.Fatalf("list failed: %v", err)
|
||||
}
|
||||
if !strings.Contains(buf.String(), "未定义任何别名") {
|
||||
t.Errorf("expected hint for no aliases, got: %s", buf.String())
|
||||
for use, found := range expectedUses {
|
||||
if !found {
|
||||
t.Errorf("subcommand %q not found", use)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestAliasSetAndDeleteSubcommands(t *testing.T) {
|
||||
func TestAliasSetAndDeleteFlow(t *testing.T) {
|
||||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
cmd := NewAliasCmd()
|
||||
|
||||
// 找到 +set 子命令
|
||||
var setCmd, deleteCmd *cobra.Command
|
||||
for _, sub := range cmd.Commands() {
|
||||
if strings.HasPrefix(sub.Use, "+set") {
|
||||
setCmd = sub
|
||||
}
|
||||
if strings.HasPrefix(sub.Use, "+delete") {
|
||||
deleteCmd = sub
|
||||
}
|
||||
// 模拟 +set 操作:直接调用 saveAliases
|
||||
aliases := make(map[string]string)
|
||||
aliases["rl"] = "repo +list"
|
||||
aliases["ri"] = "repo +info"
|
||||
if err := saveAliases(aliases); err != nil {
|
||||
t.Fatalf("saveAliases failed: %v", err)
|
||||
}
|
||||
|
||||
// +set
|
||||
setCmd.SetArgs([]string{"rl", "repo +list"})
|
||||
if err := setCmd.Execute(); err != nil {
|
||||
t.Fatalf("set failed: %v", err)
|
||||
// 验证保存成功
|
||||
loaded, _ := loadAliases()
|
||||
if loaded["rl"] != "repo +list" {
|
||||
t.Fatalf("alias not saved correctly: %v", loaded)
|
||||
}
|
||||
if loaded["ri"] != "repo +info" {
|
||||
t.Fatalf("alias not saved correctly: %v", loaded)
|
||||
}
|
||||
|
||||
// 验证文件写入
|
||||
aliases, _ := loadAliases()
|
||||
if aliases["rl"] != "repo +list" {
|
||||
t.Fatalf("alias not saved correctly: %v", aliases)
|
||||
// 模拟 +delete 操作:删除别名后保存
|
||||
delete(loaded, "rl")
|
||||
if err := saveAliases(loaded); err != nil {
|
||||
t.Fatalf("saveAliases after delete failed: %v", err)
|
||||
}
|
||||
|
||||
// +delete
|
||||
deleteCmd.SetArgs([]string{"rl"})
|
||||
if err := deleteCmd.Execute(); err != nil {
|
||||
t.Fatalf("delete failed: %v", err)
|
||||
// 验证删除成功
|
||||
final, _ := loadAliases()
|
||||
if _, ok := final["rl"]; ok {
|
||||
t.Fatal("alias 'rl' should have been deleted")
|
||||
}
|
||||
|
||||
// 验证已删除
|
||||
aliases, _ = loadAliases()
|
||||
if _, ok := aliases["rl"]; ok {
|
||||
t.Fatal("alias should have been deleted")
|
||||
if final["ri"] != "repo +info" {
|
||||
t.Fatal("alias 'ri' should still exist")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -173,21 +141,22 @@ func TestAliasDeleteNonExistent(t *testing.T) {
|
|||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
cmd := NewAliasCmd()
|
||||
var deleteCmd *cobra.Command
|
||||
for _, sub := range cmd.Commands() {
|
||||
if strings.HasPrefix(sub.Use, "+delete") {
|
||||
deleteCmd = sub
|
||||
break
|
||||
}
|
||||
// 空别名列表,删除不存在的别名
|
||||
aliases, _ := loadAliases()
|
||||
if _, ok := aliases["nonexistent"]; ok {
|
||||
t.Fatal("nonexistent alias should not exist")
|
||||
}
|
||||
// 验证逻辑:别名不存在时不应执行删除
|
||||
// 这对应 alias.go 中 if _, ok := aliases[args[0]]; !ok 的检查
|
||||
}
|
||||
|
||||
deleteCmd.SetArgs([]string{"nonexistent"})
|
||||
err := deleteCmd.Execute()
|
||||
if err == nil {
|
||||
t.Fatal("expected error when deleting nonexistent alias")
|
||||
}
|
||||
if !strings.Contains(err.Error(), "不存在") {
|
||||
t.Errorf("error should mention alias does not exist: %v", err)
|
||||
func TestAliasesFilePath(t *testing.T) {
|
||||
tmpDir := t.TempDir()
|
||||
t.Setenv("GITLINK_CONFIG_DIR", tmpDir)
|
||||
|
||||
expected := tmpDir + "/aliases.yaml"
|
||||
got := aliasesPath()
|
||||
if got != expected {
|
||||
t.Errorf("expected path %s, got %s", expected, got)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ package auth
|
|||
import (
|
||||
"errors"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
|
@ -11,6 +12,16 @@ import (
|
|||
internalAuth "github.com/gitlink-org/gitlink-cli/internal/auth"
|
||||
)
|
||||
|
||||
// setupAuthTest sets up a temporary config directory for auth tests.
|
||||
// Returns the path to the config dir (.config/gitlink-cli).
|
||||
func setupAuthTest(t *testing.T) string {
|
||||
t.Helper()
|
||||
dir := filepath.Join(t.TempDir(), ".config", "gitlink-cli")
|
||||
t.Setenv("GITLINK_CONFIG_DIR", dir)
|
||||
t.Setenv("HOME", filepath.Dir(filepath.Dir(dir))) // for backward compat
|
||||
return dir
|
||||
}
|
||||
|
||||
func TestEnvTokenVar(t *testing.T) {
|
||||
if envTokenVar != "GITLINK_TOKEN" {
|
||||
t.Fatalf("envTokenVar = %q, want GITLINK_TOKEN", envTokenVar)
|
||||
|
|
@ -61,7 +72,7 @@ func TestLoginTokenFlag(t *testing.T) {
|
|||
|
||||
func TestStatusCmdNotLoggedIn(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
_ = internalAuth.DeleteToken()
|
||||
|
||||
|
|
@ -76,7 +87,7 @@ func TestStatusCmdNotLoggedIn(t *testing.T) {
|
|||
|
||||
func TestStatusCmdEnvToken(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "env-token-123")
|
||||
_ = internalAuth.DeleteToken()
|
||||
|
||||
|
|
@ -86,12 +97,11 @@ func TestStatusCmdEnvToken(t *testing.T) {
|
|||
|
||||
func TestStatusCmdStoredToken(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
dir := t.TempDir()
|
||||
t.Setenv("HOME", dir)
|
||||
dir := setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
|
||||
os.MkdirAll(dir+"/.config/gitlink-cli", 0700)
|
||||
os.WriteFile(dir+"/.config/gitlink-cli/credentials", []byte("cookie:test=abc"), 0600)
|
||||
os.MkdirAll(dir, 0700)
|
||||
os.WriteFile(filepath.Join(dir, "credentials"), []byte("cookie:test=abc"), 0600)
|
||||
|
||||
cmd := findSub(NewAuthCmd(), "status")
|
||||
cmd.RunE(cmd, nil)
|
||||
|
|
@ -99,12 +109,11 @@ func TestStatusCmdStoredToken(t *testing.T) {
|
|||
|
||||
func TestStatusCmdEnvAndStoredToken(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
dir := t.TempDir()
|
||||
t.Setenv("HOME", dir)
|
||||
dir := setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "env-token")
|
||||
|
||||
os.MkdirAll(dir+"/.config/gitlink-cli", 0700)
|
||||
os.WriteFile(dir+"/.config/gitlink-cli/credentials", []byte("stored-token"), 0600)
|
||||
os.MkdirAll(dir, 0700)
|
||||
os.WriteFile(filepath.Join(dir, "credentials"), []byte("stored-token"), 0600)
|
||||
|
||||
cmd := findSub(NewAuthCmd(), "status")
|
||||
if err := cmd.RunE(cmd, nil); err != nil {
|
||||
|
|
@ -114,7 +123,7 @@ func TestStatusCmdEnvAndStoredToken(t *testing.T) {
|
|||
|
||||
func TestStatusCmdStoredTokenButLoadFails(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
// Don't create credentials file — LoadToken returns empty
|
||||
|
||||
|
|
@ -126,7 +135,7 @@ func TestStatusCmdStoredTokenButLoadFails(t *testing.T) {
|
|||
|
||||
func TestLogoutCmdError(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
// Don't create credentials dir — DeleteToken will fail
|
||||
|
||||
|
|
@ -139,14 +148,12 @@ func TestLogoutCmdError(t *testing.T) {
|
|||
|
||||
func TestLogoutCmd(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
home := t.TempDir()
|
||||
t.Setenv("HOME", home)
|
||||
dir := setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
|
||||
// Store a token first so DeleteToken has something to delete
|
||||
credDir := home + "/.config/gitlink-cli"
|
||||
os.MkdirAll(credDir, 0700)
|
||||
os.WriteFile(credDir+"/credentials", []byte("some-token"), 0600)
|
||||
os.MkdirAll(dir, 0700)
|
||||
os.WriteFile(filepath.Join(dir, "credentials"), []byte("some-token"), 0600)
|
||||
|
||||
cmd := findSub(NewAuthCmd(), "logout")
|
||||
if cmd == nil {
|
||||
|
|
@ -159,8 +166,7 @@ func TestLogoutCmd(t *testing.T) {
|
|||
|
||||
func TestLoginWithToken(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
home := t.TempDir()
|
||||
t.Setenv("HOME", home)
|
||||
dir := setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
|
||||
// Mock stdin
|
||||
|
|
@ -185,7 +191,7 @@ func TestLoginWithToken(t *testing.T) {
|
|||
}
|
||||
|
||||
// Verify token was saved to file
|
||||
data, err := os.ReadFile(home + "/.config/gitlink-cli/credentials")
|
||||
data, err := os.ReadFile(filepath.Join(dir, "credentials"))
|
||||
if err != nil {
|
||||
t.Fatalf("read credentials: %v", err)
|
||||
}
|
||||
|
|
@ -196,7 +202,7 @@ func TestLoginWithToken(t *testing.T) {
|
|||
|
||||
func TestLoginWithTokenEmpty(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
|
||||
oldStdin := os.Stdin
|
||||
|
|
@ -219,7 +225,7 @@ func TestLoginWithTokenEmpty(t *testing.T) {
|
|||
|
||||
func TestLoginWithPasswordNoTerminal(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
t.Setenv("HOME", t.TempDir())
|
||||
setupAuthTest(t)
|
||||
t.Setenv("GITLINK_TOKEN", "")
|
||||
|
||||
// term.ReadPassword will fail because test has no terminal
|
||||
|
|
|
|||
|
|
@ -9,11 +9,11 @@ import (
|
|||
|
||||
aliasCmd "github.com/gitlink-org/gitlink-cli/cmd/alias"
|
||||
apiCmd "github.com/gitlink-org/gitlink-cli/cmd/api"
|
||||
browseCmd "github.com/gitlink-org/gitlink-cli/cmd/browse"
|
||||
statusCmd "github.com/gitlink-org/gitlink-cli/cmd/status"
|
||||
authCmd "github.com/gitlink-org/gitlink-cli/cmd/auth"
|
||||
browseCmd "github.com/gitlink-org/gitlink-cli/cmd/browse"
|
||||
"github.com/gitlink-org/gitlink-cli/cmd/cmdutil"
|
||||
configCmd "github.com/gitlink-org/gitlink-cli/cmd/config"
|
||||
statusCmd "github.com/gitlink-org/gitlink-cli/cmd/status"
|
||||
internalConfig "github.com/gitlink-org/gitlink-cli/internal/config"
|
||||
"github.com/gitlink-org/gitlink-cli/internal/i18n"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
id,login,contributions
|
||||
<nil>,<nil>,<nil>
|
||||
|
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,36 @@
|
|||
# GitLink Skills Web Service
|
||||
|
||||
A web-based interface for GitLink AI Agent Skills, powered by Claude API / DeepSeek API.
|
||||
|
||||
## Features
|
||||
|
||||
- **技术调研** — 输入研究主题,自动搜索 GitLink 项目并生成调研报告
|
||||
- **贡献者分析** — 分析仓库贡献者活跃度和团队健康度
|
||||
- **Issue 分拣** — 自动分类仓库 Issue 并生成分拣报告
|
||||
- **CI 健康巡检** — 检查仓库 CI/CD 状态
|
||||
|
||||
## Requirements
|
||||
|
||||
- Python 3.10+
|
||||
- gitlink-cli (npm install -g gitlink-cli)
|
||||
- API Key (DeepSeek or Anthropic)
|
||||
|
||||
## Quick Start
|
||||
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
export API_KEY="sk-xxx"
|
||||
export API_MODEL="deepseek-chat"
|
||||
python app.py
|
||||
```
|
||||
|
||||
## API Endpoints
|
||||
|
||||
| Endpoint | Method | Description |
|
||||
|----------|--------|-------------|
|
||||
| `/` | GET | Home page |
|
||||
| `/research` | GET | Research tracker form |
|
||||
| `/contributor` | GET | Contributor insight form |
|
||||
| `/issue-triage` | GET | Issue triage form |
|
||||
| `/ci-health` | GET | CI health check form |
|
||||
| `/api/run` | POST | Execute a skill |
|
||||
|
|
@ -0,0 +1,865 @@
|
|||
#!/usr/bin/env python3
|
||||
"""GitLink Skills Web Service — 严格遵循 SKILL.md 工作流"""
|
||||
|
||||
import os, re, json, subprocess, time, traceback
|
||||
from pathlib import Path
|
||||
from flask import Flask, request, jsonify, render_template
|
||||
import requests
|
||||
|
||||
NOW = time.strftime("%Y-%m-%d") # 当前日期,注入所有prompt防止幻觉
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
NOW = time.strftime("%Y-%m-%d") # 当前日期,注入所有 prompt 防止幻觉
|
||||
|
||||
API_KEY = os.environ.get("API_KEY") or ""
|
||||
if not API_KEY:
|
||||
# 本地测试用
|
||||
API_KEY = "<YOUR_API_KEY>"
|
||||
API_BASE = os.environ.get("API_BASE", "https://api.deepseek.com/v1")
|
||||
API_MODEL = os.environ.get("API_MODEL", "deepseek-chat")
|
||||
SKILL_DIR = Path(__file__).parent / "skills"
|
||||
HISTORY_DIR = Path(__file__).parent / "reports"
|
||||
HISTORY_DIR.mkdir(exist_ok=True)
|
||||
|
||||
SKILL_NAMES = {
|
||||
"research": "research-tracker",
|
||||
"contributor": "contributor-insight",
|
||||
"issue-triage": "issue-triage",
|
||||
"ci-health": "ci-health",
|
||||
"repo-health": "repo-health",
|
||||
"pr-analytics": "pr-analytics",
|
||||
"cross-search": "cross-search",
|
||||
"user-analysis": "user-analysis",
|
||||
"repo-compare": "repo-compare",
|
||||
"lab-hotspot": "lab-hotspot",
|
||||
"lab-insight": "lab-insight",
|
||||
"lab-compliance": "lab-compliance",
|
||||
"lab-match": "lab-match",
|
||||
"lab-track": "lab-track",
|
||||
}
|
||||
|
||||
SKILL_INFO = {
|
||||
"research-tracker": {"title":"技术调研","label":"研究主题","placeholder":"大模型、AI Agent、微服务","intro":"输入一个研究主题,自动拆解为多个关键词在 GitLink 上搜索相关项目,深度评估后生成调研报告。","output_desc":"热点概览(项目数/语言/活跃度)\n项目排行榜(含评分/星数/Fork/链接)\n重点分析(核心项目详情)\n趋势洞察与建议"},
|
||||
"contributor-insight":{"title":"贡献者分析","label":"仓库(owner/repo)","placeholder":"ci4s/ci4sManagement-cloud","intro":"输入仓库地址,分析贡献者的活跃度、贡献趋势和团队健康度。","output_desc":"团队概览(贡献者总数/级别分布)\n活跃度排行榜(PR数/Issue数/趋势)\n重点贡献者分析(画像/PR明细)\n团队健康度评估与建议"},
|
||||
"issue-triage":{"title":"Issue分拣","label":"仓库(owner/repo)","placeholder":"Gitlink/gitlink-cli","intro":"输入仓库地址,自动扫描 Issue 并分类(Bug/Feature/Question),评估紧急度和复杂度。","output_desc":"Issue总览(总数/开放/已关闭)\n类型分类(Bug/Feature/Docs等)\n紧急度评估(Urgent/High/Normal/Low)\n行动建议(FixNow/Investigate/Discuss)\n维护建议"},
|
||||
"ci-health":{"title":"CI健康巡检","label":"仓库(owner/repo)","placeholder":"jiangtx/gitlink-cli","intro":"检查仓库 CI/CD 状态(open_devops)、构建历史、成功率。","output_desc":"健康度总览(CI激活/成功率/稳定性评分)\n构建趋势(近7天/14天/30天)\n故障分析与改进建议"},
|
||||
"repo-health":{"title":"仓库健康巡检","label":"仓库(owner/repo)","placeholder":"Gitlink/gitlink-cli","intro":"综合评估仓库的活跃度、社区规模、代码产出和风险。","output_desc":"基本信息(语言/规模/描述)\n活跃度分析(PR/Issue统计)\nPR/Issue健康度\n综合评分与改进建议"},
|
||||
"pr-analytics":{"title":"PR效率分析","label":"仓库(owner/repo)","placeholder":"Gitlink/gitlink-cli","intro":"统计 PR 吞吐量、合并率、贡献者活跃度。","output_desc":"PR吞吐量(总数/合并/关闭)\n合并效率分析\n贡献者排行榜\n改进建议"},
|
||||
"cross-search":{"title":"跨维搜索","label":"搜索主题","placeholder":"AI Agent、数据分析、容器","intro":"同时搜索 GitLink 的仓库、代码和 Issue 三个维度。","output_desc":"各维度命中概况\n仓库搜索结果\n代码片段摘要\nIssue讨论热点"},
|
||||
"user-analysis":{"title":"用户分析","label":"用户名","placeholder":"jiangtx、lindiwen23","intro":"查看用户基本信息、活跃度、项目参与情况。","output_desc":"基本信息(注册时间/身份/项目数)\n活跃度分析\n项目贡献列表\n综合用户画像"},
|
||||
"repo-compare":{"title":"仓库对比","label":"AvsB","placeholder":"Gitlink/gitlink-cli vs ci4s/ci4sManagement-cloud","intro":"对比两个仓库的指标差异。","output_desc":"基本信息对比(语言/规模/分支)\n社区活跃度对比\n开发活动对比(PR/Issue/Release)\n综合结论"},
|
||||
"lab-hotspot":{"title":"热点追踪","label":"研究主题","placeholder":"大模型、AI Agent、微服务","intro":"多关键词搜索GitLink项目,深度评估+领域知识图谱。","output_desc":"热点概览(项目数/语言/活跃比例)\n项目排行榜(评分/星数/Fork/链接)\n领域知识图谱(Mermaid流程图)\n趋势洞察与建议"},
|
||||
"lab-insight":{"title":"项目洞悉","label":"仓库(owner/repo)","placeholder":"ci4s/ci4sManagement-cloud","intro":"综合仓库信息+贡献者+PR/Issue生成全息分析。","output_desc":"项目概况(描述/规模/语言)\n社区活跃度(贡献者/PR/Issue)\n团队画像\n综合健康度评估"},
|
||||
"lab-compliance":{"title":"合规检查","label":"仓库(owner/repo)","placeholder":"Gitlink/gitlink-cli","intro":"检查License/CI/文档完整性,输出合规评分。","output_desc":"License合规性\n文档完整性\nCI/CD完善度\n可复现性检查\n综合评分"},
|
||||
"lab-match":{"title":"协作匹配","label":"仓库(owner/repo)","placeholder":"ci4s/ci4sManagement-cloud","intro":"分析Issue和社区健康度,评估新手友好度。","output_desc":"项目概览(技术栈/社区规模)\n入门友好度分析\n推荐贡献方向\n社区活跃度评估"},
|
||||
"lab-track":{"title":"进度跟踪","label":"仓库列表(逗号分隔)","placeholder":"repo1,repo2,repo3","intro":"批量巡检多仓库,输出健康/警告/危险状态。","output_desc":"各仓库状态概览(健康/警告/危险)\n详细指标表(贡献者/CI/活跃度)\n预警详情\n整体健康度评估"},
|
||||
}
|
||||
|
||||
# ── 工具函数 ──
|
||||
|
||||
def run(cmd, timeout=30):
|
||||
try:
|
||||
r = subprocess.run(cmd, shell=True, capture_output=True, text=True, timeout=timeout)
|
||||
out = r.stdout.strip()
|
||||
if not out:
|
||||
return r.stderr.strip()[:1000]
|
||||
# JSON search results can be large, don't truncate too aggressively
|
||||
return out[:50000]
|
||||
except subprocess.TimeoutExpired:
|
||||
return "[超时]"
|
||||
except Exception as e:
|
||||
return f"[错误] {e}"
|
||||
|
||||
|
||||
def llm(messages, max_tokens=8192):
|
||||
if not API_KEY:
|
||||
return "【API_KEY 未设置】"
|
||||
try:
|
||||
resp = requests.post(
|
||||
f"{API_BASE}/chat/completions",
|
||||
headers={"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"},
|
||||
json={"model": API_MODEL, "messages": messages, "max_tokens": max_tokens, "temperature": 0.7},
|
||||
timeout=180
|
||||
)
|
||||
data = resp.json()
|
||||
if "choices" in data and data["choices"]:
|
||||
return data["choices"][0]["message"]["content"]
|
||||
return f"[API异常] {json.dumps(data, ensure_ascii=False)[:300]}"
|
||||
except Exception as e:
|
||||
return f"[请求失败] {e}"
|
||||
|
||||
|
||||
def load_prompt(name):
|
||||
p = SKILL_DIR / f"{name}.txt"
|
||||
return p.read_text(encoding="utf-8") if p.exists() else ""
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# research-tracker:严格遵循 SKILL.md 5步工作流
|
||||
# Round 1: LLM 拆关键词 → 服务器执行搜索+深度评估 → Round 2: LLM 写报告
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_research(user_input):
|
||||
steps = [] # 记录每一步供对比
|
||||
|
||||
# ── Step 1: LLM 拆解关键词 ──
|
||||
kw_prompt = f"""你是一个科研助手。请为研究主题「{user_input}」拆解 3~5 个搜索关键词。
|
||||
要求:覆盖中英文、缩写全称、技术术语和行业叫法。
|
||||
直接返回关键词列表,每行一个,不要多余文字。"""
|
||||
kw_response = llm([{"role": "user", "content": kw_prompt}])
|
||||
keywords = [l.strip("-* \t") for l in kw_response.strip().split("\n") if l.strip()]
|
||||
steps.append(("Step1-关键词拆解", {"prompt": kw_prompt, "llm_output": kw_response, "keywords": keywords}))
|
||||
|
||||
# ── Step 2: 多关键词搜索 ──
|
||||
all_projects = {}
|
||||
raw_searches = []
|
||||
for kw in keywords[:5]:
|
||||
out = run(f'gitlink-cli search +repos -k "{kw}" --format json')
|
||||
raw_searches.append(f"--- {kw} ---\n{out}")
|
||||
try:
|
||||
for p in json.loads(out).get("data", {}).get("projects", []):
|
||||
key = f"{p['author']['login']}/{p['identifier']}"
|
||||
if key not in all_projects:
|
||||
all_projects[key] = {"search_data": p, "keywords": [kw]}
|
||||
else:
|
||||
all_projects[key]["keywords"].append(kw)
|
||||
except:
|
||||
pass
|
||||
steps.append(("Step2-多关键词搜索", {"keyword_count": len(keywords), "raw_hits": sum(1 for k in keywords), "unique": len(all_projects)}))
|
||||
|
||||
# ── Step 3: 去重 + 深度评估 ──
|
||||
sorted_projects = sorted(all_projects.values(), key=lambda x: x["search_data"].get("praises_count", 0), reverse=True)[:8]
|
||||
deep_data = []
|
||||
seen_mirror = 0
|
||||
for p in sorted_projects:
|
||||
sd = p["search_data"]
|
||||
owner, repo_name = sd["author"]["login"], sd["identifier"]
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo_name} --format json')
|
||||
is_mirror = False
|
||||
try:
|
||||
info_data = json.loads(info)
|
||||
is_mirror = info_data.get("data", {}).get("mirror", False)
|
||||
if is_mirror:
|
||||
seen_mirror += 1
|
||||
except:
|
||||
pass
|
||||
url = f"https://www.gitlink.org.cn/{owner}/{repo_name}"
|
||||
deep_data.append(f"# [{owner}/{repo_name}]({url})\nURL: {url}\n关键词: {', '.join(p['keywords'])}\n镜像: {'是' if is_mirror else '否'}\n{info}")
|
||||
steps.append(("Step3-深度评估", {"deep_count": len(deep_data), "mirror_count": seen_mirror}))
|
||||
|
||||
# ── Step 4+5: LLM 写报告 ──
|
||||
system = load_prompt("research-tracker")
|
||||
real_data = "=== 搜索结果 ===\n" + "\n\n".join(raw_searches) + "\n\n=== 深度评估 ===\n" + "\n\n".join(deep_data)
|
||||
report_prompt = f"""研究主题: {user_input}
|
||||
搜索关键词: {', '.join(keywords)}
|
||||
|
||||
以下是从 GitLink 平台实时获取的真实数据。
|
||||
请基于这些数据,严格按照 SKILL.md 的评分标准和模板生成调研报告。
|
||||
包含:技术格局概览、项目成熟度排行榜(含评分)、重点分析、趋势洞察、调研建议。
|
||||
|
||||
**【超链接要求】**:报告中所有项目名必须使用 Markdown 超链接格式:
|
||||
- 格式:[owner/repo](https://www.gitlink.org.cn/owner/repo)
|
||||
- 排行榜、重点分析、推荐表中所有仓库名都必须是可点击的超链接
|
||||
- 例如:[Gitlink/microservices](https://www.gitlink.org.cn/Gitlink/microservices)
|
||||
- 镜像项目也加链接:[owner/repo](https://...)
|
||||
|
||||
{real_data}"""
|
||||
report = llm([
|
||||
{"role": "system", "content": system},
|
||||
{"role": "user", "content": report_prompt}
|
||||
])
|
||||
steps.append(("Step4+5-报告生成", {"llm_input_chars": len(report_prompt), "report_chars": len(report)}))
|
||||
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# contributor-insight:严格遵循 SKILL.md 5步工作流
|
||||
# 服务器执行命令 → LLM 分析写报告
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_contributor(user_input):
|
||||
steps = []
|
||||
parts = user_input.replace(" ", "").split("/")
|
||||
if len(parts) < 2:
|
||||
return "请提供 owner/repo 格式", []
|
||||
owner, repo_name = parts[0], parts[1]
|
||||
|
||||
# Step 1: repo +info
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step1-项目概览", {"raw_len": len(info)}))
|
||||
try:
|
||||
contrib_count = json.loads(info).get("data", {}).get("contributor_users_count", 0)
|
||||
except:
|
||||
contrib_count = "?"
|
||||
|
||||
# Step 2: pr +list + issue +list
|
||||
pr_data = run(f'gitlink-cli pr +list --owner {owner} --repo {repo_name} --format json')
|
||||
issue_data = run(f'gitlink-cli issue +list --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step2-数据采集", {"pr_len": len(pr_data), "issue_len": len(issue_data)}))
|
||||
|
||||
# Step 3: user +info 提取画像
|
||||
authors = set()
|
||||
try:
|
||||
for i in json.loads(pr_data).get("data", {}).get("issues", []):
|
||||
if i.get("author_login"):
|
||||
authors.add(i["author_login"])
|
||||
except:
|
||||
pass
|
||||
user_infos = []
|
||||
for a in list(authors)[:5]:
|
||||
u = run(f'gitlink-cli user +info --login {a} --format json')
|
||||
user_infos.append(f"# {a}\n{u}")
|
||||
steps.append(("Step3-用户画像", {"author_count": len(authors)}))
|
||||
|
||||
# Step 4+5: LLM 分析写报告
|
||||
system = load_prompt("contributor-insight")
|
||||
data = f"# repo +info\n{info}\n\n# pr +list\n{pr_data}\n\n# issue +list\n{issue_data}\n\n" + "\n".join(user_infos)
|
||||
prompt = f"""仓库: [{owner}/{repo_name}](https://www.gitlink.org.cn/{owner}/{repo_name})
|
||||
实际贡献者(从PR提取): {', '.join(authors) if authors else '无'}
|
||||
repo +info contributor_users_count: {contrib_count}
|
||||
|
||||
以下是 gitlink-cli 获取的真实数据。
|
||||
请基于此生成贡献者洞察报告,包含:团队概览、活跃度排行榜、重点分析、健康度评估、建议。
|
||||
仓库名用超链接: [owner/repo](https://www.gitlink.org.cn/owner/repo)。
|
||||
如果数据缺失请如实标注,不要编造。
|
||||
|
||||
{data}"""
|
||||
report = llm([
|
||||
{"role": "system", "content": system},
|
||||
{"role": "user", "content": prompt}
|
||||
])
|
||||
steps.append(("Step4+5-报告", {"llm_input": len(prompt), "report_len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# issue-triage:严格遵循 SKILL.md 5步工作流
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_issue(user_input):
|
||||
steps = []
|
||||
parts = user_input.replace(" ", "").split("/")
|
||||
if len(parts) < 2:
|
||||
return "请提供 owner/repo 格式", []
|
||||
owner, repo_name = parts[0], parts[1]
|
||||
|
||||
# Step 1: repo +info
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step1-项目概览", {}))
|
||||
|
||||
# Step 2: issue +list
|
||||
issues_raw = run(f'gitlink-cli issue +list --owner {owner} --repo {repo_name} --state open --format json')
|
||||
steps.append(("Step2-Issue列表", {"raw_len": len(issues_raw)}))
|
||||
|
||||
# 客户端按 status_id 过滤
|
||||
open_issues = []
|
||||
try:
|
||||
for i in json.loads(issues_raw).get("data", {}).get("issues", []):
|
||||
sid = i.get("status_id", -1)
|
||||
if sid in (1, 2, 0):
|
||||
open_issues.append(i)
|
||||
except:
|
||||
pass
|
||||
steps.append(("Step2.5-状态过滤", {"before": "?", "after": len(open_issues)}))
|
||||
|
||||
# Step 3: issue +view 逐条分析
|
||||
views = []
|
||||
for issue in open_issues[:10]:
|
||||
num = issue.get("project_issues_index") or issue.get("number", "")
|
||||
if num:
|
||||
v = run(f'gitlink-cli issue +view --owner {owner} --repo {repo_name} --number {num} --format json')
|
||||
views.append(f"# Issue #{num}: {issue.get('subject','')}\n{v}")
|
||||
steps.append(("Step3-逐条分析", {"count": len(views)}))
|
||||
|
||||
# Step 4+5: LLM
|
||||
system = load_prompt("issue-triage")
|
||||
data = f"# repo +info\n{info}\n\n# issue +list (所有)\n{issues_raw}\n\n过滤后开放({len(open_issues)}条):\n" + "\n\n".join(views)
|
||||
prompt = f"""仓库: [{owner}/{repo_name}](https://www.gitlink.org.cn/{owner}/{repo_name})
|
||||
过滤后开放Issue: {len(open_issues)}条
|
||||
请按SKILL.md的4维分类规则生成分拣报告。
|
||||
注意: --state open 过滤不准确, 已按 status_id(1=新增,2=处理中) 过滤, status_id=0已标注异常。
|
||||
仓库名用 gitlink.org.cn 超链接,不要用 github.com。
|
||||
如果数据中有字段缺失请如实说。
|
||||
|
||||
{data}"""
|
||||
report = llm([
|
||||
{"role": "system", "content": system},
|
||||
{"role": "user", "content": prompt}
|
||||
])
|
||||
steps.append(("Step4+5-报告", {"report_len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# ci-health:严格遵循 SKILL.md 5步工作流
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_ci(user_input):
|
||||
steps = []
|
||||
parts = user_input.replace(" ", "").split("/")
|
||||
if len(parts) < 2:
|
||||
return "请提供 owner/repo 格式", []
|
||||
owner, repo_name = parts[0], parts[1]
|
||||
|
||||
# Step 1: repo +info → open_devops
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo_name} --format json')
|
||||
open_devops = False
|
||||
try:
|
||||
d = json.loads(info).get("data", {})
|
||||
open_devops = d.get("open_devops", False)
|
||||
except:
|
||||
pass
|
||||
steps.append(("Step1-CI授权检查", {"open_devops": open_devops}))
|
||||
|
||||
if not open_devops:
|
||||
return f"该仓库 CI/CD 未激活 (open_devops=false)。\n\n## repo 基本信息\n{info}\n\n建议在 GitLink Web 界面开启 DevOps 后重新巡检。", steps
|
||||
|
||||
# Step 2: ci +builds
|
||||
builds = run(f'gitlink-cli ci +builds --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step2-构建历史", {"builds_len": len(builds)}))
|
||||
|
||||
# Step 3: ci +logs (失败构建)
|
||||
failed_ids = []
|
||||
try:
|
||||
for b in json.loads(builds).get("data", {}).get("builds", [])[:5]:
|
||||
if b.get("status") == "failed":
|
||||
failed_ids.append(b.get("id", ""))
|
||||
except:
|
||||
pass
|
||||
logs_data = []
|
||||
for bid in failed_ids[:3]:
|
||||
l = run(f'gitlink-cli ci +logs --owner {owner} --repo {repo_name} --build {bid} --format json')
|
||||
logs_data.append(f"# Build {bid}\n{l}")
|
||||
steps.append(("Step3-失败日志", {"failed_count": len(failed_ids)}))
|
||||
|
||||
# Step 4+5: LLM
|
||||
system = load_prompt("ci-health")
|
||||
data = f"# repo +info\n{info}\n\n# ci +builds\n{builds}\n\n" + ("\n".join(logs_data) if logs_data else "# 无失败构建")
|
||||
prompt = f"""仓库: {owner}/{repo_name}
|
||||
CI激活: {'是' if open_devops else '否'}
|
||||
请生成 CI 健康巡检报告。包含:健康度总览、构建趋势、故障分析、改进建议。
|
||||
open_devops=false 表示CI未激活,此时无构建数据。
|
||||
|
||||
{data}"""
|
||||
report = llm([
|
||||
{"role": "system", "content": system},
|
||||
{"role": "user", "content": prompt}
|
||||
])
|
||||
steps.append(("Step4+5-报告", {"report_len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# repo-health:仓库健康巡检 — 综合评估仓库活动、代码规模、社区参与
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_repo_health(user_input):
|
||||
steps = []
|
||||
parts = user_input.replace(" ", "").split("/")
|
||||
if len(parts) < 2:
|
||||
return "请提供 owner/repo 格式", []
|
||||
owner, repo_name = parts[0], parts[1]
|
||||
|
||||
# repo +info
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step1-基本信息", {"len": len(info)}))
|
||||
|
||||
# issue +list + pr +list
|
||||
issues = run(f'gitlink-cli issue +list --owner {owner} --repo {repo_name} --format json')
|
||||
prs = run(f'gitlink-cli pr +list --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step2-活动数据", {"issues_len": len(issues), "prs_len": len(prs)}))
|
||||
|
||||
data = f"# repo +info\n{info}\n\n# issue +list\n{issues}\n\n# pr +list\n{prs}"
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个仓库健康度评估专家。基于 gitlink-cli 获取的真实数据,评估仓库的综合健康度。"},
|
||||
{"role": "user", "content": f"""仓库: {owner}/{repo_name}
|
||||
|
||||
请基于以下真实数据生成仓库健康巡检报告,包含:
|
||||
1. 仓库基本信息(语言、规模、创建时间)
|
||||
2. 代码活跃度(Issue 数量、PR 数量、贡献者数)
|
||||
3. PR/Issue 健康度(合并比例、开放比例)
|
||||
4. 综合健康评分(满分 20)和风险提示
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step3-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# pr-analytics:PR 效率分析 — 分析合并时间、Review 模式、贡献节奏
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_pr_analytics(user_input):
|
||||
steps = []
|
||||
parts = user_input.replace(" ", "").split("/")
|
||||
if len(parts) < 2:
|
||||
return "请提供 owner/repo 格式", []
|
||||
owner, repo_name = parts[0], parts[1]
|
||||
|
||||
# pr +list 获取全量
|
||||
all_prs = run(f'gitlink-cli pr +list --owner {owner} --repo {repo_name} --format json')
|
||||
steps.append(("Step1-PR列表", {"len": len(all_prs)}))
|
||||
|
||||
# 提取统计
|
||||
total, merged, authors = 0, 0, set()
|
||||
try:
|
||||
for i in json.loads(all_prs).get("data", {}).get("issues", []):
|
||||
total += 1
|
||||
if i.get("pull_request_status") == 1:
|
||||
merged += 1
|
||||
if i.get("author_login"):
|
||||
authors.add(i["author_login"])
|
||||
except:
|
||||
pass
|
||||
steps.append(("Step2-统计", {"total": total, "merged": merged, "authors": len(authors)}))
|
||||
|
||||
data = f"# pr +list\n{all_prs}"
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个开源项目 PR 效率分析师。基于真实数据生成 PR 效率分析报告。"},
|
||||
{"role": "user", "content": f"""仓库: {owner}/{repo_name}
|
||||
总 PR: {total}, 已合并: {merged}, 贡献者: {len(authors)}
|
||||
|
||||
请基于以下真实数据,生成 PR 效率分析报告,包含:
|
||||
1. PR 吞吐量(总数、合并数、关闭数)
|
||||
2. 贡献者活跃度(人均 PR 数、Top 贡献者)
|
||||
3. 合并效率(合并比例)
|
||||
4. 改进建议
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step3-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# cross-search:跨维搜索 — 同时搜仓库、代码、Issue 并汇总
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_cross_search(user_input):
|
||||
steps = []
|
||||
kw = user_input.strip()
|
||||
|
||||
# 三维搜索
|
||||
repos = run(f'gitlink-cli search +repos -k "{kw}" --format json')
|
||||
code = run(f'gitlink-cli search +code -k "{kw}" --format json')
|
||||
issues = run(f'gitlink-cli search +issues -k "{kw}" --format json')
|
||||
steps.append(("Step1-三维搜索", {"repos_len": len(repos), "code_len": len(code), "issues_len": len(issues)}))
|
||||
|
||||
# 统计
|
||||
repo_count, code_count, issue_count = 0, 0, 0
|
||||
try: repo_count = len(json.loads(repos).get("data",{}).get("projects",[]))
|
||||
except: pass
|
||||
try: code_count = len(json.loads(code).get("data",{}).get("results",[]))
|
||||
except: pass
|
||||
try: issue_count = len(json.loads(issues).get("data",{}).get("issues",[]))
|
||||
except: pass
|
||||
|
||||
data = f"# 仓库搜索\n{repos}\n\n# 代码搜索\n{code}\n\n# Issue搜索\n{issues}"
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个搜索分析师。汇总 GitLink 多维度搜索结果,生成综合分析报告。所有仓库名用 Markdown 超链接 [owner/repo](https://www.gitlink.org.cn/owner/repo) 格式。"},
|
||||
{"role": "user", "content": f"""搜索关键词: {kw}
|
||||
仓库命中: {repo_count} 代码命中: {code_count} Issue命中: {issue_count}
|
||||
|
||||
请基于以下搜索数据生成综合分析报告,包含:
|
||||
1. 各维度命中概况
|
||||
2. 仓库搜索结果分析
|
||||
3. 代码搜索结果提炼(热门代码片段)
|
||||
4. Issue 讨论热点
|
||||
5. 综合洞察
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step2-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# user-analysis:用户分析 — 搜索用户 + 查看用户信息
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_user_analysis(user_input):
|
||||
steps = []
|
||||
login = user_input.strip()
|
||||
|
||||
# 搜索用户
|
||||
search = run(f'gitlink-cli search +users -k "{login}" --format json')
|
||||
steps.append(("Step1-用户搜索", {"len": len(search)}))
|
||||
|
||||
# 用户信息
|
||||
info = run(f'gitlink-cli user +info --login {login} --format json')
|
||||
steps.append(("Step2-用户信息", {"len": len(info)}))
|
||||
|
||||
data = f"# search +users\n{search}\n\n# user +info\n{info}"
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个用户分析专家。基于 GitLink 用户数据生成用户分析报告。"},
|
||||
{"role": "user", "content": f"""用户名: {login}
|
||||
|
||||
请基于以下真实数据生成用户分析报告:
|
||||
1. 用户基本信息(注册时间、身份、项目数)
|
||||
2. 用户活跃度(参与项目、关注数)
|
||||
3. 搜索匹配情况
|
||||
4. 综合画像
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step3-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# repo-compare:仓库对比 — 对比两个仓库的核心指标
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def agent_repo_compare(user_input):
|
||||
steps = []
|
||||
# 解析 "A vs B" 格式
|
||||
parts = [p.strip() for p in user_input.replace("vs", " vs ").split("vs") if p.strip()]
|
||||
if len(parts) < 2:
|
||||
return "请用 A vs B 格式输入两个仓库,例如:Gitlink/gitlink-cli vs ci4s/ci4sManagement-cloud", []
|
||||
repo_a, repo_b = parts[0], parts[1]
|
||||
o1, r1 = repo_a.replace(" ", "").split("/")[:2]
|
||||
o2, r2 = repo_b.replace(" ", "").split("/")[:2]
|
||||
|
||||
info_a = run(f'gitlink-cli repo +info --owner {o1} --repo {r1} --format json')
|
||||
info_b = run(f'gitlink-cli repo +info --owner {o2} --repo {r2} --format json')
|
||||
steps.append(("Step1-获取数据", {"repo_a_len": len(info_a), "repo_b_len": len(info_b)}))
|
||||
|
||||
data = f"# 仓库A: [{repo_a}](https://www.gitlink.org.cn/{repo_a})\n{info_a}\n\n# 仓库B: [{repo_b}](https://www.gitlink.org.cn/{repo_b})\n{info_b}"
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个仓库对比分析师。对比两个 GitLink 仓库的指标异同。报告中所有仓库名必须用 Markdown 超链接 [owner/repo](https://www.gitlink.org.cn/owner/repo) 格式。"},
|
||||
{"role": "user", "content": f"""仓库A: {repo_a}
|
||||
仓库B: {repo_b}
|
||||
|
||||
请基于真实数据生成仓库对比报告:
|
||||
1. 基本信息对比(语言、规模、分支)
|
||||
2. 社区活跃度对比(贡献者、watch、fork)
|
||||
3. 开发活动对比(PR、Issue、Release)
|
||||
4. 综合结论与推荐
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step2-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
# 科研实验室:5 个科研场景工作流
|
||||
# ═══════════════════════════════════════════════════════════════════
|
||||
|
||||
def lab_hotspot(user_input):
|
||||
"""热点追踪+知识图谱:搜项目 → 深度评估 → 提取Fork关系链"""
|
||||
steps = []
|
||||
# 拆关键词
|
||||
kw_resp = llm([{"role": "user", "content": f"为研究主题「{user_input}」拆 3~5 个搜索关键词,每行一个"}])
|
||||
kws = [l.strip("-* \t") for l in kw_resp.strip().split("\n") if l.strip()][:5]
|
||||
steps.append(("Step1-关键词拆解", {"kws": kws}))
|
||||
|
||||
# 搜索
|
||||
all_p = {}
|
||||
for kw in kws:
|
||||
out = run(f'gitlink-cli search +repos -k "{kw}" --format json')
|
||||
try:
|
||||
for p in json.loads(out).get("data",{}).get("projects",[]):
|
||||
k = f"{p['author']['login']}/{p['identifier']}"
|
||||
all_p.setdefault(k, {"data": p, "kws": []})["kws"].append(kw)
|
||||
except: pass
|
||||
steps.append(("Step2-搜索", {"unique": len(all_p)}))
|
||||
|
||||
# 深度评估 + 提取 fork 关系
|
||||
sorted_p = sorted(all_p.values(), key=lambda x: x["data"].get("praises_count",0), reverse=True)[:8]
|
||||
deep, relations = [], []
|
||||
for p in sorted_p:
|
||||
sd = p["data"]; owner, repo = sd["author"]["login"], sd["identifier"]
|
||||
info = run(f'gitlink-cli repo +info --owner {owner} --repo {repo} --format json')
|
||||
try:
|
||||
d = json.loads(info).get("data",{})
|
||||
mirror = d.get("mirror",False)
|
||||
fork_from = d.get("forked_from_project_id")
|
||||
url = f"https://www.gitlink.org.cn/{owner}/{repo}"
|
||||
deep.append(f"[{owner}/{repo}]({url})\n关键词: {', '.join(p['kws'])}\n镜像: {mirror}\nFork来源: {fork_from}\n{info}")
|
||||
# 知识图谱关系
|
||||
if fork_from:
|
||||
relations.append(f"{owner}/{repo} → Fork了 → 项目ID {fork_from}")
|
||||
if d.get("fork_info"):
|
||||
parent = d["fork_info"].get("fork_form_name","?")
|
||||
relations.append(f"{owner}/{repo} → Fork自 → {d['fork_info'].get('fork_project_user_login','?')}/{parent}")
|
||||
except: pass
|
||||
steps.append(("Step3-深度评估+Fork图谱", {"deep": len(deep), "relations": len(relations)}))
|
||||
|
||||
data = "=== 搜索结果 ===\n" + "\n".join([f"--- {kw} ---\n{run(f'gitlink-cli search +repos -k \"{kw}\" --format json')}" for kw in kws]) + "\n\n=== Fork关系 ===\n" + "\n".join(relations) + "\n\n=== 深度评估 ===\n" + "\n".join(deep)
|
||||
report = llm([
|
||||
{"role": "system", "content": "你是一个科研热点分析师。基于 GitLink 真实数据生成热点追踪+知识图谱报告。所有仓库链接必须用 gitlink.org.cn 域名,不要用 github.com。"},
|
||||
{"role": "user", "content": f"""当前日期: {NOW}
|
||||
研究主题: {user_input}
|
||||
关键词: {', '.join(kws)}
|
||||
|
||||
请生成报告(日期写「{NOW}」):
|
||||
1. 热点概览(项目数、语言、活跃项目比例)
|
||||
2. 项目排行榜(含成熟度评分,仓库名用 gitlink.org.cn 超链接,不要用 github.com)
|
||||
3. **领域知识图谱**:用 Mermaid 流程图画出该研究领域的知识结构图,包含核心概念、子方向、关键技术及其关系(不是项目Fork关系,而是学术概念之间的关系)
|
||||
4. 趋势洞察与建议
|
||||
|
||||
Mermaid 知识图谱示例格式(使用纯文本,不要用 HTML 标签或 br。**每个连接单独一行,不要用 & 号连接多个节点**):
|
||||
```mermaid
|
||||
flowchart LR
|
||||
A[核心概念] --> B[子方向1]
|
||||
A --> C[子方向2]
|
||||
B --> D[技术方法1]
|
||||
C --> E[技术方法2]
|
||||
```
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
# 清理 AI 在 Mermaid 代码块中混入的 HTML 标签和非法语法
|
||||
report_clean = re.sub(r'<[^>]+>', '', report)
|
||||
report_clean = re.sub(r'(\w+)\s*&', '', report_clean) # 去掉 X & Y --> Z 中的 &
|
||||
steps.append(("Step4-报告", {"len": len(report_clean)}))
|
||||
return report_clean, steps
|
||||
|
||||
|
||||
def lab_insight(user_input):
|
||||
"""项目洞悉:一个仓库的综合全息分析"""
|
||||
steps = []
|
||||
parts = user_input.replace(" ","").split("/")
|
||||
if len(parts) < 2: return "请提供 owner/repo 格式", []
|
||||
o, r = parts[0], parts[1]
|
||||
url_s = f"https://www.gitlink.org.cn/{o}/{r}"
|
||||
|
||||
info = run(f'gitlink-cli repo +info --owner {o} --repo {r} --format json')
|
||||
prs = run(f'gitlink-cli pr +list --owner {o} --repo {r} --format json')
|
||||
issues = run(f'gitlink-cli issue +list --owner {o} --repo {r} --format json')
|
||||
steps.append(("Step1-数据采集", {}))
|
||||
|
||||
# 提取贡献者
|
||||
authors = set()
|
||||
try:
|
||||
for i in json.loads(prs).get("data",{}).get("issues",[]):
|
||||
if i.get("author_login"): authors.add(i["author_login"])
|
||||
except: pass
|
||||
user_d = []
|
||||
for a in list(authors)[:5]:
|
||||
u = run(f'gitlink-cli user +info --login {a} --format json')
|
||||
user_d.append(f"# {a}\n{u}")
|
||||
|
||||
data = f"# [{o}/{r}]({url_s})\n{info}\n\n# PR\n{prs}\n\n# Issues\n{issues}\n\n" + "\n".join(user_d)
|
||||
report = llm([
|
||||
{"role": "system", "content": f"你是一个项目洞悉分析师。当前日期{NOW}。综合仓库数据生成全息分析报告。"},
|
||||
{"role": "user", "content": f"""仓库: [{o}/{r}]({url_s})
|
||||
贡献者: {', '.join(authors) if authors else '无'}
|
||||
|
||||
请综合以下数据生成项目洞悉报告,包含:
|
||||
1. 项目概况(语言、规模、描述)
|
||||
2. 社区活跃度(贡献者、PR、Issue)
|
||||
3. 团队画像(核心贡献者特点)
|
||||
4. 综合健康度评估与建议
|
||||
所有仓库名用超链接 [owner/repo](https://www.gitlink.org.cn/owner/repo)。
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step2-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
def lab_compliance(user_input):
|
||||
"""合规复现检查:License、README、CI、Release"""
|
||||
steps = []
|
||||
parts = user_input.replace(" ","").split("/")
|
||||
if len(parts) < 2: return "请提供 owner/repo 格式", []
|
||||
o, r = parts[0], parts[1]
|
||||
url_s = f"https://www.gitlink.org.cn/{o}/{r}"
|
||||
|
||||
info = run(f'gitlink-cli repo +info --owner {o} --repo {r} --format json')
|
||||
builds = run(f'gitlink-cli ci +builds --owner {o} --repo {r} --format json')
|
||||
steps.append(("Step1-数据采集", {}))
|
||||
|
||||
# 提取关键字段
|
||||
has_license, has_readme, has_ci, size, desc, release = "?", "?", "?", "?", "?", 0
|
||||
try:
|
||||
d = json.loads(info).get("data",{})
|
||||
has_license = "✅ 有" if d.get("license_id") else "❌ 无"
|
||||
has_readme = "✅ 有" if d.get("description") else "⚠️ 可能无"
|
||||
has_ci = "✅ 已激活" if d.get("open_devops") else "❌ 未激活"
|
||||
size = d.get("size","?")
|
||||
desc = (d.get("description") or "无描述")[:100]
|
||||
release = d.get("version_releases_count",0)
|
||||
except: pass
|
||||
|
||||
data = f"# [{o}/{r}]({url_s})\nLicense: {has_license}\nCI: {has_ci}\nSize: {size}\nRelease: {release}\nDesc: {desc}\n{info}\n\n# CI Builds\n{builds}"
|
||||
report = llm([
|
||||
{"role": "system", "content": f"你是一个开源合规分析师。当前日期{NOW}。检查仓库的合规性和可复现性。"},
|
||||
{"role": "user", "content": f"""仓库: [{o}/{r}]({url_s})
|
||||
|
||||
检查结果:
|
||||
- License: {has_license}
|
||||
- CI激活: {has_ci}
|
||||
- Release: {release} 个
|
||||
- 描述: {desc}
|
||||
|
||||
请在此基础上生成合规检查报告:
|
||||
1. License 合规性(是否有许可证、是否开源友好)
|
||||
2. 文档完整性(README、描述)
|
||||
3. CI/CD 完善度(是否激活、构建历史)
|
||||
4. 可复现性(Release、依赖管理)
|
||||
5. 综合评分(满分 20)和改进建议
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step2-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
def lab_match(user_input):
|
||||
"""协作匹配:找入门 Issue + 评估社区友好度"""
|
||||
steps = []
|
||||
parts = user_input.replace(" ","").split("/")
|
||||
if len(parts) < 2: return "请提供 owner/repo 格式", []
|
||||
o, r = parts[0], parts[1]
|
||||
url_s = f"https://www.gitlink.org.cn/{o}/{r}"
|
||||
|
||||
info = run(f'gitlink-cli repo +info --owner {o} --repo {r} --format json')
|
||||
prs = run(f'gitlink-cli pr +list --owner {o} --repo {r} --format json')
|
||||
issues = run(f'gitlink-cli issue +list --owner {o} --repo {r} --state open --format json')
|
||||
steps.append(("Step1-数据采集", {}))
|
||||
|
||||
data = f"# [{o}/{r}]({url_s})\n{info}\n\n# PR\n{prs}\n\n# Open Issues\n{issues}"
|
||||
report = llm([
|
||||
{"role": "system", "content": f"你是一个开源协作匹配专家。当前日期{NOW}。评估项目对新贡献者的友好度。"},
|
||||
{"role": "user", "content": f"""仓库: [{o}/{r}]({url_s})
|
||||
|
||||
请生成协作匹配报告:
|
||||
1. 项目概览(技术栈、社区规模)
|
||||
2. 入门友好度分析:
|
||||
- 是否有 good-first-issue 标签
|
||||
- Issue 描述是否清晰
|
||||
- PR Review 是否及时
|
||||
3. 推荐适合贡献的方向(具体 Issue 或模块)
|
||||
4. 社区健康度(贡献者多样性、响应速度)
|
||||
仓库名用 gitlink.org.cn 超链接,不要用 github.com。
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step2-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
def lab_track(user_input):
|
||||
"""进度跟踪与预警:监控多个仓库的活动状态"""
|
||||
steps = []
|
||||
repos = [r.strip().replace(" ","") for r in user_input.split(",") if r.strip()]
|
||||
if not repos: return "请提供仓库列表,用逗号分隔", []
|
||||
|
||||
items = []
|
||||
warns = {"stale": [], "no_ci": [], "inactive": []}
|
||||
for repo in repos:
|
||||
if "/" not in repo: continue
|
||||
o, rn = repo.split("/")[:2]
|
||||
info = run(f'gitlink-cli repo +info --owner {o} --repo {rn} --format json')
|
||||
try:
|
||||
d = json.loads(info).get("data",{})
|
||||
contrib = d.get("contributor_users_count",0)
|
||||
ci = d.get("open_devops",False)
|
||||
updated = d.get("full_name","?")
|
||||
items.append({"repo": repo, "contrib": contrib, "ci": ci, "data": d})
|
||||
if not ci: warns["no_ci"].append(repo)
|
||||
if contrib == 0: warns["inactive"].append(repo)
|
||||
except: pass
|
||||
|
||||
steps.append(("Step1-巡检", {"count": len(items), "warns": {k: len(v) for k,v in warns.items()}}))
|
||||
|
||||
def repo_info_line(repo):
|
||||
o, rn = repo.split("/")[:2]
|
||||
return f"# {repo}\n{run(f'gitlink-cli repo +info --owner {o} --repo {rn} --format json')}"
|
||||
data_lines = [repo_info_line(r) for r in repos if "/" in r]
|
||||
data = "\n\n".join(data_lines)
|
||||
warn_info = "\n".join([f"- ⚠️ {r}: {'CI未激活' if r in warns['no_ci'] else ''} {'无活跃贡献者' if r in warns['inactive'] else ''}" for r in repos if r in warns['no_ci'] or r in warns['inactive']]) or "无预警"
|
||||
report = llm([
|
||||
{"role": "system", "content": f"你是一个开源项目进度跟踪分析师。当前日期{NOW}。生成多仓库进度报告和预警。"},
|
||||
{"role": "user", "content": f"""监控仓库: {', '.join(repos)}
|
||||
预警信息: {warn_info}
|
||||
|
||||
请生成进度跟踪报告:
|
||||
1. 各仓库状态概览(健康/警告/危险)
|
||||
2. 详细状态表(贡献者、CI、活跃度)
|
||||
3. 预警详情(哪些仓库需要关注)
|
||||
4. 整体健康度评估
|
||||
|
||||
{data}"""}
|
||||
])
|
||||
steps.append(("Step3-报告", {"len": len(report)}))
|
||||
return report, steps
|
||||
|
||||
|
||||
LAB_AGENTS = {
|
||||
"lab-hotspot": lab_hotspot,
|
||||
"lab-insight": lab_insight,
|
||||
"lab-compliance": lab_compliance,
|
||||
"lab-match": lab_match,
|
||||
"lab-track": lab_track,
|
||||
}
|
||||
|
||||
AGENTS = {
|
||||
"research-tracker": agent_research,
|
||||
"contributor-insight": agent_contributor,
|
||||
"issue-triage": agent_issue,
|
||||
"ci-health": agent_ci,
|
||||
"repo-health": agent_repo_health,
|
||||
"pr-analytics": agent_pr_analytics,
|
||||
"cross-search": agent_cross_search,
|
||||
"user-analysis": agent_user_analysis,
|
||||
"repo-compare": agent_repo_compare,
|
||||
**LAB_AGENTS,
|
||||
}
|
||||
|
||||
|
||||
# ── Routes ──
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
return render_template("index.html", skills=SKILL_INFO, url_map={v: k for k, v in SKILL_NAMES.items()})
|
||||
|
||||
|
||||
@app.route("/<slug>")
|
||||
def page(slug):
|
||||
name = SKILL_NAMES.get(slug, slug)
|
||||
info = SKILL_INFO.get(name)
|
||||
if not info:
|
||||
return "Skill not found", 404
|
||||
return render_template("skill.html", skill_name=name, info=info)
|
||||
|
||||
|
||||
@app.route("/api/run", methods=["POST"])
|
||||
def api_run():
|
||||
name = request.form.get("skill", "")
|
||||
user_input = request.form.get("input", "").strip()
|
||||
if not name or not user_input:
|
||||
return jsonify({"error": "缺少参数"}), 400
|
||||
|
||||
agent = AGENTS.get(name)
|
||||
if not agent:
|
||||
return jsonify({"error": f"未知 skill: {name}"}), 400
|
||||
|
||||
try:
|
||||
report, steps = agent(user_input)
|
||||
except Exception as e:
|
||||
return jsonify({"error": str(e), "traceback": traceback.format_exc()}), 500
|
||||
|
||||
timestamp = time.strftime("%Y%m%d_%H%M%S")
|
||||
(HISTORY_DIR / f"{name}_{timestamp}.md").write_text(
|
||||
f"# {SKILL_INFO[name]['title']} 报告\n\n## 输入\n{user_input}\n\n## 结果\n\n{report}\n\n---\n*生成: {time.strftime('%Y-%m-%d %H:%M:%S')}*",
|
||||
encoding="utf-8"
|
||||
)
|
||||
return jsonify({"report": report, "steps": steps})
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import argparse
|
||||
p = argparse.ArgumentParser()
|
||||
p.add_argument("--port", type=int, default=int(os.environ.get("PORT", 5000)))
|
||||
p.add_argument("--host", default="0.0.0.0")
|
||||
p.add_argument("--debug", action="store_true", default=False)
|
||||
args = p.parse_args()
|
||||
print(f"GitLink Skills Web Service: http://{args.host}:{args.port}")
|
||||
app.run(host=args.host, port=args.port, debug=args.debug)
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Deploy GitLink Skills Web Service to Alibaba Cloud."""
|
||||
import os
|
||||
import sys
|
||||
import subprocess
|
||||
|
||||
HOST = "121.41.212.97"
|
||||
PORT = 22
|
||||
USER = "root"
|
||||
PASSWORD = "<YOUR_PASSWORD>"
|
||||
API_KEY = "<YOUR_API_KEY>"
|
||||
|
||||
LOCAL_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
REMOTE_DIR = "/opt/gitlink-web"
|
||||
|
||||
try:
|
||||
import paramiko
|
||||
except ImportError:
|
||||
subprocess.check_call([sys.executable, "-m", "pip", "install", "paramiko", "-q"])
|
||||
import paramiko
|
||||
|
||||
def run_ssh(ssh, cmd):
|
||||
_, stdout, stderr = ssh.exec_command(cmd)
|
||||
exit_code = stdout.channel.recv_exit_status()
|
||||
out = stdout.read().decode().strip()
|
||||
err = stderr.read().decode().strip()
|
||||
return out, err, exit_code
|
||||
|
||||
def main():
|
||||
print(f"[1/8] Connecting to {HOST}...")
|
||||
ssh = paramiko.SSHClient()
|
||||
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||
ssh.connect(HOST, PORT, USER, PASSWORD, timeout=10)
|
||||
print(" OK - Connected")
|
||||
|
||||
print("[2/8] Installing system dependencies...")
|
||||
run_ssh(ssh, "apt-get update -qq && apt-get install -y -qq python3-pip npm nodejs 2>&1 | tail -3")
|
||||
|
||||
print("[3/8] Installing gitlink-cli...")
|
||||
run_ssh(ssh, "npm install -g gitlink-cli 2>&1 | tail -3")
|
||||
v, _, _ = run_ssh(ssh, "gitlink-cli version 2>&1 || echo 'not found'")
|
||||
print(f" gitlink-cli: {v}")
|
||||
|
||||
print(f"[4/8] Creating {REMOTE_DIR}...")
|
||||
run_ssh(ssh, f"mkdir -p {REMOTE_DIR}/templates {REMOTE_DIR}/skills {REMOTE_DIR}/reports")
|
||||
|
||||
print("[5/8] Uploading files...")
|
||||
sftp = ssh.open_sftp()
|
||||
for root, dirs, files in os.walk(LOCAL_DIR):
|
||||
for fname in files:
|
||||
if fname.endswith(('.py', '.txt', '.html')) or fname in ('requirements.txt', 'README.md'):
|
||||
local_path = os.path.join(root, fname)
|
||||
rel_path = os.path.relpath(local_path, LOCAL_DIR)
|
||||
remote_path = f"{REMOTE_DIR}/{rel_path}"
|
||||
try:
|
||||
sftp.put(local_path, remote_path)
|
||||
print(f" -> {rel_path}")
|
||||
except Exception as e:
|
||||
print(f" FAIL {rel_path}: {e}")
|
||||
sftp.close()
|
||||
|
||||
print("[6/8] Installing Python dependencies...")
|
||||
run_ssh(ssh, f"cd {REMOTE_DIR} && pip3 install -r requirements.txt -q 2>&1 | tail -3")
|
||||
|
||||
print("[7/8] Creating systemd service...")
|
||||
service = '\n'.join([
|
||||
'[Unit]',
|
||||
'Description=GitLink Skills Web Service',
|
||||
'After=network.target',
|
||||
'',
|
||||
'[Service]',
|
||||
'Type=simple',
|
||||
'User=root',
|
||||
f'WorkingDirectory={REMOTE_DIR}',
|
||||
f'Environment="API_KEY={API_KEY}"',
|
||||
'Environment="API_MODEL=deepseek-chat"',
|
||||
f'ExecStart=/usr/bin/python3 {REMOTE_DIR}/app.py --port=80',
|
||||
'Restart=always',
|
||||
'RestartSec=5',
|
||||
'',
|
||||
'[Install]',
|
||||
'WantedBy=multi-user.target',
|
||||
])
|
||||
escaped_service = service.replace('"', '\\"').replace("'", "\\'")
|
||||
run_ssh(ssh, f"cat > /etc/systemd/system/gitlink-web.service << 'EOF'\n{service}\nEOF")
|
||||
|
||||
print("[8/8] Starting service...")
|
||||
run_ssh(ssh, "systemctl daemon-reload")
|
||||
run_ssh(ssh, "systemctl enable gitlink-web")
|
||||
_, err, code = run_ssh(ssh, "systemctl start gitlink-web")
|
||||
if err and "Unit" not in err:
|
||||
print(f" WARN: {err[:200]}")
|
||||
out, _, _ = run_ssh(ssh, "systemctl status gitlink-web --no-pager -l | head -15")
|
||||
print(f"\n {out.replace(chr(10), chr(10)+' ')}")
|
||||
|
||||
print(f"\nService URLs:")
|
||||
print(f" http://{HOST}/")
|
||||
print(f" http://{HOST}/research")
|
||||
print(f" http://{HOST}/contributor")
|
||||
|
||||
ssh.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
flask>=3.0
|
||||
requests>=2.31
|
||||
gunicorn>=21.2
|
||||
|
|
@ -0,0 +1,179 @@
|
|||
# gitlink-ci-health(CI 健康巡检)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作。CI 激活/关闭需通过 GitLink Web 界面操作,CLI 不提供对应命令。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
面向维护者的 CI/CD 健康度巡检工具:
|
||||
|
||||
1. **授权检查** — 确认仓库 CI 是否已激活
|
||||
2. **构建历史** — 获取近期构建列表
|
||||
3. **成功率统计** — 计算构建成功率和平均耗时
|
||||
4. **故障分析** — 识别频繁失败的构建及其原因
|
||||
5. **健康报告** — 生成 CI 健康度评分和改进建议
|
||||
|
||||
---
|
||||
|
||||
## 工作流:CI 健康巡检
|
||||
|
||||
### Step 1:检查 CI 授权状态
|
||||
|
||||
**方法 1(推荐)**:通过 `repo +info` 查看 `open_devops` 字段:
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
- `"open_devops": true` → CI 已激活
|
||||
- `"open_devops": false` → CI 未激活
|
||||
|
||||
**方法 2**:直接调用 `ci +builds`,CI 未激活时返回:
|
||||
|
||||
```json
|
||||
{"status": -1, "message": "接口数据异常"}
|
||||
```
|
||||
|
||||
> ⚠️ `ci +authorize` 命令在当前 CLI 版本(v0.1.18)中**不存在**。可用 CI 命令仅:`+builds`、`+logs`、`+restart`、`+stop`。
|
||||
|
||||
若 CI 未激活,报告中说明"CI 未启用",建议通过 GitLink Web 界面(仓库设置 → DevOps)开启,随后不再继续后续步骤。
|
||||
|
||||
### Step 2:获取构建历史
|
||||
|
||||
```bash
|
||||
gitlink-cli ci +builds --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
提取每次构建的:
|
||||
- `status` — 构建状态(success/failed/running/pending)
|
||||
- `created_at` / `finished_at` — 时间信息
|
||||
- `duration` — 耗时(如有)
|
||||
- `branch` — 触发分支
|
||||
|
||||
如构建数量 >30,取最近 30 次分析。
|
||||
|
||||
### Step 3:构建日志(失败构建)
|
||||
|
||||
对状态为 failed 的构建获取日志:
|
||||
|
||||
```bash
|
||||
gitlink-cli ci +logs --owner <owner> --repo <repo> --build <build_id> --format json
|
||||
```
|
||||
|
||||
> ⚠️ **控制调用量**:仅对最近 5 次失败构建获取日志,避免过多 API 调用。日志可能过大,提取关键错误行(最后 20 行)。
|
||||
|
||||
### Step 4:统计分析
|
||||
|
||||
#### 4.1 成功率计算
|
||||
|
||||
| 指标 | 计算方式 |
|
||||
|------|----------|
|
||||
| 整体成功率 | 成功构建数 / 总构建数 × 100% |
|
||||
| 近 10 次成功率 | 最近 10 次中成功占比 |
|
||||
| 平均修复时间 | 从失败到下次成功的平均间隔 |
|
||||
|
||||
#### 4.2 健康度评分(满分 20)
|
||||
|
||||
| 维度 | 权重 | 评分标准 |
|
||||
|------|------|----------|
|
||||
| CI 激活 | 4 | 已激活=4,未激活=0 |
|
||||
| 构建成功率 | 5 | ≥90%=5,≥80%=4,≥70%=3,≥50%=2,<50%=1 |
|
||||
| 近期稳定性 | 5 | 近10次全部成功=5,8-9次=4,6-7次=3,4-5次=2,<4次=1 |
|
||||
| 构建频率 | 3 | 每天有构建=3,2-3天=2,每周=1,更少=0 |
|
||||
| 修复速度 | 3 | 失败后1次内修复=3,2-3次=2,>3次=1 |
|
||||
|
||||
### Step 5:生成 CI 健康报告
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 🔧 CI 健康巡检报告:{{仓库名}}
|
||||
|
||||
> 巡检时间:{{当前时间}}
|
||||
> 仓库:{{full_name}}
|
||||
> CI 状态:{{ci_status_display}}
|
||||
|
||||
---
|
||||
|
||||
## 一、健康度总览
|
||||
|
||||
| 指标 | 数值 | 评分 |
|
||||
|------|------|------|
|
||||
| CI 激活状态 | {{activated_status}} | {{activate_score}}/4 |
|
||||
| 整体成功率 | {{success_rate}}%({{success_count}}/{{total_count}}) | {{success_score}}/5 |
|
||||
| 近期稳定性 | 近 10 次 {{recent_success}} 次成功 | {{stability_score}}/5 |
|
||||
| 构建频率 | {{build_frequency_desc}} | {{frequency_score}}/3 |
|
||||
| 修复速度 | {{repair_speed_desc}} | {{repair_score}}/3 |
|
||||
| **总分** | | **{{total_score}}/20** |
|
||||
|
||||
## 二、构建趋势
|
||||
|
||||
```
|
||||
最近 20 次构建:
|
||||
✅✅❌✅✅✅❌✅✅✅✅✅❌✅✅✅✅✅✅
|
||||
(✅=成功 ❌=失败)
|
||||
```
|
||||
|
||||
| 时间段 | 总构建 | 成功 | 失败 | 成功率 |
|
||||
|--------|--------|------|------|--------|
|
||||
| 最近 7 天 | {{w1_total}} | {{w1_success}} | {{w1_fail}} | {{w1_rate}}% |
|
||||
| 7-14 天 | {{w2_total}} | {{w2_success}} | {{w2_fail}} | {{w2_rate}}% |
|
||||
| 14-30 天 | {{w3_total}} | {{w3_success}} | {{w3_fail}} | {{w3_rate}}% |
|
||||
|
||||
## 三、故障分析
|
||||
|
||||
> 如无失败构建,输出:**🎉 分析期内无失败构建,CI 运行健康。**
|
||||
|
||||
| 构建 ID | 分支 | 失败时间 | 错误摘要 |
|
||||
|---------|------|----------|----------|
|
||||
| {{id}} | {{branch}} | {{time}} | {{error_summary}} |
|
||||
|
||||
### 故障模式分类
|
||||
|
||||
| 故障类型 | 次数 | 占比 |
|
||||
|----------|------|------|
|
||||
| 编译错误 | {{compile_count}} | {{compile_pct}}% |
|
||||
| 测试失败 | {{test_fail_count}} | {{test_fail_pct}}% |
|
||||
| 超时 | {{timeout_count}} | {{timeout_pct}}% |
|
||||
| 环境问题 | {{env_count}} | {{env_pct}}% |
|
||||
| 其他 | {{other_count}} | {{other_pct}}% |
|
||||
|
||||
## 四、改进建议
|
||||
|
||||
<!-- 根据分析结果,从以下列表中选择匹配的建议输出 -->
|
||||
|
||||
- **立即激活 CI**(当 CI 未激活时):前往 GitLink Web 界面 → 仓库设置 → DevOps 开启 CI/CD 服务(CLI 暂不支持 `ci +activate`)
|
||||
- **提升成功率**(当 success_rate < 80% 时):优先修复高频失败原因
|
||||
- **增加构建频率**(当构建频率评分 < 2 时):建议每次 push 触发 CI
|
||||
- **缩短修复时间**(当修复速度评分 < 2 时):建立 CI 失败告警
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| CI 未激活 | 报告 CI 状态为"未激活",建议通过 Web 界面开启,不再继续后续步骤 |
|
||||
| 无构建记录 | 标注"仓库暂无 CI 构建记录" |
|
||||
| `ci +logs` 返回空 | 标注"日志不可用" |
|
||||
| 构建总数 < 5 | 样本量不足,标注"数据有限,统计不具代表性" |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **CI 激活/关闭需通过 GitLink Web 界面**,CLI 不提供 `+activate`/`+deactivate` 命令
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**
|
||||
- ⚠️ **`ci +logs` 输出可能很大**,仅提取关键错误行
|
||||
- ⚠️ **构建历史无分页参数**,实际返回条数取决于 API
|
||||
- ⚠️ **CI 数据仅反映 GitLink 平台活动**,不包括第三方 CI 服务
|
||||
- ⚠️ **`repo +info` 的 `open_devops` 字段**是判断 CI 是否激活的最可靠方式
|
||||
|
|
@ -0,0 +1,247 @@
|
|||
# gitlink-contributor-insight(贡献者活跃度分析)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作,不会修改任何仓库。无需用户额外确认即可执行。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ 命令可用性声明
|
||||
|
||||
gitlink-cli 的命令集在持续演进中。以下命令**当前版本可能不可用**,执行前先验证:
|
||||
|
||||
| 命令 | 状态 | 替代方案 |
|
||||
|------|------|----------|
|
||||
| `repo +contributors` | ❌ 不可用 | 从 `pr +list` 提取 `author_login` + `repo +info` 获取 `contributor_users_count` |
|
||||
| `user +heatmap` | ❌ 不可用 | 从 PR 时间戳手动推算活跃天数 |
|
||||
| `user +stats` | ❌ 不可用 | 从 `pr +list` 统计 PR 数;Issue 数通过 `issue +list` 获取 |
|
||||
| `user +trends` | ❌ 不可用 | 从 PR 时间分布手动判断趋势(上升/平稳/下降) |
|
||||
| `repo +info` | ✅ 可用 | — |
|
||||
| `pr +list` | ✅ 可用 | — |
|
||||
| `user +info` | ✅ 可用 | — |
|
||||
| `issue +list` | ✅ 可用 | — |
|
||||
|
||||
> **核心原则**:优先使用可用的 Shortcut 命令。当所需命令不可用时,从 `pr +list` 和 `user +info` 中提取等效数据,并在报告中标注"数据来源:PR 列表(命令 X 不可用)"。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
面向开源社区管理者和维护者的贡献者分析工具:
|
||||
|
||||
1. **项目概览** — 获取仓库贡献者规模和基本信息
|
||||
2. **贡献数据分析** — 通过 `pr +list` 提取每位贡献者的 PR 数量和时间分布
|
||||
3. **用户画像** — 通过 `user +info` 了解贡献者背景
|
||||
4. **趋势判断** — 从 PR 时间序列推断贡献趋势
|
||||
5. **洞察报告** — 生成贡献者活跃度排名和团队健康度评估
|
||||
|
||||
---
|
||||
|
||||
## 工作流:贡献者分析全流程
|
||||
|
||||
### Step 1:获取仓库基本信息
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
提取:`contributor_users_count`、`full_name`、`description`、`default_branch`、`fork_info`(如为 Fork 项目)。
|
||||
|
||||
### Step 2:获取贡献者列表(通过 PR 数据)
|
||||
|
||||
由于 `repo +contributors` 不可用,改用两步获取贡献者:
|
||||
|
||||
```bash
|
||||
# 2a. 获取所有 PR(含已合并和已关闭)
|
||||
gitlink-cli pr +list --owner <owner> --repo <repo> --format json
|
||||
|
||||
# 2b. 如果 Issue 数据也需要
|
||||
gitlink-cli issue +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
从 `pr +list` 返回数据中:
|
||||
- 提取所有唯一的 `author_login` 作为实际代码贡献者
|
||||
- 统计每位作者的 PR 数(`pull_request_status`: 0=open, 1=merged, 2=closed)
|
||||
- 记录每个 PR 的 `pr_full_time` 用于时间分析
|
||||
- 记录每个 PR 的 `journals_count`(评论/审核活动数)
|
||||
|
||||
从 `issue +list` 返回数据中:
|
||||
- 提取所有唯一的 `author_login` 作为 Issue 参与者
|
||||
- 统计每位作者的 Issue 数
|
||||
|
||||
> 如果 PR 数量较多(>50),按 `author_login` 聚合后取 PR 数前 10 的贡献者分析,报告中注明"基于 Top 10 分析"。
|
||||
|
||||
### Step 3:逐位贡献者深度分析
|
||||
|
||||
对每位贡献者执行:
|
||||
|
||||
```bash
|
||||
# 用户基本信息
|
||||
gitlink-cli user +info --login <username> --format json
|
||||
```
|
||||
|
||||
从 `user +info` 提取:`login`、`name`、`created_time`(注册时间)、`user_projects_count`、`user_org_count`、`user_identity`。
|
||||
|
||||
**如果 `user +heatmap/+stats/+trends` 可用**(未来版本),补充执行。当前版本用以下替代方案:
|
||||
|
||||
| 维度 | 替代数据源 | 分析要点 |
|
||||
|------|----------|----------|
|
||||
| 贡献频率 | PR 时间戳列表 | 统计活跃天数、相邻 PR 间隔、判断"持续贡献者"还是"间歇参与者" |
|
||||
| 贡献产出 | `pr +list` 聚合 | PR 数、Issue 数,区分"代码贡献者"和"问题反馈者" |
|
||||
| 活跃趋势 | PR 按日/周聚合 | 贡献量上升/稳定/下降,识别"上升期贡献者"和"逐渐淡出者" |
|
||||
|
||||
> ⚠️ **控制 API 调用**:贡献者 >15 人时,仅分析 PR 数最高的前 10 位。每人 1 次 `user +info` 调用(共 ≤10 次),PR 数据已在 Step 2 全量获取。
|
||||
|
||||
### Step 4:贡献者分级与分类
|
||||
|
||||
#### 4.1 活跃度分级
|
||||
|
||||
| 级别 | 判定标准 |
|
||||
|------|----------|
|
||||
| 🔥 **核心贡献者** | 最近 30 天有贡献 + 总贡献 PR ≥ 5(或总贡献 PR > 10) |
|
||||
| 🌟 **活跃贡献者** | 最近 60 天有贡献 + 总贡献 ≥ 3 |
|
||||
| 🌱 **新兴贡献者** | 最近 90 天首次出现 + 贡献频率上升 |
|
||||
| 💤 **休眠贡献者** | 最近 90 天无贡献 + 历史有贡献 |
|
||||
|
||||
> **年轻项目特殊处理**:项目历史 < 30 天时,放宽标准——所有活跃贡献者均可标记为核心贡献者,报告中注明"项目处于早期阶段,分级标准已放宽"。
|
||||
|
||||
#### 4.2 贡献类型分类
|
||||
|
||||
| 类型 | 判定 |
|
||||
|------|------|
|
||||
| **代码贡献者** | PR 数量 > Issue 数量 |
|
||||
| **问题反馈者** | Issue 数量 > PR 数量 |
|
||||
| **全能贡献者** | PR 和 Issue 数量均衡(差异 ≤ 1) |
|
||||
|
||||
### Step 5:生成贡献者洞察报告
|
||||
|
||||
按下方输出模板生成报告,并根据数据可用性灵活调整章节。
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 👥 贡献者洞察报告:{{仓库名}}
|
||||
|
||||
> 分析时间:{{当前时间}}
|
||||
> 仓库:{{full_name}}
|
||||
> 总贡献者:{{contributor_users_count}} 人,本次分析:{{analyzed_count}} 人
|
||||
|
||||
---
|
||||
|
||||
## 一、团队概览
|
||||
|
||||
| 指标 | 数值 |
|
||||
|------|------|
|
||||
| 总贡献者 | {{contributor_users_count}} |
|
||||
| 核心贡献者 | {{core_count}} |
|
||||
| 活跃贡献者 | {{active_count}} |
|
||||
| 新兴贡献者 | {{new_count}} |
|
||||
| 休眠贡献者 | {{dormant_count}} |
|
||||
| 近 30 天活跃率 | {{active_30d_rate}}% |
|
||||
|
||||
---
|
||||
|
||||
## 二、贡献者活跃度排行榜
|
||||
|
||||
| 排名 | 贡献者 | 级别 | 类型 | 活跃天数 | 总PR | 总Issue | 趋势 |
|
||||
|------|--------|------|------|---------|------|---------|------|
|
||||
| 1 | {{login}} | 🔥 | 代码 | {{d}} 天 | {{pr_count}} | {{issue_count}} | ↑ |
|
||||
| ... | ... | ... | ... | ... | ... | ... | ... |
|
||||
|
||||
---
|
||||
|
||||
## 三、重点贡献者分析
|
||||
|
||||
> 仅展示核心/活跃贡献者。
|
||||
|
||||
### 🔥 {{login}}(核心贡献者)
|
||||
|
||||
| 维度 | 数据 | 说明 |
|
||||
|------|------|------|
|
||||
| 活跃天数 | {{d}} 天 | {{评价}} |
|
||||
| 总 PR 数 | {{pr_count}} | |
|
||||
| 总 Issue 数 | {{issue_count}} | |
|
||||
| 贡献趋势 | {{trend_direction}} | {{trend_comment}} |
|
||||
|
||||
**PR 贡献明细**:(可选,数据充足时展示)
|
||||
|
||||
| PR# | 标题 | 日期 | 类型 |
|
||||
|-----|------|------|------|
|
||||
| ... | ... | ... | feat/fix/refactor |
|
||||
|
||||
---
|
||||
|
||||
## 四、团队健康度评估
|
||||
|
||||
### 健康度指标
|
||||
|
||||
| 指标 | 状态 | 说明 |
|
||||
|------|------|------|
|
||||
| 核心贡献者占比 | {{core_ratio}}% | {{core_comment}} |
|
||||
| 新老比例 | {{new_old_ratio}} | {{new_old_comment}} |
|
||||
| 贡献频率稳定性 | {{stability}} | {{stability_comment}} |
|
||||
| 知识分散度 | {{bus_factor}} | {{bus_factor_comment}} |
|
||||
|
||||
### 风险提示
|
||||
|
||||
- ⚠️ **核心贡献者不足**(当 core_count < 3 时):仅 {{core_count}} 位核心贡献者,存在单点依赖风险(Bus Factor = {{core_count}})。
|
||||
- ⚠️ **贡献者流失**(当 dormant_rate > 50% 时):超过一半的贡献者已不活跃,需要关注社区留存。
|
||||
- ⚠️ **缺少新鲜血液**(当 new_count == 0 时):近期无新兴贡献者,建议通过 Good First Issue 等方式吸引新人。
|
||||
- ℹ️ **项目处于早期阶段**(当项目历史 < 30 天时):贡献者分级标准已放宽,以上风险置信度有限。
|
||||
- ✅ **团队健康**(当以上情况均不满足时):贡献者结构合理,团队运转良好。
|
||||
|
||||
---
|
||||
|
||||
## 五、社区建设建议
|
||||
|
||||
1. **激励核心贡献者**:{{核心贡献者维护建议}}
|
||||
2. **激活休眠贡献者**:{{休眠贡献者召回建议}}
|
||||
3. **吸引新贡献者**:{{新贡献者吸引建议}}
|
||||
4. **平衡贡献类型**:{{贡献类型平衡建议}}
|
||||
|
||||
---
|
||||
|
||||
## 📋 数据来源与局限性
|
||||
|
||||
| 数据维度 | 来源 | 可靠性 |
|
||||
|----------|------|--------|
|
||||
| 贡献者数量 | `repo +info` | ✅ 可靠 |
|
||||
| PR 贡献数据 | `pr +list` 全量 | ✅ 可靠 |
|
||||
| Issue 数据 | `issue +list` | ✅ 可靠 |
|
||||
| 用户信息 | `user +info` | ✅ 可靠 |
|
||||
| 贡献热力图 | 不可用(命令未实现) | ❌ 缺失 |
|
||||
| 统计信息 | 不可用(命令未实现) | ❌ 缺失 |
|
||||
| 趋势数据 | 不可用(命令未实现) | ❌ 缺失 |
|
||||
|
||||
> **局限性**:本报告仅反映 GitLink 平台活动,不包括其他平台(GitHub、GitLab 等)的数据。
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| `repo +contributors` 不可用(当前版本常态) | 从 `pr +list` 的 `author_login` 提取贡献者列表 |
|
||||
| `user +heatmap` / `+stats` / `+trends` 不可用 | 从 PR 时间戳推算活跃天数,PR 聚合得产出量,时间分布得趋势 |
|
||||
| `pr +list` 返回空 | 标注"仓库暂无 PR 数据",仅展示 `repo +info` 基本信息 |
|
||||
| `user +info` 返回空 | 标注"用户信息不可用",仅展示 PR 统计 |
|
||||
| 贡献者 > 15 人 | 仅分析 PR 数最高的前 10 位,报告中注明"基于 Top 10 分析" |
|
||||
| 项目历史 < 30 天 | 放宽分级标准,报告中注明"项目处于早期阶段" |
|
||||
| `issue +list` 返回空 | Issue 数列为 0,贡献类型统一标注"代码贡献者" |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **本 Skill 为纯只读分析**,不会修改任何仓库
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**,无 git 上下文时询问用户
|
||||
- ⚠️ **核心数据来源为 `pr +list`**:当前版本 gitlink-cli 中 `user +heatmap/+stats/+trends` 不可用,分析主要依赖 PR 列表数据
|
||||
- ⚠️ **`repo +contributors` 不可用**:贡献者列表从 PR 作者提取,可能与实际 `contributor_users_count` 有差异(后者包含未提 PR 的参与者)
|
||||
- ⚠️ **数据仅反映 GitLink 平台活动**:不包括 GitHub 或其他平台的数据
|
||||
- ℹ️ **参照样例**:[`EXAMPLES.md`](EXAMPLES.md) 包含手动执行和 Agent 调用两种场景的完整样例,[`examples/jiangtx-gitlink-cli.md`](examples/jiangtx-gitlink-cli.md) 包含原始命令输出数据
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
# gitlink-issue-triage(Issue 智能分拣)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作,不会修改任何 Issue。无需用户额外确认即可执行。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
对仓库的开放 Issue 进行全量扫描和智能分类,输出结构化的分拣报告:
|
||||
|
||||
1. **类型分类** — 判断每个 Issue 是 Bug、功能请求、文档问题还是使用咨询
|
||||
2. **紧急度评估** — 根据关键词和优先级字段标注紧急程度
|
||||
3. **复杂度预估** — 根据描述详尽程度评估修复难度
|
||||
4. **行动建议** — 给出具体处理建议(立即修复/需讨论/可关闭/适合作入门任务)
|
||||
|
||||
---
|
||||
|
||||
## 工作流:Issue 全量分拣
|
||||
|
||||
### Step 1:获取项目概览
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
提取 `issues_count` 了解 Issue 池总量,`default_branch` 确认主分支。
|
||||
|
||||
### Step 2:获取全部开放 Issue
|
||||
|
||||
```bash
|
||||
gitlink-cli issue +list --owner <owner> --repo <repo> --state open --format json
|
||||
```
|
||||
|
||||
> ⚠️ **已知问题**:`--state open` 过滤不准确,返回列表可能包含已关闭的 Issue。需在客户端按 `status_id` 二次过滤:保留 `status_id` = 1(新增)或 2(正在解决),排除 3(已解决)、5(关闭)。`status_id` = 0 纳入分析但标注"状态异常"。
|
||||
|
||||
如果返回数量 >20,追加分页参数获取全部:
|
||||
|
||||
```bash
|
||||
gitlink-cli issue +list --owner <owner> --repo <repo> --state open --format json --page 2
|
||||
```
|
||||
|
||||
### Step 3:逐条深入分析
|
||||
|
||||
对过滤后的每条 Issue,获取详情:
|
||||
|
||||
```bash
|
||||
gitlink-cli issue +view --owner <owner> --repo <repo> --number <project_issues_index> --format json
|
||||
```
|
||||
|
||||
分析以下维度:
|
||||
|
||||
| 维度 | 关注字段 | 分析要点 |
|
||||
|------|----------|----------|
|
||||
| 类型 | `subject`, `description` | 标题和描述中的关键词 |
|
||||
| 紧急度 | `priority`, `subject` | 优先级字段 + 标题紧急信号 |
|
||||
| 复杂度 | `description` 长度 | 描述的详细程度、是否有复现步骤 |
|
||||
| 活跃度 | `comment_journals_count`, `updated_at` | 讨论热度和最后活跃时间 |
|
||||
| 分配状态 | `assigners` | 是否已有人负责 |
|
||||
|
||||
### Step 4:分类规则
|
||||
|
||||
#### 4.1 类型分类(type)
|
||||
|
||||
| 类型 | 匹配规则 |
|
||||
|------|----------|
|
||||
| **bug** | 标题/描述含 `bug`、`错误`、`失败`、`崩溃`、`异常`、`修复`、`fix`、`修复`、`报错`、`不工作`、`问题`(上下文为故障时) |
|
||||
| **feature** | 标题/描述含 `feature`、`新增`、`添加`、`希望`、`建议`、`需要`、`支持`、`实现`,且非故障描述 |
|
||||
| **docs** | 标题/描述含 `文档`、`doc`、`README`、`说明`、`教程`、`注释` |
|
||||
| **question** | 标题/描述含 `如何`、`怎么`、`是否`、`能不能`、`请问`、`为什么`,且以问号结尾或明显为咨询语气 |
|
||||
| **refactor** | 标题/描述含 `重构`、`refactor`、`优化结构`、`代码清理`、`技术债` |
|
||||
| **ci** | 标题/描述含 `CI`、`CD`、`构建`、`部署`、`pipeline`、`自动化`、`测试环境` |
|
||||
| **meta** | 维护者创建的元讨论帖、反馈收集帖、公告,无具体技术任务指向 |
|
||||
| **other** | 不匹配以上任何类型时的兜底分类 |
|
||||
|
||||
#### 4.2 紧急度评估(urgency)
|
||||
|
||||
| 级别 | 判定条件 |
|
||||
|------|----------|
|
||||
| **urgent** | 标题含 `紧急`、`urgent`、`hotfix`、`生产`、`线上`、`崩溃`;或 `priority.name` = "紧急" |
|
||||
| **high** | `priority.name` = "高";或标题含 `严重`、`阻塞`、`关键` |
|
||||
| **normal** | 默认级别;`priority.name` = "正常" 或无优先级 |
|
||||
| **low** | `priority.name` = "低";或标题含 `优化`、`nice to have`、`小建议` |
|
||||
|
||||
#### 4.3 复杂度预估(complexity)
|
||||
|
||||
| 级别 | 判定条件 |
|
||||
|------|----------|
|
||||
| **easy** | 描述简洁明确,有清晰复现步骤或单一功能点;`description` < 300 字且范围明确 |
|
||||
| **medium** | 涉及多个文件/模块,需要一定背景了解;`description` 300~800 字,或虽有描述但需推断 |
|
||||
| **hard** | 涉及架构变更、新子系统、跨模块重构;`description` > 800 字或非常模糊 |
|
||||
|
||||
> **特殊情况**:`description` 仅含图片附件链接而无可读文字 → 视为"描述缺失",复杂度标记为 hard(因无法评估),建议标记为 discuss。
|
||||
|
||||
#### 4.4 行动建议(action)
|
||||
|
||||
| 建议 | 判定条件 |
|
||||
|------|----------|
|
||||
| **fix-now** | bug + urgent/high |
|
||||
| **investigate** | bug + normal/low,需先确认复现 |
|
||||
| **implement** | feature + 描述清晰 + 范围明确 |
|
||||
| **discuss** | 描述模糊、需求不清、或 question 类型 |
|
||||
| **close-candidate** | 超过 90 天无更新、无评论、无分配 |
|
||||
| **good-first-issue** | complexity=easy + 无人分配 + 范围明确 |
|
||||
|
||||
### Step 5:生成分拣报告
|
||||
|
||||
将所有分析结果组织输出。
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 📊 {{仓库名}} Issue 分拣报告
|
||||
|
||||
> 分析时间:{{当前时间}}
|
||||
> Issue 总数:{{total}},开放:{{open_count}},本次分析:{{analyzed_count}} 条
|
||||
|
||||
---
|
||||
|
||||
## 总览
|
||||
|
||||
| 指标 | 数量 |
|
||||
|------|------|
|
||||
| Bug | {{bug_count}} |
|
||||
| 功能请求 | {{feature_count}} |
|
||||
| 文档 | {{docs_count}} |
|
||||
| 咨询 | {{question_count}} |
|
||||
| 元讨论 | {{meta_count}} |
|
||||
| 其他 | {{other_count}} |
|
||||
| **需立即处理** | {{urgent_count}} |
|
||||
| **适合入门** | {{good_first_issue_count}} |
|
||||
|
||||
---
|
||||
|
||||
## 🔴 需立即处理
|
||||
|
||||
> 如本段为空,输出:*当前无紧急 Issue,状态健康。*
|
||||
|
||||
| # | 标题 | 类型 | 紧急度 | 复杂度 | 建议 | 备注 |
|
||||
|---|------|------|--------|--------|------|------|
|
||||
| {{number}} | {{subject}} | bug | urgent | medium | fix-now | |
|
||||
| ... | ... | ... | ... | ... | ... | ... |
|
||||
|
||||
## 🟡 建议近期处理
|
||||
|
||||
> 如本段为空,输出:*当前无高优先级 Issue。*
|
||||
|
||||
| # | 标题 | 类型 | 紧急度 | 复杂度 | 建议 | 备注 |
|
||||
|---|------|------|--------|--------|------|------|
|
||||
| ... | ... | bug/feature | high/normal | easy/medium | investigate/implement | |
|
||||
|
||||
## 🟢 可延迟 / 需讨论
|
||||
|
||||
> 如本段为空,输出:*所有 Issue 均已明确,无需额外讨论。*
|
||||
|
||||
| # | 标题 | 类型 | 紧急度 | 复杂度 | 建议 | 备注 |
|
||||
|---|------|------|--------|--------|------|------|
|
||||
| ... | ... | question/feature | normal/low | medium/hard | discuss | |
|
||||
|
||||
## ⭐ 适合入门(Good First Issue)
|
||||
|
||||
> 如本段为空,输出:*暂无完全符合条件的入门 Issue。建议在后续工作中拆分出简单子任务。*
|
||||
|
||||
| # | 标题 | 类型 | 复杂度 | 推荐理由 |
|
||||
|---|------|------|--------|----------|
|
||||
| {{number}} | {{subject}} | bug/docs | easy | 范围明确,单文件修改 |
|
||||
| ... | ... | ... | ... | ... |
|
||||
|
||||
## ⚠️ 候选关闭(90+ 天无活动)
|
||||
|
||||
> 如本段为空,输出:*无长期不活跃的 Issue。*
|
||||
|
||||
| # | 标题 | 最后更新 | 建议 |
|
||||
|---|------|----------|------|
|
||||
| {{number}} | {{subject}} | {{updated_at}} | 评论询问是否仍需要,如无回应可关闭 |
|
||||
|
||||
---
|
||||
|
||||
## 📋 维护建议
|
||||
|
||||
1. **立即行动**:{{urgent_count}} 个紧急 Issue 需要优先处理
|
||||
2. **本周目标**:建议处理 {{suggested_this_week}} 个 Issue(suggested_this_week = 建议近期处理段中的 Issue 数量,即 bug+normal/high + feature+清晰描述 的总数)
|
||||
3. **社区引导**:{{good_first_issue_count}} 个 Issue 适合标记为 good first issue,吸引新贡献者
|
||||
4. **清理计划**:{{close_candidate_count}} 个 Issue 长期无活动,建议批量确认后关闭
|
||||
5. {{#if no_tags}}本仓库未使用 Issue 标签系统,建议建立标签体系(bug/feature/docs/question/meta/help-wanted/good-first-issue)以提升管理效率{{/if}}
|
||||
6. {{#if status_anomalies}}本批次有 {{status_anomaly_count}} 个 Issue 状态异常(status_id=0),建议在平台上手动确认{{/if}}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| 无开放 Issue | 输出 `repo +info` 概览后,恭喜维护者"Issue 池已清空" |
|
||||
| Issue 数量 >50 | 优先分析最近 30 天更新的 Issue,其余标记为"待分批处理" |
|
||||
| 全部 Issue 无标签/无优先级 | 分类完全依赖标题和描述关键词分析,并在报告末尾建议建立标签体系 |
|
||||
| `description` 为空或仅含图片/附件链接 | 标注"描述缺失",类型仅根据标题判断,复杂度标为 hard,建议标记为 discuss |
|
||||
| `status_id` = 0(未知) | 纳入分析但标注"状态异常" |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **`issue +view` 使用 `--number`(网页编号)**,非数据库 ID
|
||||
- ✅ **本 Skill 为纯只读分析**,不会修改任何 Issue
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**,无 git 上下文时询问用户
|
||||
- ⚠️ **`issue +list --state open` 过滤不准确**,必须客户端按 `status_id` 二次过滤
|
||||
- ⚠️ **分类规则是启发式的**,AI 应根据实际内容做判断,不要机械匹配关键词
|
||||
- ⚠️ **Issue 数量多时分批处理**,超过 50 条建议先按更新时间排序,优先分析最近活跃的
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# gitlink-research-tracker(科研热点追踪)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作,不会修改任何仓库。无需用户额外确认即可执行。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
面向科研场景的技术调研工具,帮助研究者快速了解 GitLink 平台上的技术格局:
|
||||
|
||||
1. **多关键词搜索** — 将研究主题拆解为多个关键词,全面覆盖相关项目
|
||||
2. **项目深度评估** — 从活跃度、社区规模、代码产出等维度评估项目健康度
|
||||
3. **横向对比** — 对比同类项目的核心指标,识别领先者和潜力项目
|
||||
4. **趋势洞察** — 基于更新时间、贡献者增长、版本发布频率等推断技术趋势
|
||||
5. **调研报告** — 生成结构化的技术调研简报
|
||||
|
||||
---
|
||||
|
||||
## 工作流:技术调研全流程
|
||||
|
||||
### Step 1:理解研究主题,拆解搜索关键词
|
||||
|
||||
根据用户的研究主题,拆解 3~5 个搜索关键词:
|
||||
|
||||
| 研究主题示例 | 拆解关键词 |
|
||||
|-------------|-----------|
|
||||
| "AI Agent 工具" | `agent`, `AI`, `LLM`, `智能体`, `copilot` |
|
||||
| "DevOps 流水线" | `devops`, `pipeline`, `CI/CD`, `自动化部署`, `容器` |
|
||||
| "开源合规" | `license`, `compliance`, `合规`, `sbom`, `供应链安全` |
|
||||
| "微服务框架" | `microservice`, `微服务`, `rpc`, `服务网格`, `cloud native` |
|
||||
|
||||
> **原则**:关键词应覆盖中英文、缩写全称、技术术语和行业叫法。每个关键词独立搜索。
|
||||
|
||||
### Step 2:多关键词搜索
|
||||
|
||||
对每个关键词执行搜索:
|
||||
|
||||
```bash
|
||||
gitlink-cli search +repos -k <关键词> --format json
|
||||
```
|
||||
|
||||
对每个搜索结果,提取:
|
||||
|
||||
| SKILL 中用到的概念 | 实际字段来源 | 说明 |
|
||||
|-------------------|-------------|------|
|
||||
| owner/repo 标识 | `author.login` + `/` + `identifier` | 搜索结果**没有** `full_name`,需手动拼接。`identifier` 是仓库的唯一标识符 |
|
||||
| 项目描述 | `description` | 直接可用 |
|
||||
| 关注度 | `praises_count` | 搜索结果中叫 `praises_count`,**不是** `stars`。`watchers_count` 仅在 `repo +info` 中返回 |
|
||||
| Fork 数 | `forked_count` | 搜索结果中叫 `forked_count`,**不是** `forks_count` |
|
||||
| 编程语言 | `language.name` | `language` 是嵌套对象 `{id, name}`,需取 `.name`。可能为 `null` |
|
||||
| 更新时间 | `last_update_time`(Unix 时间戳)或 `full_last_update_time`(ISO 8601 字符串) | 搜索结果中**没有** `updated_at` |
|
||||
| 是否镜像 | `mirror` | 仅在 `repo +info` 返回。GitLink 上大量仓库是 GitHub 镜像,需特别标注 |
|
||||
|
||||
**去重规则**:用 `author.login/identifier` 作为唯一标识。同一仓库出现在多个关键词结果中时,只保留一次,标注匹配了哪些关键词。
|
||||
|
||||
**数量控制**:每个关键词保留前 8 个结果。合并去重后总数控制在 20 个以内。超出时优先保留匹配多关键词的和 `last_update_time` 最近的。
|
||||
|
||||
### Step 3:重点项目深度评估
|
||||
|
||||
对合并去重后的每个项目,获取详细指标:
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
从返回数据中提取核心评估维度:
|
||||
|
||||
| 维度 | 字段 | 评估标准 |
|
||||
|------|------|----------|
|
||||
| **社区活跃度** | `contributor_users_count` | >20 大社区,5~20 中等,<5 小团队 |
|
||||
| **关注度** | `watchers_count`, `praises_count` | 反映项目知名度 |
|
||||
| **研发节奏** | `version_releases_count` | >20 快速迭代,5~20 正常,<5 慢速 |
|
||||
| **代码规模** | `size` | 粗略判断项目复杂度 |
|
||||
| **开放性** | `forked_count` | fork 数反映二次开发热度 |
|
||||
| **PR 活跃度** | `pull_requests_count` | 反映代码贡献频率 |
|
||||
|
||||
可选补充(如有需要):
|
||||
|
||||
```bash
|
||||
# 查看最近 Issue 活跃度
|
||||
gitlink-cli issue +list --owner <owner> --repo <repo> --state open --format json
|
||||
|
||||
# 查看最近 Release 情况
|
||||
gitlink-cli release +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
> ⚠️ **控制分析数量**:深度评估仅对最有价值的 5~8 个项目执行(优先匹配多关键词、watchers 多、updated_at 最近的项目),避免过多 API 调用。
|
||||
|
||||
### Step 4:横向对比与趋势分析
|
||||
|
||||
#### 4.1 项目分类与镜像识别
|
||||
|
||||
在评分之前,先通过 `repo +info` 的 `mirror` 字段区分项目类型:
|
||||
|
||||
| 类型 | 判定 | 处理 |
|
||||
|------|------|------|
|
||||
| **镜像仓库** | `mirror: true` | 标注 `[镜像]`。GitLink 上的 `contributor_users_count`/`watchers_count` 等指标均为 0,不代表真实社区活跃度。评分仅作参考 |
|
||||
| **原创仓库** | `mirror: false` 且 `forked_from_project_id: null` | 正常评分 |
|
||||
| **Fork 仓库** | `forked_from_project_id` 非 null | 标注 `[Fork]`,评分反映的是 Fork 后的独立开发情况 |
|
||||
|
||||
#### 4.2 项目成熟度评分
|
||||
|
||||
对每个深度评估的项目,按以下标准打分(满分 25):
|
||||
|
||||
| 维度 | 权重 | 评分标准 |
|
||||
|------|------|----------|
|
||||
| 社区规模 | 5 | contributor_users_count: >20=5, >10=4, >5=3, >2=2, ≤2=1 |
|
||||
| 关注度 | 5 | repo +info 的 watchers_count: >30=5, >15=4, >8=3, >3=2, ≤3=1 |
|
||||
| 研发节奏 | 5 | version_releases_count: >10=5, >5=4, >1=3, 0=2。**镜像仓库此项固定给 1**(镜像通常不通过 GitLink 发版)。注意 GitLink 平台 Release 功能使用率低,即使原创仓库 release=0 也建议给 2 而非 1 |
|
||||
| 开发活跃 | 5 | 最近 30 天有更新=5, 60 天=4, 90 天=3, 180 天=2, >180 天=1。(基于 `repo +info` 的更新时间或搜索结果中的 `last_update_time`) |
|
||||
| 开放性 | 5 | forked_count: >30=5, >15=4, >8=3, >3=2, ≤3=1 |
|
||||
|
||||
> **镜像修正**:镜像仓库的社区规模、关注度、开放性三项在 GitLink 上均为 0,应标注"数据为 GitLink 平台内数据,不代表项目在原始平台(GitHub)的真实影响力",不参与排名比较。
|
||||
|
||||
#### 4.3 技术趋势推断
|
||||
|
||||
- **增长信号**:近期频繁 Release + contributor 增长 + fork 增长 → 技术热点上升期
|
||||
- **成熟信号**:大量 watcher + 稳定 Release 节奏 + 大社区 → 技术趋于成熟
|
||||
- **衰退信号**:超过 180 天无更新 + 少量 contributor + 无新 Release → 可能已不活跃
|
||||
- **新兴信号**:小社区 + 快速迭代 + 最新更新时间近 → 可能是新兴项目
|
||||
|
||||
### Step 5:生成技术调研报告
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 🔬 技术调研报告:{{研究主题}}
|
||||
|
||||
> 调研时间:{{当前时间}}
|
||||
> 搜索关键词:{{keyword_list}}
|
||||
> 搜索命中:{{total_hits}} 个仓库,去重后 {{unique_count}} 个,深度分析 {{deep_analysis_count}} 个
|
||||
|
||||
---
|
||||
|
||||
## 一、技术格局概览
|
||||
|
||||
| 指标 | 数值 |
|
||||
|------|------|
|
||||
| 相关项目总数 | {{unique_count}} |
|
||||
| 主要编程语言 | {{top_languages}} |
|
||||
| 平均社区规模 | {{avg_contributors}} 人 |
|
||||
| 近 30 天活跃项目 | {{active_30d_count}}({{active_30d_pct}}%) |
|
||||
| 高成熟度项目(≥20分) | {{high_maturity_count}} |
|
||||
|
||||
---
|
||||
|
||||
## 二、项目成熟度排行榜
|
||||
|
||||
| 排名 | 项目 | 类型 | 评分 | 语言 | Watch | 贡献者 | Release | Fork | 关键词匹配 |
|
||||
|------|------|------|------|------|-------|--------|---------|------|------------|
|
||||
| 1 | {{full_name}} {{#if mirror}}[镜像]{{/if}} | {{原创/镜像/Fork}} | {{score}}/25 | {{language}} | {{watchers}} | {{contributors}} | {{releases}} | {{forks}} | {{matched_keywords}} |
|
||||
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
|
||||
|
||||
---
|
||||
|
||||
## 三、重点项
|
||||
|
||||
> 仅展示评分 ≥15 或匹配 3+ 关键词的高潜力项目。
|
||||
|
||||
### 🥇 {{项目名}}({{score}}/25)
|
||||
|
||||
| 维度 | 评分 | 说明 |
|
||||
|------|------|------|
|
||||
| 社区规模 | {{community_score}}/5 | {{contributor_users_count}} 位贡献者 |
|
||||
| 关注度 | {{popularity_score}}/5 | {{watchers_count}} watch, {{praises_count}} star |
|
||||
| 研发节奏 | {{release_score}}/5 | {{version_releases_count}} 个版本发布 |
|
||||
| 开发活跃 | {{activity_score}}/5 | 最后更新于 {{last_update}} |
|
||||
| 开放性 | {{openness_score}}/5 | {{forked_count}} 次 fork |
|
||||
|
||||
**亮点**:{{一句话总结项目最大优势}}
|
||||
**关注点**:{{一句话指出需要关注的风险或不足}}
|
||||
|
||||
---
|
||||
|
||||
### 🥈 {{项目名}}({{score}}/25)
|
||||
|
||||
(同上格式)
|
||||
|
||||
---
|
||||
|
||||
## 四、技术趋势洞察
|
||||
|
||||
1. **热点方向**:{{当前最热的技术方向,基于项目分布推断}}
|
||||
2. **新兴项目**:{{列出 1~3 个"新兴信号"明显的项目}}
|
||||
3. **成熟生态**:{{列出 1~2 个"成熟信号"明显的项目,适合作为技术选型参考}}
|
||||
4. **风险提示**:{{列出 1~2 个"衰退信号"项目或值得关注的生态空白}}
|
||||
|
||||
---
|
||||
|
||||
## 五、调研建议
|
||||
|
||||
### 技术选型推荐
|
||||
|
||||
| 场景 | 推荐项目 | 理由 |
|
||||
|------|----------|------|
|
||||
| 生产环境使用 | {{最成熟的项目}} | 社区大、更新稳定、文档完善 |
|
||||
| 学习入门 | {{最简单的项目}} | 代码量小、贡献门槛低 |
|
||||
| 前沿探索 | {{最新兴的项目}} | 技术新颖、迭代快速 |
|
||||
|
||||
### 研究选题建议
|
||||
|
||||
- {{基于当前生态,建议 2~3 个可深入研究的选题}}
|
||||
- {{指出 1~2 个生态空白,可能是创新机会}}
|
||||
|
||||
---
|
||||
|
||||
## 六、数据来源
|
||||
|
||||
所有数据通过 `gitlink-cli` 从 GitLink 平台实时获取,每个项目均已通过 `repo +info` 验证。
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| 关键词无搜索结果 | 尝试近义词或更宽泛的关键词重试,仍无结果则标注"该方向暂无相关项目" |
|
||||
| 搜索返回大量结果(>50) | `search +repos` 无分页参数,实际返回约 20 条/关键词。合并后按 `praises_count` 降序取前 20 |
|
||||
| 某项目 `repo +info` 返回 404 | 该项目可能为私有或已删除,从列表中移除 |
|
||||
| `repo +info` 网络超时/TLS 错误 | 等待 5 秒后重试一次。仍失败则标注"网络请求失败",跳过该项目继续分析其余 |
|
||||
| 大量搜索结果来自镜像仓库 | 优先分析 `mirror: false` 的原创项目。镜像项目保留但标注,评分仅作参考 |
|
||||
| 所有项目评分均 <15 | 说明该领域尚未形成成熟生态,调整报告语气为"早期探索阶段" |
|
||||
| 用户未提供具体关键词 | 引导用户明确研究主题,提供几个示例关键词供选择 |
|
||||
| `language` 字段为 `null` | 标注为"未知" |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **本 Skill 为纯只读分析**,不会修改任何仓库
|
||||
- ✅ **搜索关键词建议中英文各覆盖**,提高命中率
|
||||
- ✅ **深度评估控制在 5~8 个项目**,避免调用过多 API
|
||||
- ⚠️ **`search +repos` 和 `repo +info` 字段名不同**:搜索结果用 `praises_count`/`forked_count`/`author.login+identifier`,`repo +info` 才有 `watchers_count`/`full_name`/`mirror`。详见 Step 2 字段映射表
|
||||
- ⚠️ **`repo +info` 并发请求可能触发 TLS 超时**,失败时等 5 秒重试一次,不要放弃
|
||||
- ⚠️ **GitLink 平台镜像仓库比例高**,镜像仓库的社区数据为 0,不代表项目真实影响力。在报告中标注 `[镜像]` 并单独说明
|
||||
- ⚠️ **GitLink Release 功能使用率低**,大部分项目 `version_releases_count`=0。评分时 Release 维度降低权重预期,0 个 Release 给 2 分(而非 1 分)
|
||||
- ⚠️ **搜索结果无分页参数**,每次返回约 20 条。关键词超过 5 个时需手动截断合并结果
|
||||
- ⚠️ **本 Skill 场景适配 GitLink 平台**,GitLink 以国内开发者和企业项目为主,搜索结果可能偏向中文技术生态,且镜像项目较多
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>GitLink Skills</title>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
||||
</head>
|
||||
<body class="bg-gray-50 min-h-screen">
|
||||
<nav class="bg-white shadow-sm border-b">
|
||||
<div class="max-w-6xl mx-auto px-4 py-3 flex items-center justify-between">
|
||||
<a href="/" class="text-xl font-bold text-blue-600">🔧 GitLink Skills</a>
|
||||
<div class="text-sm text-gray-500">科技赋能 · 开源创新</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main class="max-w-6xl mx-auto px-4 py-8">
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
<footer class="text-center text-gray-400 text-sm py-8">
|
||||
GitLink Skills Web Service — 基于 Flask + DeepSeek API + gitlink-cli
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<div class="text-center mb-8">
|
||||
<h1 class="text-4xl font-bold text-gray-800 mb-4">GitLink Skills 智能分析服务</h1>
|
||||
<p class="text-lg text-gray-500 max-w-2xl mx-auto">
|
||||
基于 DeepSeek API 和 gitlink-cli,通过 AI Agent 自动搜索、分析 GitLink 平台数据
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- 工具区 -->
|
||||
<h2 class="text-2xl font-bold text-gray-800 mb-4">🔧 工具</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mb-12">
|
||||
{% for key, skill in skills.items() %}
|
||||
{% if not key.startswith("lab-") %}
|
||||
<a href="/skills/{{ url_map.get(key, key) }}" class="block p-5 bg-white rounded-xl shadow-sm hover:shadow-md transition border hover:border-blue-200">
|
||||
<h3 class="text-lg font-semibold text-gray-800 mb-1">{{ skill.title }}</h3>
|
||||
<div class="mt-2 text-blue-600 text-sm font-medium">开始使用 →</div>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<!-- 科研实验室: 流程图布局 -->
|
||||
<h2 class="text-2xl font-bold text-green-700 mb-4">🔬 科研实验室</h2>
|
||||
<p class="text-gray-500 text-sm mb-6">多技能串联合成的科研辅助工作流,覆盖完整科研项目生命周期</p>
|
||||
|
||||
<div class="flex flex-col md:flex-row items-center justify-center gap-0 max-w-5xl mx-auto">
|
||||
{% set flow = [
|
||||
("lab-hotspot", "🔍 热点追踪", "搜项目 → 深挖 → 提取Fork关系 → 生成知识图谱"),
|
||||
("lab-insight", "📊 项目洞悉", "仓库信息+贡献者+PR/Issue → 全息分析报告"),
|
||||
("lab-compliance", "✅ 合规检查", "检查License/CI/Release/文档 → 合规评分与改进建议"),
|
||||
("lab-match", "🤝 协作匹配", "分析Issue+社区健康度 → 评估新手友好度与入门方向"),
|
||||
("lab-track", "📈 进度跟踪", "批量巡检多仓库 → 健康/警告/危险三级告警"),
|
||||
] %}
|
||||
|
||||
{% for key, title, desc in flow %}
|
||||
<div class="relative group w-36">
|
||||
<a href="/skills/{{ key }}" class="block">
|
||||
<div class="bg-green-50 border-2 border-green-300 rounded-xl p-4 text-center hover:bg-green-100 hover:border-green-500 hover:shadow-lg transition-all duration-200">
|
||||
<div class="text-sm font-bold text-green-800">{{ title }}</div>
|
||||
</div>
|
||||
</a>
|
||||
<div class="absolute z-10 invisible group-hover:visible opacity-0 group-hover:opacity-100 transition-opacity duration-200 bottom-full left-1/2 -translate-x-1/2 mb-2 px-3 py-2 bg-gray-800 text-white text-xs rounded-lg shadow-lg w-48 pointer-events-none">
|
||||
{{ desc }}
|
||||
<div class="absolute top-full left-1/2 -translate-x-1/2 w-0 h-0 border-l-4 border-r-4 border-t-4 border-transparent border-t-gray-800"></div>
|
||||
</div>
|
||||
</div>
|
||||
{% if not loop.last %}
|
||||
<div class="flex items-center justify-center w-8 h-8">
|
||||
<svg class="w-6 h-6 text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
|
||||
</svg>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
|
@ -0,0 +1,168 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<a href="/skills/" class="text-blue-600 hover:underline text-sm mb-4 inline-block">← 返回首页</a>
|
||||
|
||||
<h1 class="text-3xl font-bold text-gray-800 mb-2">{{ info.title }}</h1>
|
||||
|
||||
{% if skill_name.startswith("lab-") and info.intro %}
|
||||
<div class="bg-green-50 border border-green-200 rounded-xl p-4 mb-6 text-sm text-green-800">
|
||||
{{ info.intro }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<!-- 功能介绍 + 预期输出 -->
|
||||
<div class="space-y-2 mb-6">
|
||||
<details class="bg-white border border-gray-200 rounded-xl overflow-hidden">
|
||||
<summary class="px-4 py-3 cursor-pointer font-medium text-gray-700 hover:bg-gray-50 transition flex items-center gap-2">
|
||||
<span class="text-blue-500">📖</span> 功能介绍
|
||||
</summary>
|
||||
<div class="px-4 py-3 text-sm text-gray-600 border-t border-gray-100">
|
||||
{% if info.intro %}{{ info.intro }}{% endif %}
|
||||
</div>
|
||||
</details>
|
||||
<details class="bg-white border border-gray-200 rounded-xl overflow-hidden">
|
||||
<summary class="px-4 py-3 cursor-pointer font-medium text-gray-700 hover:bg-gray-50 transition flex items-center gap-2">
|
||||
<span class="text-blue-500">📋</span> 预期输出格式与内容
|
||||
</summary>
|
||||
<div class="px-4 py-3 text-sm text-gray-600 border-t border-gray-100">
|
||||
{% if info.output_desc %}{{ info.output_desc|replace('\n', '<br>')|safe }}{% else %}
|
||||
<p>生成中文分析报告,包含:总览、详细分析、排行榜、建议等。</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
<!-- 输入表单 -->
|
||||
<div class="bg-white rounded-xl shadow-sm p-6 mb-8">
|
||||
<label class="block font-medium text-gray-700 mb-2">{{ info.prompt_label }}</label>
|
||||
<input id="user-input" type="text"
|
||||
class="w-full border rounded-lg px-4 py-3 text-gray-700 focus:ring-2 focus:ring-blue-300 focus:border-blue-400 outline-none"
|
||||
placeholder="{{ info.prompt_placeholder }}">
|
||||
<p id="hint-text" class="text-sm text-gray-400 mt-2"></p>
|
||||
<button onclick="runSkill()" id="run-btn"
|
||||
class="mt-4 bg-blue-600 hover:bg-blue-700 text-white font-medium px-6 py-3 rounded-lg transition disabled:opacity-50">
|
||||
🚀 开始分析
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- 进度 -->
|
||||
<div id="progress" class="hidden mb-6">
|
||||
<div class="bg-white rounded-xl shadow-sm p-6">
|
||||
<div class="flex items-center gap-3 mb-4">
|
||||
<div class="animate-spin w-5 h-5 border-2 border-blue-600 border-t-transparent rounded-full"></div>
|
||||
<span class="text-gray-600 font-medium">AI 正在分析中...</span>
|
||||
</div>
|
||||
<div id="log" class="text-sm text-gray-500 space-y-1 font-mono max-h-48 overflow-y-auto"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 报告输出 -->
|
||||
<div id="report" class="hidden">
|
||||
<div class="bg-white rounded-xl shadow-sm p-6 overflow-auto">
|
||||
<div id="report-content" class="markdown-body"></div>
|
||||
</div>
|
||||
<div class="mt-4 flex gap-3">
|
||||
<button onclick="downloadTxt()" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-700 px-4 py-2 rounded-lg transition font-medium">
|
||||
📥 下载 TXT
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 错误 -->
|
||||
<div id="error" class="hidden bg-red-50 border border-red-200 rounded-xl p-6 text-red-700"></div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const skillName = "{{ skill_name }}";
|
||||
const hints = {
|
||||
"research-tracker": "例如:微服务框架、AI Agent、DevOps 流水线、大模型、数据可视化",
|
||||
"contributor-insight": "例如:ci4s/ci4sManagement-cloud, jiangtx/gitlink-cli",
|
||||
"issue-triage": "例如:Gitlink/gitlink-cli, ci4s/ci4sManagement-cloud",
|
||||
"ci-health": "例如:jiangtx/gitlink-cli, Gitlink/gitlink-cli",
|
||||
"lab-hotspot": "例如:大模型、AI Agent、微服务、DevOps、数据可视化",
|
||||
"lab-insight": "例如:ci4s/ci4sManagement-cloud, Gitlink/gitlink-cli",
|
||||
"lab-compliance": "例如:ci4s/ci4sManagement-cloud, Gitlink/gitlink-cli",
|
||||
"lab-match": "例如:ci4s/ci4sManagement-cloud, Gitlink/gitlink-cli",
|
||||
"lab-track": "例如:ci4s/ci4sManagement-cloud, Gitlink/gitlink-cli",
|
||||
};
|
||||
document.getElementById('hint-text').textContent = '💡 ' + (hints[skillName] || '');
|
||||
|
||||
function runSkill() {
|
||||
const input = document.getElementById('user-input').value.trim();
|
||||
if (!input) { alert('请输入参数'); return; }
|
||||
|
||||
document.getElementById('progress').classList.remove('hidden');
|
||||
document.getElementById('report').classList.add('hidden');
|
||||
document.getElementById('error').classList.add('hidden');
|
||||
document.getElementById('run-btn').disabled = true;
|
||||
document.getElementById('log').innerHTML = '<div>⏳ 提交中...</div>';
|
||||
|
||||
fetch('/api/run', {
|
||||
method: 'POST',
|
||||
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
|
||||
body: `skill=${encodeURIComponent(skillName)}&input=${encodeURIComponent(input)}`
|
||||
})
|
||||
.then(r => r.json())
|
||||
.then(data => {
|
||||
if (data.error) {
|
||||
document.getElementById('error').classList.remove('hidden');
|
||||
document.getElementById('error').textContent = '❌ ' + data.error;
|
||||
return;
|
||||
}
|
||||
|
||||
document.getElementById('log').innerHTML = '<div class="text-green-600">✅ 分析完成</div>';
|
||||
|
||||
// Render Markdown
|
||||
const reportDiv = document.getElementById('report-content');
|
||||
reportDiv.innerHTML = marked.parse(data.report || '');
|
||||
document.getElementById('report').classList.remove('hidden');
|
||||
|
||||
// Render Mermaid diagrams (find code.language-mermaid)
|
||||
document.querySelectorAll('code.language-mermaid').forEach((code) => {
|
||||
const pre = code.parentElement;
|
||||
const div = document.createElement('div');
|
||||
div.className = 'mermaid';
|
||||
div.textContent = code.textContent;
|
||||
pre.parentElement.replaceChild(div, pre);
|
||||
});
|
||||
if (typeof mermaid !== 'undefined') {
|
||||
mermaid.run({ nodes: document.querySelectorAll('.mermaid') });
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
document.getElementById('error').classList.remove('hidden');
|
||||
document.getElementById('error').textContent = '❌ 请求失败: ' + err.message;
|
||||
})
|
||||
.finally(() => {
|
||||
document.getElementById('progress').classList.add('hidden');
|
||||
document.getElementById('run-btn').disabled = false;
|
||||
});
|
||||
}
|
||||
|
||||
function downloadTxt() {
|
||||
const text = document.getElementById('report-content').textContent;
|
||||
const blob = new Blob([text], { type: 'text/plain;charset=utf-8' });
|
||||
const a = document.createElement('a');
|
||||
a.href = URL.createObjectURL(blob);
|
||||
a.download = 'report-' + new Date().toISOString().slice(0,10) + '.txt';
|
||||
a.click();
|
||||
URL.revokeObjectURL(a.href);
|
||||
}
|
||||
</script>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
||||
<script>mermaid.initialize({ startOnLoad: false, theme: 'default' });</script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.5.1/github-markdown.min.css">
|
||||
<style>
|
||||
#report-content.markdown-body { padding: 0; }
|
||||
#report-content.markdown-body table { display: table; width: 100%; }
|
||||
#report-content.markdown-body pre { background: #f6f8fa; border-radius: 6px; position: relative; }
|
||||
#report-content.markdown-body code { font-size: 13px; }
|
||||
#report-content.markdown-body img { max-width: 100%; }
|
||||
/* Mermaid SVG should be visible */
|
||||
#report-content.markdown-body .mermaid svg { max-width: 100%; height: auto; }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
[
|
||||
{
|
||||
"list": [
|
||||
{
|
||||
"contribution_perc": "100.00%",
|
||||
"contributions": 1,
|
||||
"email": "jtx0909@qq.com",
|
||||
"id": "148911",
|
||||
"image_url": "system/lets/letter_avatars/2/J/67_157_94/120.png",
|
||||
"login": "jiangtx",
|
||||
"name": "jiangtx",
|
||||
"type": "User"
|
||||
}
|
||||
],
|
||||
"total_count": 1
|
||||
}
|
||||
]
|
||||
|
|
@ -41,6 +41,9 @@ func DeleteToken() error {
|
|||
// File-based fallback
|
||||
|
||||
func credentialPath() string {
|
||||
if dir := os.Getenv("GITLINK_CONFIG_DIR"); dir != "" {
|
||||
return filepath.Join(dir, "credentials")
|
||||
}
|
||||
home, _ := os.UserHomeDir()
|
||||
return filepath.Join(home, ".config", "gitlink-cli", "credentials")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import (
|
|||
func tempHome(t *testing.T) string {
|
||||
t.Helper()
|
||||
dir := t.TempDir()
|
||||
t.Setenv("HOME", dir)
|
||||
t.Setenv("GITLINK_CONFIG_DIR", filepath.Join(dir, ".config", "gitlink-cli"))
|
||||
return dir
|
||||
}
|
||||
|
||||
|
|
@ -57,18 +57,18 @@ func TestStoreLoadDeleteTokenFile(t *testing.T) {
|
|||
func TestCredentialPath(t *testing.T) {
|
||||
tempHome(t)
|
||||
got := credentialPath()
|
||||
expected := filepath.Join(os.Getenv("HOME"), ".config", "gitlink-cli", "credentials")
|
||||
expected := filepath.Join(os.Getenv("GITLINK_CONFIG_DIR"), "credentials")
|
||||
if got != expected {
|
||||
t.Fatalf("credentialPath = %q, want %q", got, expected)
|
||||
}
|
||||
}
|
||||
|
||||
func TestStoreTokenFileCreatesDir(t *testing.T) {
|
||||
home := tempHome(t)
|
||||
_ = tempHome(t)
|
||||
_ = deleteTokenFile()
|
||||
|
||||
// Config dir shouldn't exist yet
|
||||
credDir := filepath.Join(home, ".config", "gitlink-cli")
|
||||
credDir := os.Getenv("GITLINK_CONFIG_DIR")
|
||||
os.RemoveAll(credDir)
|
||||
|
||||
if err := storeTokenFile("new-token"); err != nil {
|
||||
|
|
@ -114,14 +114,14 @@ func TestStoreLoadTokenFileEmpty(t *testing.T) {
|
|||
|
||||
func TestStoreTokenFallback(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
home := tempHome(t)
|
||||
_ = tempHome(t)
|
||||
_ = deleteTokenFile()
|
||||
|
||||
if err := StoreToken("keychain-fallback-token"); err != nil {
|
||||
t.Fatalf("StoreToken error: %v", err)
|
||||
}
|
||||
|
||||
data, err := os.ReadFile(filepath.Join(home, ".config", "gitlink-cli", "credentials"))
|
||||
data, err := os.ReadFile(filepath.Join(os.Getenv("GITLINK_CONFIG_DIR"), "credentials"))
|
||||
if err != nil {
|
||||
t.Fatalf("read error: %v", err)
|
||||
}
|
||||
|
|
@ -132,10 +132,10 @@ func TestStoreTokenFallback(t *testing.T) {
|
|||
|
||||
func TestDeleteTokenFallback(t *testing.T) {
|
||||
keyring.MockInitWithError(errors.New("keychain unavailable"))
|
||||
home := tempHome(t)
|
||||
_ = tempHome(t)
|
||||
_ = deleteTokenFile()
|
||||
|
||||
p := filepath.Join(home, ".config", "gitlink-cli", "credentials")
|
||||
p := filepath.Join(os.Getenv("GITLINK_CONFIG_DIR"), "credentials")
|
||||
os.MkdirAll(filepath.Dir(p), 0700)
|
||||
os.WriteFile(p, []byte("delete-me"), 0600)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,295 @@
|
|||
package capability
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/internal/client"
|
||||
)
|
||||
|
||||
// Status represents the availability status of a backend API domain.
|
||||
type Status int
|
||||
|
||||
const (
|
||||
StatusUnknown Status = iota // not probed yet
|
||||
StatusAvailable // backend API responds with JSON
|
||||
StatusUnavailable // backend API returns HTML or 404
|
||||
StatusError // probe itself failed (network error, etc.)
|
||||
)
|
||||
|
||||
func (s Status) String() string {
|
||||
switch s {
|
||||
case StatusAvailable:
|
||||
return "available"
|
||||
case StatusUnavailable:
|
||||
return "unavailable"
|
||||
case StatusError:
|
||||
return "error"
|
||||
default:
|
||||
return "unknown"
|
||||
}
|
||||
}
|
||||
|
||||
// Emoji returns a single-character status indicator for help text.
|
||||
func (s Status) Emoji() string {
|
||||
switch s {
|
||||
case StatusAvailable:
|
||||
return "✓"
|
||||
case StatusUnavailable:
|
||||
return "⚠"
|
||||
case StatusError:
|
||||
return "✗"
|
||||
default:
|
||||
return "?"
|
||||
}
|
||||
}
|
||||
|
||||
// DomainStatus records the probe result for a single domain.
|
||||
type DomainStatus struct {
|
||||
Domain string `json:"domain"`
|
||||
Status Status `json:"status"`
|
||||
Message string `json:"message,omitempty"`
|
||||
LastChecked time.Time `json:"last_checked"`
|
||||
}
|
||||
|
||||
// CanaryProbe defines a lightweight endpoint used to test domain availability.
|
||||
type CanaryProbe struct {
|
||||
Method string // HTTP method (usually GET)
|
||||
Path string // API path; use {owner} and {repo} as placeholders
|
||||
NeedsRepo bool // whether the probe requires owner/repo context
|
||||
}
|
||||
|
||||
// canaryEndpoints maps each domain to its probe endpoint.
|
||||
var canaryEndpoints = map[string]CanaryProbe{
|
||||
"label": {Method: "GET", Path: "/v1/{owner}/{repo}/issue_tags", NeedsRepo: true},
|
||||
"notification": {Method: "GET", Path: "/notifications", NeedsRepo: false},
|
||||
"pm": {Method: "GET", Path: "/pm/dashboards", NeedsRepo: false},
|
||||
"wiki": {Method: "GET", Path: "/api/wiki/wikiPages", NeedsRepo: false},
|
||||
"pipeline": {Method: "GET", Path: "/pm/pipelines", NeedsRepo: false},
|
||||
"webhook": {Method: "GET", Path: "/v1/{owner}/{repo}/webhooks", NeedsRepo: true},
|
||||
"member": {Method: "GET", Path: "/{owner}/{repo}/collaborators", NeedsRepo: true},
|
||||
"milestone": {Method: "GET", Path: "/v1/{owner}/{repo}/milestones", NeedsRepo: true},
|
||||
"export": {Method: "GET", Path: "/{owner}/{repo}/contributors", NeedsRepo: true},
|
||||
"search": {Method: "GET", Path: "/search/issues", NeedsRepo: false},
|
||||
"workflow": {Method: "GET", Path: "/v1/{owner}/{repo}", NeedsRepo: true},
|
||||
}
|
||||
|
||||
// Registry holds capability probe results with thread-safe access.
|
||||
type Registry struct {
|
||||
mu sync.RWMutex
|
||||
statuses map[string]*DomainStatus
|
||||
cachePath string
|
||||
}
|
||||
|
||||
// NewRegistry creates a Registry and attempts to load cached results.
|
||||
func NewRegistry() *Registry {
|
||||
r := &Registry{
|
||||
statuses: make(map[string]*DomainStatus),
|
||||
cachePath: cacheFilePath(),
|
||||
}
|
||||
r.load()
|
||||
return r
|
||||
}
|
||||
|
||||
// Get returns the cached status for a domain.
|
||||
func (r *Registry) Get(domain string) Status {
|
||||
r.mu.RLock()
|
||||
defer r.mu.RUnlock()
|
||||
if ds, ok := r.statuses[domain]; ok {
|
||||
return ds.Status
|
||||
}
|
||||
return StatusUnknown
|
||||
}
|
||||
|
||||
// GetAll returns a copy of all domain statuses.
|
||||
func (r *Registry) GetAll() map[string]*DomainStatus {
|
||||
r.mu.RLock()
|
||||
defer r.mu.RUnlock()
|
||||
result := make(map[string]*DomainStatus, len(r.statuses))
|
||||
for k, v := range r.statuses {
|
||||
copy := *v
|
||||
result[k] = ©
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
// ProbeAll probes all registered domains concurrently.
|
||||
// owner and repo are used for endpoints that require repository context.
|
||||
// If owner/repo are empty, repo-dependent probes are skipped.
|
||||
func (r *Registry) ProbeAll(cli *client.Client, owner, repo string) map[string]*DomainStatus {
|
||||
results := make(map[string]*DomainStatus)
|
||||
var mu sync.Mutex
|
||||
var wg sync.WaitGroup
|
||||
|
||||
for domain, canary := range canaryEndpoints {
|
||||
if canary.NeedsRepo && (owner == "" || repo == "") {
|
||||
// Skip repo-dependent probes when no repo context available
|
||||
continue
|
||||
}
|
||||
wg.Add(1)
|
||||
go func(domain string, canary CanaryProbe) {
|
||||
defer wg.Done()
|
||||
ds := r.probeOne(cli, domain, canary, owner, repo)
|
||||
mu.Lock()
|
||||
results[domain] = ds
|
||||
mu.Unlock()
|
||||
}(domain, canary)
|
||||
}
|
||||
wg.Wait()
|
||||
|
||||
// Merge results into registry
|
||||
r.mu.Lock()
|
||||
for k, v := range results {
|
||||
r.statuses[k] = v
|
||||
}
|
||||
r.mu.Unlock()
|
||||
|
||||
r.save()
|
||||
return results
|
||||
}
|
||||
|
||||
// probeOne probes a single canary endpoint.
|
||||
func (r *Registry) probeOne(cli *client.Client, domain string, canary CanaryProbe, owner, repo string) *DomainStatus {
|
||||
path := canary.Path
|
||||
if canary.NeedsRepo {
|
||||
path = strings.Replace(path, "{owner}", owner, 1)
|
||||
path = strings.Replace(path, "{repo}", repo, 1)
|
||||
}
|
||||
|
||||
ds := &DomainStatus{
|
||||
Domain: domain,
|
||||
LastChecked: time.Now(),
|
||||
}
|
||||
|
||||
env, err := cli.Do(canary.Method, path, nil, nil)
|
||||
if err != nil {
|
||||
apiErr, ok := err.(*client.APIError)
|
||||
if !ok {
|
||||
ds.Status = StatusError
|
||||
ds.Message = fmt.Sprintf("网络错误: %v", err)
|
||||
return ds
|
||||
}
|
||||
|
||||
switch {
|
||||
case apiErr.Code == "HTML_RESPONSE":
|
||||
// Backend returned HTML instead of JSON — endpoint doesn't exist
|
||||
ds.Status = StatusUnavailable
|
||||
ds.Message = "后端 API 尚未实现该端点"
|
||||
|
||||
case apiErr.StatusCode == 404:
|
||||
// 404 means the endpoint path doesn't exist on the backend
|
||||
ds.Status = StatusUnavailable
|
||||
ds.Message = "API 端点不存在(404)"
|
||||
|
||||
case apiErr.StatusCode == 401 || apiErr.StatusCode == 403:
|
||||
// Auth/permission errors mean the endpoint EXISTS but probe lacks credentials.
|
||||
// The user may have valid credentials — mark as available.
|
||||
ds.Status = StatusAvailable
|
||||
ds.Message = "端点存在(探测权限受限,用户可能有完整权限)"
|
||||
|
||||
default:
|
||||
// Other HTTP errors (422, 500, etc.) — endpoint exists but something went wrong
|
||||
ds.Status = StatusAvailable
|
||||
ds.Message = fmt.Sprintf("端点响应: HTTP %d", apiErr.StatusCode)
|
||||
}
|
||||
return ds
|
||||
}
|
||||
|
||||
if env != nil && env.OK {
|
||||
ds.Status = StatusAvailable
|
||||
ds.Message = "API 正常响应"
|
||||
} else {
|
||||
ds.Status = StatusUnavailable
|
||||
if env != nil && env.Error != nil {
|
||||
ds.Message = env.Error.Message
|
||||
}
|
||||
}
|
||||
return ds
|
||||
}
|
||||
|
||||
// Refresh re-probes all domains and returns the updated statuses.
|
||||
func (r *Registry) Refresh(cli *client.Client, owner, repo string) map[string]*DomainStatus {
|
||||
return r.ProbeAll(cli, owner, repo)
|
||||
}
|
||||
|
||||
// IsStale returns true if the cache is older than 24 hours or doesn't exist.
|
||||
func (r *Registry) IsStale() bool {
|
||||
r.mu.RLock()
|
||||
defer r.mu.RUnlock()
|
||||
for _, ds := range r.statuses {
|
||||
if time.Since(ds.LastChecked) > 24*time.Hour {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return len(r.statuses) == 0
|
||||
}
|
||||
|
||||
// Summary returns a human-readable multi-line summary of all domain statuses.
|
||||
func (r *Registry) Summary() string {
|
||||
r.mu.RLock()
|
||||
defer r.mu.RUnlock()
|
||||
|
||||
var sb strings.Builder
|
||||
sb.WriteString("API 后端能力探测结果:\n")
|
||||
sb.WriteString(strings.Repeat("-", 50) + "\n")
|
||||
|
||||
// Order domains for consistent output
|
||||
domains := []string{
|
||||
"label", "notification", "pm", "wiki", "pipeline",
|
||||
"webhook", "member", "milestone", "export", "search", "workflow",
|
||||
}
|
||||
for _, domain := range domains {
|
||||
ds, ok := r.statuses[domain]
|
||||
if !ok {
|
||||
sb.WriteString(fmt.Sprintf(" ? %-15s 未探测\n", domain))
|
||||
continue
|
||||
}
|
||||
icon := ds.Status.Emoji()
|
||||
statusText := ds.Status.String()
|
||||
detail := ""
|
||||
if ds.Message != "" {
|
||||
detail = " — " + ds.Message
|
||||
}
|
||||
sb.WriteString(fmt.Sprintf(" %s %-15s %s%s\n", icon, domain, statusText, detail))
|
||||
}
|
||||
return sb.String()
|
||||
}
|
||||
|
||||
// cacheFilePath returns the path to the capability cache file.
|
||||
func cacheFilePath() string {
|
||||
home, _ := os.UserHomeDir()
|
||||
return filepath.Join(home, ".config", "gitlink-cli", "capabilities.json")
|
||||
}
|
||||
|
||||
// save writes the current registry state to the cache file.
|
||||
func (r *Registry) save() {
|
||||
r.mu.RLock()
|
||||
data, err := json.MarshalIndent(r.statuses, "", " ")
|
||||
r.mu.RUnlock()
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
dir := filepath.Dir(r.cachePath)
|
||||
os.MkdirAll(dir, 0700)
|
||||
os.WriteFile(r.cachePath, data, 0600)
|
||||
}
|
||||
|
||||
// load reads cached capability data from disk.
|
||||
func (r *Registry) load() {
|
||||
data, err := os.ReadFile(r.cachePath)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
var statuses map[string]*DomainStatus
|
||||
if err := json.Unmarshal(data, &statuses); err != nil {
|
||||
return
|
||||
}
|
||||
r.mu.Lock()
|
||||
r.statuses = statuses
|
||||
r.mu.Unlock()
|
||||
}
|
||||
|
|
@ -0,0 +1,402 @@
|
|||
package capability
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/internal/client"
|
||||
)
|
||||
|
||||
// newTestRegistry creates a Registry with a temp cache file to avoid
|
||||
// interference from real CLI cache files.
|
||||
func newTestRegistry(t *testing.T) *Registry {
|
||||
t.Helper()
|
||||
r := &Registry{
|
||||
statuses: make(map[string]*DomainStatus),
|
||||
cachePath: filepath.Join(t.TempDir(), "capabilities.json"),
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func TestStatusString(t *testing.T) {
|
||||
tests := []struct {
|
||||
status Status
|
||||
want string
|
||||
}{
|
||||
{StatusUnknown, "unknown"},
|
||||
{StatusAvailable, "available"},
|
||||
{StatusUnavailable, "unavailable"},
|
||||
{StatusError, "error"},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
if got := tt.status.String(); got != tt.want {
|
||||
t.Errorf("Status(%d).String() = %q, want %q", tt.status, got, tt.want)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestStatusEmoji(t *testing.T) {
|
||||
tests := []struct {
|
||||
status Status
|
||||
want string
|
||||
}{
|
||||
{StatusUnknown, "?"},
|
||||
{StatusAvailable, "✓"},
|
||||
{StatusUnavailable, "⚠"},
|
||||
{StatusError, "✗"},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
if got := tt.status.Emoji(); got != tt.want {
|
||||
t.Errorf("Status(%d).Emoji() = %q, want %q", tt.status, got, tt.want)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOneAvailable(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write([]byte(`{"ok":true,"data":[]}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/test", NeedsRepo: false}
|
||||
|
||||
ds := r.probeOne(cli, "test", canary, "", "")
|
||||
if ds.Status != StatusAvailable {
|
||||
t.Errorf("expected StatusAvailable, got %s", ds.Status)
|
||||
}
|
||||
if ds.Message != "API 正常响应" {
|
||||
t.Errorf("Message = %q, want 'API 正常响应'", ds.Message)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOneHTMLResponse(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
w.Write([]byte(`<!DOCTYPE html><html><body>Login</body></html>`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/test", NeedsRepo: false}
|
||||
|
||||
ds := r.probeOne(cli, "test", canary, "", "")
|
||||
if ds.Status != StatusUnavailable {
|
||||
t.Errorf("expected StatusUnavailable, got %s", ds.Status)
|
||||
}
|
||||
if !strings.Contains(ds.Message, "尚未实现") {
|
||||
t.Errorf("Message should mention '未实现', got %q", ds.Message)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOne404(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
w.Write([]byte("not found"))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/test", NeedsRepo: false}
|
||||
|
||||
ds := r.probeOne(cli, "test", canary, "", "")
|
||||
if ds.Status != StatusUnavailable {
|
||||
t.Errorf("expected StatusUnavailable, got %s", ds.Status)
|
||||
}
|
||||
if !strings.Contains(ds.Message, "404") {
|
||||
t.Errorf("Message should mention 404, got %q", ds.Message)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOne401(t *testing.T) {
|
||||
// 401 means endpoint exists but auth is needed — should be Available
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.WriteHeader(http.StatusUnauthorized)
|
||||
w.Write([]byte(`{"status":401,"message":"请登录后再操作"}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/test", NeedsRepo: false}
|
||||
|
||||
ds := r.probeOne(cli, "test", canary, "", "")
|
||||
if ds.Status != StatusAvailable {
|
||||
t.Errorf("expected StatusAvailable for 401 (endpoint exists), got %s", ds.Status)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOne403(t *testing.T) {
|
||||
// 403 means endpoint exists but permission denied — should be Available
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.WriteHeader(http.StatusForbidden)
|
||||
w.Write([]byte(`{"status":403,"message":"您没有权限进行该操作"}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/test", NeedsRepo: false}
|
||||
|
||||
ds := r.probeOne(cli, "test", canary, "", "")
|
||||
if ds.Status != StatusAvailable {
|
||||
t.Errorf("expected StatusAvailable for 403 (endpoint exists), got %s", ds.Status)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeOneWithRepoPlaceholders(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.URL.Path != "/api/v1/myowner/myrepo/issue_tags.json" {
|
||||
t.Errorf("path = %s, want /api/v1/myowner/myrepo/issue_tags.json", r.URL.Path)
|
||||
}
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write([]byte(`{"ok":true,"data":[]}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
canary := CanaryProbe{Method: "GET", Path: "/api/v1/{owner}/{repo}/issue_tags", NeedsRepo: true}
|
||||
|
||||
ds := r.probeOne(cli, "label", canary, "myowner", "myrepo")
|
||||
if ds.Status != StatusAvailable {
|
||||
t.Errorf("expected StatusAvailable, got %s", ds.Status)
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeAllSkipsRepoProbesWhenNoContext(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write([]byte(`{"ok":true}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
|
||||
// Probe with empty owner/repo — repo-dependent probes should be skipped
|
||||
results := r.ProbeAll(cli, "", "")
|
||||
|
||||
// Repo-less endpoints (notification, pm, wiki, pipeline, search) should be probed
|
||||
for _, domain := range []string{"notification", "pm", "wiki", "pipeline", "search"} {
|
||||
if _, ok := results[domain]; !ok {
|
||||
t.Errorf("domain %q should be probed (no repo needed), but was skipped", domain)
|
||||
}
|
||||
}
|
||||
|
||||
// Repo-dependent endpoints should be skipped
|
||||
for _, domain := range []string{"label", "webhook", "member", "milestone", "export", "workflow"} {
|
||||
if _, ok := results[domain]; ok {
|
||||
t.Errorf("domain %q needs repo context, should be skipped, but was probed", domain)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestProbeAllWithRepoContext(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write([]byte(`{"ok":true,"data":[]}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
|
||||
results := r.ProbeAll(cli, "owner", "repo")
|
||||
|
||||
// All domains should be probed when repo context is available
|
||||
allDomains := []string{
|
||||
"label", "notification", "pm", "wiki", "pipeline",
|
||||
"webhook", "member", "milestone", "export", "search", "workflow",
|
||||
}
|
||||
for _, domain := range allDomains {
|
||||
if _, ok := results[domain]; !ok {
|
||||
t.Errorf("domain %q should be probed, but was skipped", domain)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetSet(t *testing.T) {
|
||||
r := newTestRegistry(t)
|
||||
|
||||
// Initial state: unknown
|
||||
if r.Get("label") != StatusUnknown {
|
||||
t.Error("expected StatusUnknown before any probe")
|
||||
}
|
||||
|
||||
// Manually set a status via ProbeAll
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.Write([]byte(`{"ok":true}`))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
cli := &client.Client{HTTP: server.Client(), BaseURL: server.URL}
|
||||
r.ProbeAll(cli, "", "")
|
||||
|
||||
// After probe, notification should be known (repo-less endpoint was probed)
|
||||
if r.Get("notification") == StatusUnknown {
|
||||
t.Error("notification should have been probed")
|
||||
}
|
||||
}
|
||||
|
||||
func TestIsStale(t *testing.T) {
|
||||
r := newTestRegistry(t)
|
||||
if !r.IsStale() {
|
||||
t.Error("empty registry should be stale")
|
||||
}
|
||||
|
||||
// Add a fresh entry
|
||||
r.mu.Lock()
|
||||
r.statuses["test"] = &DomainStatus{
|
||||
Domain: "test",
|
||||
Status: StatusAvailable,
|
||||
LastChecked: time.Now(),
|
||||
}
|
||||
r.mu.Unlock()
|
||||
|
||||
if r.IsStale() {
|
||||
t.Error("registry with fresh entry should not be stale")
|
||||
}
|
||||
|
||||
// Add a stale entry
|
||||
r.mu.Lock()
|
||||
r.statuses["stale"] = &DomainStatus{
|
||||
Domain: "stale",
|
||||
Status: StatusAvailable,
|
||||
LastChecked: time.Now().Add(-48 * time.Hour),
|
||||
}
|
||||
r.mu.Unlock()
|
||||
|
||||
if !r.IsStale() {
|
||||
t.Error("registry with stale entry should be stale")
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetAll(t *testing.T) {
|
||||
r := newTestRegistry(t)
|
||||
r.mu.Lock()
|
||||
r.statuses["test"] = &DomainStatus{Domain: "test", Status: StatusAvailable}
|
||||
r.mu.Unlock()
|
||||
|
||||
all := r.GetAll()
|
||||
if len(all) != 1 {
|
||||
t.Fatalf("expected 1 entry, got %d", len(all))
|
||||
}
|
||||
if all["test"].Status != StatusAvailable {
|
||||
t.Error("GetAll should return a copy with correct data")
|
||||
}
|
||||
}
|
||||
|
||||
func TestCacheSaveLoad(t *testing.T) {
|
||||
dir := t.TempDir()
|
||||
|
||||
r := newTestRegistry(t)
|
||||
r.cachePath = filepath.Join(dir, "capabilities.json")
|
||||
|
||||
// Add some data
|
||||
r.mu.Lock()
|
||||
r.statuses["test"] = &DomainStatus{
|
||||
Domain: "test",
|
||||
Status: StatusAvailable,
|
||||
Message: "working",
|
||||
LastChecked: time.Now(),
|
||||
}
|
||||
r.mu.Unlock()
|
||||
|
||||
// Save
|
||||
r.save()
|
||||
if _, err := os.Stat(r.cachePath); os.IsNotExist(err) {
|
||||
t.Fatal("cache file was not created")
|
||||
}
|
||||
|
||||
// Load into new registry (no load from disk — just read the saved file)
|
||||
r2 := &Registry{
|
||||
statuses: make(map[string]*DomainStatus),
|
||||
cachePath: r.cachePath,
|
||||
}
|
||||
r2.load()
|
||||
|
||||
if r2.Get("test") != StatusAvailable {
|
||||
t.Errorf("loaded status = %s, want available", r2.Get("test"))
|
||||
}
|
||||
}
|
||||
|
||||
func TestCacheFileRoundTrip(t *testing.T) {
|
||||
dir := t.TempDir()
|
||||
cachePath := filepath.Join(dir, "capabilities.json")
|
||||
|
||||
// Create and populate registry
|
||||
r := newTestRegistry(t)
|
||||
r.cachePath = cachePath
|
||||
r.mu.Lock()
|
||||
r.statuses["search"] = &DomainStatus{
|
||||
Domain: "search",
|
||||
Status: StatusUnavailable,
|
||||
Message: "API 端点不存在(404)",
|
||||
LastChecked: time.Now(),
|
||||
}
|
||||
r.mu.Unlock()
|
||||
r.save()
|
||||
|
||||
// Verify JSON structure
|
||||
data, err := os.ReadFile(cachePath)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
var decoded map[string]*DomainStatus
|
||||
if err := json.Unmarshal(data, &decoded); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if decoded["search"].Status != StatusUnavailable {
|
||||
t.Errorf("decoded status = %d, want %d", decoded["search"].Status, StatusUnavailable)
|
||||
}
|
||||
}
|
||||
|
||||
func TestSummary(t *testing.T) {
|
||||
r := newTestRegistry(t)
|
||||
r.mu.Lock()
|
||||
// Use domains from the hardcoded list in Summary()
|
||||
r.statuses["search"] = &DomainStatus{Domain: "search", Status: StatusAvailable, Message: "API 正常响应"}
|
||||
r.statuses["wiki"] = &DomainStatus{Domain: "wiki", Status: StatusUnavailable, Message: "后端 API 尚未实现该端点"}
|
||||
r.mu.Unlock()
|
||||
|
||||
summary := r.Summary()
|
||||
if !strings.Contains(summary, "search") {
|
||||
t.Error("Summary should contain domain name 'search'")
|
||||
}
|
||||
if !strings.Contains(summary, "wiki") {
|
||||
t.Error("Summary should contain domain name 'wiki'")
|
||||
}
|
||||
if !strings.Contains(summary, "available") {
|
||||
t.Error("Summary should contain status text")
|
||||
}
|
||||
}
|
||||
|
||||
func TestCanaryEndpointsHaveValidDomains(t *testing.T) {
|
||||
// Verify that all canary endpoints map to known domains
|
||||
for domain, canary := range canaryEndpoints {
|
||||
if canary.Method == "" {
|
||||
t.Errorf("domain %q: Method is empty", domain)
|
||||
}
|
||||
if canary.Path == "" {
|
||||
t.Errorf("domain %q: Path is empty", domain)
|
||||
}
|
||||
if canary.NeedsRepo && !strings.Contains(canary.Path, "{owner}") && !strings.Contains(canary.Path, "{repo}") {
|
||||
t.Errorf("domain %q: NeedsRepo=true but path has no owner/repo placeholder", domain)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -261,4 +261,3 @@ func suggestFix(code int) string {
|
|||
return ""
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,87 @@
|
|||
package capability
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/common"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/internal/capability"
|
||||
)
|
||||
|
||||
// SharedRegistry is the global capability registry used across the CLI.
|
||||
// It is initialized in register.go and used by help annotations.
|
||||
var SharedRegistry = capability.NewRegistry()
|
||||
|
||||
// Shortcuts returns the capability management shortcuts.
|
||||
func Shortcuts() []*common.Shortcut {
|
||||
return []*common.Shortcut{
|
||||
{
|
||||
Name: "check",
|
||||
Description: "探测后端 API 能力,检查各模块是否可用",
|
||||
Long: `向 GitLink 后端发送探测请求,检查各命令模块依赖的 API 是否就绪。
|
||||
|
||||
探测结果会缓存 24 小时。之后运行 capability +list 查看缓存结果。
|
||||
|
||||
需要 owner/repo 上下文的模块(如 label、webhook、member 等)会自动从
|
||||
git remote 推断,或通过 --owner/--repo 指定。`,
|
||||
Flags: []common.Flag{},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
// Resolve owner/repo for repo-dependent probes
|
||||
owner, repo := ctx.Owner, ctx.Repo
|
||||
if owner == "" || repo == "" {
|
||||
_ = ctx.ResolveOwnerRepo()
|
||||
owner, repo = ctx.Owner, ctx.Repo
|
||||
}
|
||||
|
||||
results := SharedRegistry.Refresh(ctx.Client, owner, repo)
|
||||
|
||||
// Print results table
|
||||
fmt.Println("API 后端能力探测结果:")
|
||||
fmt.Println()
|
||||
fmt.Printf(" %-4s %-15s %-12s %s\n", "", "模块", "状态", "说明")
|
||||
fmt.Println(" " + "---- --------------- ------------ ------------------------------")
|
||||
|
||||
domains := []string{
|
||||
"label", "notification", "pm", "wiki", "pipeline",
|
||||
"webhook", "member", "milestone", "export", "search", "workflow",
|
||||
}
|
||||
for _, domain := range domains {
|
||||
ds, ok := results[domain]
|
||||
if !ok {
|
||||
fmt.Printf(" %-4s %-15s %-12s %s\n", "?", domain, "skipped", "缺少 owner/repo 上下文,未探测")
|
||||
continue
|
||||
}
|
||||
icon := ds.Status.Emoji()
|
||||
statusText := map[capability.Status]string{
|
||||
capability.StatusAvailable: "可用 ✓",
|
||||
capability.StatusUnavailable: "不可用 ✗",
|
||||
capability.StatusError: "错误 ✗",
|
||||
capability.StatusUnknown: "未知 ?",
|
||||
}[ds.Status]
|
||||
detail := ds.Message
|
||||
if detail == "" && ds.Status == capability.StatusAvailable {
|
||||
detail = "API 正常响应"
|
||||
}
|
||||
fmt.Printf(" %-4s %-15s %-12s %s\n", icon, domain, statusText, detail)
|
||||
}
|
||||
|
||||
fmt.Println()
|
||||
fmt.Println("提示: 不可用的模块会在 --help 中标记 ⚠,调用时会显示中文错误指引。")
|
||||
fmt.Println("缓存位置: ~/.config/gitlink-cli/capabilities.json(24 小时有效)")
|
||||
return nil
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "list",
|
||||
Description: "查看已缓存的 API 能力探测结果",
|
||||
Flags: []common.Flag{},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
fmt.Print(SharedRegistry.Summary())
|
||||
if SharedRegistry.IsStale() {
|
||||
fmt.Println("\n⚠ 缓存已过期(超过 24 小时),运行 capability +check 刷新。")
|
||||
}
|
||||
return nil
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
@ -95,47 +95,47 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "activate",
|
||||
Description: "为仓库激活 CI/CD 功能",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", ctx.RepoPath()+"/activate", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "activate",
|
||||
Description: "为仓库激活 CI/CD 功能",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", ctx.RepoPath()+"/activate", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "deactivate",
|
||||
Description: "停用仓库的 CI/CD 功能",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("DELETE", ctx.RepoPath()+"/deactivate", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "deactivate",
|
||||
Description: "停用仓库的 CI/CD 功能",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("DELETE", ctx.RepoPath()+"/deactivate", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "authorize",
|
||||
Description: "检查仓库的 CI/CD 授权状态",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", ctx.RepoPath()+"/ci_authorize", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "authorize",
|
||||
Description: "检查仓库的 CI/CD 授权状态",
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", ctx.RepoPath()+"/ci_authorize", nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -363,76 +363,76 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "journals",
|
||||
Description: "查看 Issue 的活动日志(评论、状态变更等)",
|
||||
Flags: []common.Flag{
|
||||
{Name: "number", Short: "n", Usage: "Issue 编号(网页 URL 中的数字)", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
number, err := ctx.RequireArg("number")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
path := fmt.Sprintf("%s/issues/%s/journals", v1RepoPath(ctx), number)
|
||||
env, err := ctx.CallAPI("GET", path, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "journals",
|
||||
Description: "查看 Issue 的活动日志(评论、状态变更等)",
|
||||
Flags: []common.Flag{
|
||||
{Name: "number", Short: "n", Usage: "Issue 编号(网页 URL 中的数字)", Required: true},
|
||||
},
|
||||
{
|
||||
Name: "series-update",
|
||||
Description: "批量更新多个 Issue 的状态(一键关闭/重开多个 Issue)",
|
||||
Flags: []common.Flag{
|
||||
{Name: "ids", Usage: "Issue ID 列表(逗号分隔,如 1,2,3)", Required: true},
|
||||
{Name: "status", Short: "s", Usage: "目标状态: open / closed", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
idsStr, err := ctx.RequireArg("ids")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
status, err := ctx.RequireArg("status")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// 解析逗号分隔的 ID 列表
|
||||
idParts := strings.Split(idsStr, ",")
|
||||
ids := make([]int, 0, len(idParts))
|
||||
for _, p := range idParts {
|
||||
id, err := strconv.Atoi(strings.TrimSpace(p))
|
||||
if err != nil {
|
||||
return fmt.Errorf("无效的 Issue ID: %s", p)
|
||||
}
|
||||
ids = append(ids, id)
|
||||
}
|
||||
|
||||
// 转换状态为数字
|
||||
statusID, err := normalizeIssueStatus(status)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
body := map[string]interface{}{
|
||||
"ids": ids,
|
||||
"status_id": statusID,
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", ctx.RepoPath()+"/issues/series_update", body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
number, err := ctx.RequireArg("number")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
path := fmt.Sprintf("%s/issues/%s/journals", v1RepoPath(ctx), number)
|
||||
env, err := ctx.CallAPI("GET", path, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "series-update",
|
||||
Description: "批量更新多个 Issue 的状态(一键关闭/重开多个 Issue)",
|
||||
Flags: []common.Flag{
|
||||
{Name: "ids", Usage: "Issue ID 列表(逗号分隔,如 1,2,3)", Required: true},
|
||||
{Name: "status", Short: "s", Usage: "目标状态: open / closed", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
idsStr, err := ctx.RequireArg("ids")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
status, err := ctx.RequireArg("status")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// 解析逗号分隔的 ID 列表
|
||||
idParts := strings.Split(idsStr, ",")
|
||||
ids := make([]int, 0, len(idParts))
|
||||
for _, p := range idParts {
|
||||
id, err := strconv.Atoi(strings.TrimSpace(p))
|
||||
if err != nil {
|
||||
return fmt.Errorf("无效的 Issue ID: %s", p)
|
||||
}
|
||||
ids = append(ids, id)
|
||||
}
|
||||
|
||||
// 转换状态为数字
|
||||
statusID, err := normalizeIssueStatus(status)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
body := map[string]interface{}{
|
||||
"ids": ids,
|
||||
"status_id": statusID,
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", ctx.RepoPath()+"/issues/series_update", body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -91,6 +91,16 @@ func Shortcuts() []*common.Shortcut {
|
|||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "clone",
|
||||
Description: "Clone labels from another repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "source-owner", Short: "o", Usage: "Source repository owner", Required: true},
|
||||
{Name: "source-repo", Short: "r", Usage: "Source repository name", Required: true},
|
||||
{Name: "overwrite", Usage: "Overwrite existing labels with same name (true/false)", Default: "false"},
|
||||
},
|
||||
Run: runClone,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -242,3 +252,93 @@ func firstNonEmpty(values ...string) string {
|
|||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func runClone(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
sourceOwner, err := ctx.RequireArg("source-owner")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
sourceRepo, err := ctx.RequireArg("source-repo")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
sourcePath := fmt.Sprintf("/v1/%s/%s/issue_tags", sourceOwner, sourceRepo)
|
||||
env, err := ctx.CallAPI("GET", sourcePath, nil)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to fetch source labels: %w", err)
|
||||
}
|
||||
data, ok := env.Data.(map[string]interface{})
|
||||
if !ok {
|
||||
return fmt.Errorf("unexpected response format from source repository")
|
||||
}
|
||||
rawTags, ok := data["issue_tags"].([]interface{})
|
||||
if !ok {
|
||||
return fmt.Errorf("no issue_tags found in source repository")
|
||||
}
|
||||
|
||||
overwrite := ctx.Arg("overwrite") == "true"
|
||||
created := 0
|
||||
skipped := 0
|
||||
|
||||
for _, raw := range rawTags {
|
||||
tag, ok := raw.(map[string]interface{})
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
name := stringFromMap(tag, "name")
|
||||
if name == "" {
|
||||
continue
|
||||
}
|
||||
if !overwrite {
|
||||
if existing, _ := fetchLabelByName(ctx, name); existing != nil {
|
||||
skipped++
|
||||
continue
|
||||
}
|
||||
}
|
||||
color := stringFromMap(tag, "color")
|
||||
if color == "" {
|
||||
color = defaultLabelColor
|
||||
}
|
||||
payload := map[string]interface{}{
|
||||
"name": name,
|
||||
"description": stringFromMap(tag, "description"),
|
||||
"color": color,
|
||||
}
|
||||
if _, err := ctx.CallAPI("POST", labelPath(ctx), payload); err != nil {
|
||||
return fmt.Errorf("failed to create label %q: %w", name, err)
|
||||
}
|
||||
created++
|
||||
}
|
||||
|
||||
fmt.Printf("Cloned %d labels from %s/%s (skipped %d existing)\n", created, sourceOwner, sourceRepo, skipped)
|
||||
return nil
|
||||
}
|
||||
|
||||
func fetchLabelByName(ctx *common.RuntimeContext, name string) (map[string]interface{}, error) {
|
||||
env, err := ctx.CallAPI("GET", labelPath(ctx), nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
data, ok := env.Data.(map[string]interface{})
|
||||
if !ok {
|
||||
return nil, nil
|
||||
}
|
||||
rawTags, ok := data["issue_tags"].([]interface{})
|
||||
if !ok {
|
||||
return nil, nil
|
||||
}
|
||||
for _, raw := range rawTags {
|
||||
tag, ok := raw.(map[string]interface{})
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
if stringFromMap(tag, "name") == name {
|
||||
return tag, nil
|
||||
}
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,5 +64,34 @@ func Shortcuts() []*common.Shortcut {
|
|||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "watch",
|
||||
Description: "关注或取消关注仓库的通知",
|
||||
Flags: []common.Flag{
|
||||
{Name: "owner", Short: "o", Usage: "仓库所有者", Required: true},
|
||||
{Name: "repo", Short: "r", Usage: "仓库名称", Required: true},
|
||||
{Name: "unwatch", Usage: "取消关注(默认为关注)", Bool: true, Default: "false"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
owner, err := ctx.RequireArg("owner")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
repo, err := ctx.RequireArg("repo")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
path := fmt.Sprintf("/watchers/%s/%s.json", owner, repo)
|
||||
method := "POST"
|
||||
if ctx.Arg("unwatch") == "true" {
|
||||
method = "DELETE"
|
||||
}
|
||||
env, err := ctx.CallAPI(method, path, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -85,71 +85,71 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "teams",
|
||||
Description: "列出组织下的所有团队",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
id, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", fmt.Sprintf("/organizations/%s/teams", id), nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "teams",
|
||||
Description: "列出组织下的所有团队",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
},
|
||||
{
|
||||
Name: "create-team",
|
||||
Description: "在组织下创建新团队",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
{Name: "name", Short: "n", Usage: "团队名称", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
id, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
name, err := ctx.RequireArg("name")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{"name": name}
|
||||
env, err := ctx.CallAPI("POST", fmt.Sprintf("/organizations/%s/teams", id), body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
id, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", fmt.Sprintf("/organizations/%s/teams", id), nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "remove-user",
|
||||
Description: "从组织中移除成员",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
{Name: "user", Short: "u", Usage: "要移除的用户 ID", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
orgID, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
userID, err := ctx.RequireArg("user")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
path := fmt.Sprintf("/organizations/%s/organization_users/%s", orgID, userID)
|
||||
env, err := ctx.CallAPI("DELETE", path, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "create-team",
|
||||
Description: "在组织下创建新团队",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
{Name: "name", Short: "n", Usage: "团队名称", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
id, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
name, err := ctx.RequireArg("name")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{"name": name}
|
||||
env, err := ctx.CallAPI("POST", fmt.Sprintf("/organizations/%s/teams", id), body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "remove-user",
|
||||
Description: "从组织中移除成员",
|
||||
Flags: []common.Flag{
|
||||
{Name: "id", Usage: "组织 ID", Required: true},
|
||||
{Name: "user", Short: "u", Usage: "要移除的用户 ID", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
orgID, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
userID, err := ctx.RequireArg("user")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
path := fmt.Sprintf("/organizations/%s/organization_users/%s", orgID, userID)
|
||||
env, err := ctx.CallAPI("DELETE", path, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,14 @@
|
|||
package shortcuts
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/internal/capability"
|
||||
"github.com/gitlink-org/gitlink-cli/internal/i18n"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/branch"
|
||||
capShortcut "github.com/gitlink-org/gitlink-cli/shortcuts/capability"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/ci"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/common"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/compare"
|
||||
|
|
@ -15,8 +19,8 @@ import (
|
|||
"github.com/gitlink-org/gitlink-cli/shortcuts/milestone"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/notification"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/org"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/pm"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/pipeline"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/pm"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/pr"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/release"
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/repo"
|
||||
|
|
@ -27,6 +31,9 @@ import (
|
|||
"github.com/gitlink-org/gitlink-cli/shortcuts/workflow"
|
||||
)
|
||||
|
||||
// SharedRegistry is the global capability registry, shared across the CLI.
|
||||
var SharedRegistry = capShortcut.SharedRegistry
|
||||
|
||||
// RegisterAll mounts all shortcut groups onto the root command.
|
||||
func RegisterAll(root *cobra.Command, translators ...*i18n.Translator) {
|
||||
tr := i18n.Default()
|
||||
|
|
@ -34,49 +41,51 @@ func RegisterAll(root *cobra.Command, translators ...*i18n.Translator) {
|
|||
tr = translators[0]
|
||||
}
|
||||
groups := map[string][]*common.Shortcut{
|
||||
"repo": repo.Shortcuts(tr),
|
||||
"issue": issue.Shortcuts(tr),
|
||||
"label": label.Shortcuts(),
|
||||
"member": member.Shortcuts(),
|
||||
"milestone": milestone.Shortcuts(),
|
||||
"repo": repo.Shortcuts(tr),
|
||||
"issue": issue.Shortcuts(tr),
|
||||
"label": label.Shortcuts(),
|
||||
"member": member.Shortcuts(),
|
||||
"milestone": milestone.Shortcuts(),
|
||||
"notification": notification.Shortcuts(),
|
||||
"pipeline": pipeline.Shortcuts(),
|
||||
"pm": pm.Shortcuts(),
|
||||
"pr": pr.Shortcuts(tr),
|
||||
"release": release.Shortcuts(tr),
|
||||
"branch": branch.Shortcuts(tr),
|
||||
"org": org.Shortcuts(tr),
|
||||
"user": user.Shortcuts(tr),
|
||||
"search": search.Shortcuts(tr),
|
||||
"ci": ci.Shortcuts(tr),
|
||||
"compare": compare.Shortcuts(),
|
||||
"export": export.Shortcuts(),
|
||||
"webhook": webhook.Shortcuts(tr),
|
||||
"wiki": wiki.Shortcuts(),
|
||||
"workflow": workflow.Shortcuts(),
|
||||
"pipeline": pipeline.Shortcuts(),
|
||||
"pm": pm.Shortcuts(),
|
||||
"pr": pr.Shortcuts(tr),
|
||||
"release": release.Shortcuts(tr),
|
||||
"branch": branch.Shortcuts(tr),
|
||||
"org": org.Shortcuts(tr),
|
||||
"user": user.Shortcuts(tr),
|
||||
"search": search.Shortcuts(tr),
|
||||
"ci": ci.Shortcuts(tr),
|
||||
"compare": compare.Shortcuts(),
|
||||
"export": export.Shortcuts(),
|
||||
"webhook": webhook.Shortcuts(tr),
|
||||
"wiki": wiki.Shortcuts(),
|
||||
"workflow": workflow.Shortcuts(),
|
||||
"capability": capShortcut.Shortcuts(),
|
||||
}
|
||||
|
||||
descriptions := map[string]string{
|
||||
"repo": tr.T("cmd.repo.short"),
|
||||
"issue": tr.T("cmd.issue.short"),
|
||||
"label": "Issue label operations",
|
||||
"member": "Repository member operations",
|
||||
"milestone": "Milestone operations",
|
||||
"notification": "Notification operations",
|
||||
"pipeline": "Pipeline operations",
|
||||
"pm": "Project management operations",
|
||||
"pr": tr.T("cmd.pr.short"),
|
||||
"release": tr.T("cmd.release.short"),
|
||||
"branch": tr.T("cmd.branch.short"),
|
||||
"org": tr.T("cmd.org.short"),
|
||||
"user": tr.T("cmd.user.short"),
|
||||
"search": tr.T("cmd.search.short"),
|
||||
"ci": tr.T("cmd.ci.short"),
|
||||
"compare": "Compare branches, tags, or commits",
|
||||
"export": "Data export to CSV/JSON",
|
||||
"webhook": tr.T("cmd.webhook.short"),
|
||||
"wiki": "Wiki page operations",
|
||||
"workflow": "AI agent workflow analysis",
|
||||
"repo": tr.T("cmd.repo.short"),
|
||||
"issue": tr.T("cmd.issue.short"),
|
||||
"label": annotatedDesc("Issue label operations", "label"),
|
||||
"member": annotatedDesc("Repository member operations", "member"),
|
||||
"milestone": annotatedDesc("Milestone operations", "milestone"),
|
||||
"notification": annotatedDesc("Notification operations", "notification"),
|
||||
"pipeline": annotatedDesc("Pipeline operations", "pipeline"),
|
||||
"pm": annotatedDesc("Project management operations", "pm"),
|
||||
"pr": tr.T("cmd.pr.short"),
|
||||
"release": tr.T("cmd.release.short"),
|
||||
"branch": tr.T("cmd.branch.short"),
|
||||
"org": tr.T("cmd.org.short"),
|
||||
"user": tr.T("cmd.user.short"),
|
||||
"search": annotatedDesc(tr.T("cmd.search.short"), "search"),
|
||||
"ci": tr.T("cmd.ci.short"),
|
||||
"compare": "Compare branches, tags, or commits",
|
||||
"export": annotatedDesc("Data export to CSV/JSON", "export"),
|
||||
"webhook": annotatedDesc(tr.T("cmd.webhook.short"), "webhook"),
|
||||
"wiki": annotatedDesc("Wiki page operations", "wiki"),
|
||||
"workflow": annotatedDesc("AI agent workflow analysis", "workflow"),
|
||||
"capability": "API backend capability probing",
|
||||
}
|
||||
|
||||
for name, shortcuts := range groups {
|
||||
|
|
@ -88,3 +97,17 @@ func RegisterAll(root *cobra.Command, translators ...*i18n.Translator) {
|
|||
root.AddCommand(groupCmd)
|
||||
}
|
||||
}
|
||||
|
||||
// annotatedDesc appends a capability status indicator to the description.
|
||||
// Available domains show "✓", unavailable show "⚠", unknown show nothing.
|
||||
func annotatedDesc(base, domain string) string {
|
||||
status := SharedRegistry.Get(domain)
|
||||
switch status {
|
||||
case capability.StatusAvailable:
|
||||
return fmt.Sprintf("%s ✓", base)
|
||||
case capability.StatusUnavailable, capability.StatusError:
|
||||
return fmt.Sprintf("%s ⚠", base)
|
||||
default:
|
||||
return base
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ func TestRegisterAll(t *testing.T) {
|
|||
"repo", "issue", "label", "pr", "release", "branch",
|
||||
"org", "user", "search", "ci", "workflow",
|
||||
"compare", "member", "milestone", "pipeline", "webhook",
|
||||
"notification", "wiki", "export", "pm", "capability",
|
||||
}
|
||||
|
||||
groupSet := map[string]bool{}
|
||||
|
|
|
|||
|
|
@ -92,7 +92,6 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// Get current user login for the create path
|
||||
userEnv, err := ctx.CallAPI("GET", "/users/me", nil)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to get current user: %w", err)
|
||||
|
|
@ -259,6 +258,202 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "raw",
|
||||
Description: "Get raw file content from a repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "filepath", Short: "f", Usage: "Path to the file", Required: true},
|
||||
{Name: "ref", Short: "r", Usage: "Branch, tag, or commit SHA (default: default branch)"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
filepath, err := ctx.RequireArg("filepath")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("filepath", filepath)
|
||||
if ref := ctx.Arg("ref"); ref != "" {
|
||||
q.Set("ref", ref)
|
||||
}
|
||||
env, err := ctx.CallAPIWithQuery("GET", ctx.RepoPath()+"/raw", q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "activity",
|
||||
Description: "List recent activity/events of a repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "page", Short: "p", Usage: "Page number", Default: "1"},
|
||||
{Name: "limit", Short: "l", Usage: "Items per page", Default: "20"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("page", ctx.Arg("page"))
|
||||
q.Set("limit", ctx.Arg("limit"))
|
||||
env, err := ctx.CallAPIWithQuery("GET", ctx.RepoPath()+"/activity", q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "compare",
|
||||
Description: "Compare two commits, branches, or tags",
|
||||
Flags: []common.Flag{
|
||||
{Name: "from", Short: "f", Usage: "Base ref (branch/tag/SHA)", Required: true},
|
||||
{Name: "to", Short: "t", Usage: "Head ref (branch/tag/SHA)", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
from, err := ctx.RequireArg("from")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
to, err := ctx.RequireArg("to")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", fmt.Sprintf("%s/compare/%s...%s", ctx.RepoPath(), from, to), nil)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "create-file",
|
||||
Description: "Create a new file in a repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "filepath", Short: "f", Usage: "Path for the new file", Required: true},
|
||||
{Name: "content", Short: "c", Usage: "File content (base64 or plain text)", Required: true},
|
||||
{Name: "message", Short: "m", Usage: "Commit message", Required: true},
|
||||
{Name: "branch", Short: "b", Usage: "Target branch (default: default branch)"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
filepath, err := ctx.RequireArg("filepath")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
content, err := ctx.RequireArg("content")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
message, err := ctx.RequireArg("message")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{
|
||||
"filepath": filepath,
|
||||
"content": content,
|
||||
"message": message,
|
||||
}
|
||||
if branch := ctx.Arg("branch"); branch != "" {
|
||||
body["branch"] = branch
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", ctx.RepoPath()+"/contents", body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "delete-file",
|
||||
Description: "Delete a file in a repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "filepath", Short: "f", Usage: "Path of the file to delete", Required: true},
|
||||
{Name: "message", Short: "m", Usage: "Commit message", Required: true},
|
||||
{Name: "sha", Short: "s", Usage: "SHA of the file being deleted"},
|
||||
{Name: "branch", Short: "b", Usage: "Target branch (default: default branch)"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
filepath, err := ctx.RequireArg("filepath")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
message, err := ctx.RequireArg("message")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{
|
||||
"filepath": filepath,
|
||||
"message": message,
|
||||
}
|
||||
if sha := ctx.Arg("sha"); sha != "" {
|
||||
body["sha"] = sha
|
||||
}
|
||||
if branch := ctx.Arg("branch"); branch != "" {
|
||||
body["branch"] = branch
|
||||
}
|
||||
env, err := ctx.CallAPI("DELETE", ctx.RepoPath()+"/contents", body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "update-file",
|
||||
Description: "Update an existing file in a repository",
|
||||
Flags: []common.Flag{
|
||||
{Name: "filepath", Short: "f", Usage: "Path of the file to update", Required: true},
|
||||
{Name: "content", Short: "c", Usage: "New file content (base64 or plain text)", Required: true},
|
||||
{Name: "message", Short: "m", Usage: "Commit message", Required: true},
|
||||
{Name: "sha", Short: "s", Usage: "SHA of the file being replaced"},
|
||||
{Name: "branch", Short: "b", Usage: "Target branch (default: default branch)"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
filepath, err := ctx.RequireArg("filepath")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
content, err := ctx.RequireArg("content")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
message, err := ctx.RequireArg("message")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{
|
||||
"filepath": filepath,
|
||||
"content": content,
|
||||
"message": message,
|
||||
}
|
||||
if sha := ctx.Arg("sha"); sha != "" {
|
||||
body["sha"] = sha
|
||||
}
|
||||
if branch := ctx.Arg("branch"); branch != "" {
|
||||
body["branch"] = branch
|
||||
}
|
||||
env, err := ctx.CallAPI("PUT", ctx.RepoPath()+"/contents", body)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -544,3 +544,313 @@ func TestRepoCommitsHTTPError(t *testing.T) {
|
|||
t.Fatal("expected error for HTTP 500")
|
||||
}
|
||||
}
|
||||
|
||||
// --- create-file ---
|
||||
|
||||
func TestRepoCreateFile(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.Method != "POST" {
|
||||
t.Fatalf("expected POST, got %s", r.Method)
|
||||
}
|
||||
if r.URL.Path != "/owner/repo/contents.json" {
|
||||
t.Fatalf("unexpected path: %s", r.URL.Path)
|
||||
}
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{
|
||||
"content": map[string]interface{}{"name": "README.md", "path": "README.md"},
|
||||
"commit": map[string]interface{}{"message": "Add README"},
|
||||
})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "create-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"content": "SGVsbG8gV29ybGQ=",
|
||||
"message": "Add README",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("create-file failed: %v", err)
|
||||
}
|
||||
if body["filepath"] != "README.md" {
|
||||
t.Fatalf("filepath = %v", body["filepath"])
|
||||
}
|
||||
if body["message"] != "Add README" {
|
||||
t.Fatalf("message = %v", body["message"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoCreateFileWithBranch(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{"content": map[string]interface{}{}})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "create-file", map[string]string{
|
||||
"filepath": "src/main.go",
|
||||
"content": "cGFja2FnZSBtYWlu",
|
||||
"message": "Add main.go",
|
||||
"branch": "feature-branch",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("create-file with branch failed: %v", err)
|
||||
}
|
||||
if body["branch"] != "feature-branch" {
|
||||
t.Fatalf("branch = %v", body["branch"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoCreateFileFailsWithoutFilepath(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
t.Fatal("no API call should be made")
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "create-file", map[string]string{
|
||||
"content": "SGVsbG8=",
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for missing filepath")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoCreateFileFailsWithoutContent(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
t.Fatal("no API call should be made")
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "create-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for missing content")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoCreateFileHTTPError(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
w.Write([]byte("server error"))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "create-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"content": "SGVsbG8=",
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for HTTP 500")
|
||||
}
|
||||
}
|
||||
|
||||
// --- update-file ---
|
||||
|
||||
func TestRepoUpdateFile(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.Method != "PUT" {
|
||||
t.Fatalf("expected PUT, got %s", r.Method)
|
||||
}
|
||||
if r.URL.Path != "/owner/repo/contents.json" {
|
||||
t.Fatalf("unexpected path: %s", r.URL.Path)
|
||||
}
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{
|
||||
"content": map[string]interface{}{"name": "README.md", "path": "README.md"},
|
||||
"commit": map[string]interface{}{"message": "Update README"},
|
||||
})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "update-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"content": "SGVsbG8gV29ybGQ=",
|
||||
"message": "Update README",
|
||||
"sha": "abc123",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("update-file failed: %v", err)
|
||||
}
|
||||
if body["sha"] != "abc123" {
|
||||
t.Fatalf("sha = %v", body["sha"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoUpdateFileWithBranch(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{"content": map[string]interface{}{}})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "update-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"content": "SGVsbG8=",
|
||||
"message": "Update",
|
||||
"branch": "develop",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("update-file with branch failed: %v", err)
|
||||
}
|
||||
if body["branch"] != "develop" {
|
||||
t.Fatalf("branch = %v", body["branch"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoUpdateFileFailsWithoutFilepath(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
t.Fatal("no API call should be made")
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "update-file", map[string]string{
|
||||
"content": "SGVsbG8=",
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for missing filepath")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoUpdateFileHTTPError(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
w.Write([]byte("server error"))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "update-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"content": "SGVsbG8=",
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for HTTP 500")
|
||||
}
|
||||
}
|
||||
|
||||
// --- delete-file ---
|
||||
|
||||
func TestRepoDeleteFile(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.Method != "DELETE" {
|
||||
t.Fatalf("expected DELETE, got %s", r.Method)
|
||||
}
|
||||
if r.URL.Path != "/owner/repo/contents.json" {
|
||||
t.Fatalf("unexpected path: %s", r.URL.Path)
|
||||
}
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{
|
||||
"commit": map[string]interface{}{"message": "Delete README"},
|
||||
})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"message": "Delete README",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("delete-file failed: %v", err)
|
||||
}
|
||||
if body["filepath"] != "README.md" {
|
||||
t.Fatalf("filepath = %v", body["filepath"])
|
||||
}
|
||||
if body["message"] != "Delete README" {
|
||||
t.Fatalf("message = %v", body["message"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoDeleteFileWithSHA(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{"commit": map[string]interface{}{}})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"filepath": "obsolete.txt",
|
||||
"message": "Remove obsolete file",
|
||||
"sha": "def456",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("delete-file with sha failed: %v", err)
|
||||
}
|
||||
if body["sha"] != "def456" {
|
||||
t.Fatalf("sha = %v", body["sha"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoDeleteFileWithBranch(t *testing.T) {
|
||||
var body map[string]interface{}
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
json.NewDecoder(r.Body).Decode(&body)
|
||||
writeJSON(w, map[string]interface{}{"commit": map[string]interface{}{}})
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"filepath": "old.txt",
|
||||
"message": "Remove old file",
|
||||
"branch": "cleanup",
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatalf("delete-file with branch failed: %v", err)
|
||||
}
|
||||
if body["branch"] != "cleanup" {
|
||||
t.Fatalf("branch = %v", body["branch"])
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoDeleteFileFailsWithoutFilepath(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
t.Fatal("no API call should be made")
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"message": "test",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for missing filepath")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoDeleteFileFailsWithoutMessage(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
t.Fatal("no API call should be made")
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for missing message")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepoDeleteFileHTTPError(t *testing.T) {
|
||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
w.Write([]byte("server error"))
|
||||
}))
|
||||
defer server.Close()
|
||||
|
||||
err := runShortcut(t, server, "delete-file", map[string]string{
|
||||
"filepath": "README.md",
|
||||
"message": "Delete README",
|
||||
})
|
||||
if err == nil {
|
||||
t.Fatal("expected error for HTTP 500")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,77 +52,77 @@ func Shortcuts(translators ...*i18n.Translator) []*common.Shortcut {
|
|||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
{
|
||||
Name: "code",
|
||||
Description: "在仓库中搜索代码",
|
||||
Flags: []common.Flag{
|
||||
{Name: "keyword", Short: "k", Usage: "搜索关键词", Required: true},
|
||||
{Name: "owner", Usage: "仓库所有者(可选,限定范围)"},
|
||||
{Name: "repo", Usage: "仓库名称(可选,限定范围)"},
|
||||
{Name: "language", Usage: "编程语言过滤(如 go, python)"},
|
||||
{Name: "page", Short: "p", Usage: "页码", Default: "1"},
|
||||
{Name: "limit", Short: "l", Usage: "每页数量", Default: "20"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
keyword, err := ctx.RequireArg("keyword")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("keyword", keyword)
|
||||
q.Set("page", ctx.Arg("page"))
|
||||
q.Set("limit", ctx.Arg("limit"))
|
||||
if lang := ctx.Arg("language"); lang != "" {
|
||||
q.Set("language", lang)
|
||||
}
|
||||
path := "/search/code"
|
||||
if owner := ctx.Arg("owner"); owner != "" {
|
||||
if repo := ctx.Arg("repo"); repo != "" {
|
||||
path = fmt.Sprintf("/%s/%s/search/code", owner, repo)
|
||||
}
|
||||
}
|
||||
env, err := ctx.CallAPIWithQuery("GET", path, q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "code",
|
||||
Description: "在仓库中搜索代码",
|
||||
Flags: []common.Flag{
|
||||
{Name: "keyword", Short: "k", Usage: "搜索关键词", Required: true},
|
||||
{Name: "owner", Usage: "仓库所有者(可选,限定范围)"},
|
||||
{Name: "repo", Usage: "仓库名称(可选,限定范围)"},
|
||||
{Name: "language", Usage: "编程语言过滤(如 go, python)"},
|
||||
{Name: "page", Short: "p", Usage: "页码", Default: "1"},
|
||||
{Name: "limit", Short: "l", Usage: "每页数量", Default: "20"},
|
||||
},
|
||||
{
|
||||
Name: "issues",
|
||||
Description: "搜索 Issue",
|
||||
Flags: []common.Flag{
|
||||
{Name: "keyword", Short: "k", Usage: "搜索关键词", Required: true},
|
||||
{Name: "state", Short: "s", Usage: "状态过滤: open/closed/all", Default: "all"},
|
||||
{Name: "label", Usage: "标签过滤"},
|
||||
{Name: "author", Usage: "作者过滤"},
|
||||
{Name: "page", Short: "p", Usage: "页码", Default: "1"},
|
||||
{Name: "limit", Short: "l", Usage: "每页数量", Default: "20"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
keyword, err := ctx.RequireArg("keyword")
|
||||
if err != nil {
|
||||
return err
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
keyword, err := ctx.RequireArg("keyword")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("keyword", keyword)
|
||||
q.Set("page", ctx.Arg("page"))
|
||||
q.Set("limit", ctx.Arg("limit"))
|
||||
if lang := ctx.Arg("language"); lang != "" {
|
||||
q.Set("language", lang)
|
||||
}
|
||||
path := "/search/code"
|
||||
if owner := ctx.Arg("owner"); owner != "" {
|
||||
if repo := ctx.Arg("repo"); repo != "" {
|
||||
path = fmt.Sprintf("/%s/%s/search/code", owner, repo)
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("keyword", keyword)
|
||||
q.Set("page", ctx.Arg("page"))
|
||||
q.Set("limit", ctx.Arg("limit"))
|
||||
if state := ctx.Arg("state"); state != "" && state != "all" {
|
||||
q.Set("state", state)
|
||||
}
|
||||
if label := ctx.Arg("label"); label != "" {
|
||||
q.Set("label", label)
|
||||
}
|
||||
if author := ctx.Arg("author"); author != "" {
|
||||
q.Set("author", author)
|
||||
}
|
||||
env, err := ctx.CallAPIWithQuery("GET", "/search/issues", q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
}
|
||||
env, err := ctx.CallAPIWithQuery("GET", path, q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "issues",
|
||||
Description: "搜索 Issue",
|
||||
Flags: []common.Flag{
|
||||
{Name: "keyword", Short: "k", Usage: "搜索关键词", Required: true},
|
||||
{Name: "state", Short: "s", Usage: "状态过滤: open/closed/all", Default: "all"},
|
||||
{Name: "label", Usage: "标签过滤"},
|
||||
{Name: "author", Usage: "作者过滤"},
|
||||
{Name: "page", Short: "p", Usage: "页码", Default: "1"},
|
||||
{Name: "limit", Short: "l", Usage: "每页数量", Default: "20"},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
keyword, err := ctx.RequireArg("keyword")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
q := url.Values{}
|
||||
q.Set("keyword", keyword)
|
||||
q.Set("page", ctx.Arg("page"))
|
||||
q.Set("limit", ctx.Arg("limit"))
|
||||
if state := ctx.Arg("state"); state != "" && state != "all" {
|
||||
q.Set("state", state)
|
||||
}
|
||||
if label := ctx.Arg("label"); label != "" {
|
||||
q.Set("label", label)
|
||||
}
|
||||
if author := ctx.Arg("author"); author != "" {
|
||||
q.Set("author", author)
|
||||
}
|
||||
env, err := ctx.CallAPIWithQuery("GET", "/search/issues", q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.Output(env)
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,14 +2,12 @@ package wiki
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"net/url"
|
||||
|
||||
"github.com/gitlink-org/gitlink-cli/shortcuts/common"
|
||||
)
|
||||
|
||||
// Shortcuts returns wiki management shortcuts for GitLink.
|
||||
//
|
||||
// The wiki domain provides commands for listing, viewing, creating,
|
||||
// updating, and deleting wiki pages within a repository.
|
||||
func Shortcuts() []*common.Shortcut {
|
||||
return []*common.Shortcut{
|
||||
{
|
||||
|
|
@ -19,7 +17,10 @@ func Shortcuts() []*common.Shortcut {
|
|||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
env, err := ctx.CallAPI("GET", "/api/wiki/wikiPages", nil)
|
||||
q := url.Values{}
|
||||
q.Set("owner", ctx.Owner)
|
||||
q.Set("repo", ctx.Repo)
|
||||
env, err := ctx.CallAPIWithQuery("GET", "/api/wiki/wikiPages", q)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
@ -66,8 +67,11 @@ func Shortcuts() []*common.Shortcut {
|
|||
return err
|
||||
}
|
||||
body := map[string]interface{}{
|
||||
"title": title,
|
||||
"content": content,
|
||||
"title": title,
|
||||
"content": content,
|
||||
"User": ctx.Owner,
|
||||
"project_name": ctx.Repo,
|
||||
"project_identifier": ctx.Repo,
|
||||
}
|
||||
if project := ctx.Arg("project"); project != "" {
|
||||
body["project_id"] = project
|
||||
|
|
@ -92,7 +96,12 @@ func Shortcuts() []*common.Shortcut {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{"id": id}
|
||||
body := map[string]interface{}{
|
||||
"id": id,
|
||||
"User": ctx.Owner,
|
||||
"project_name": ctx.Repo,
|
||||
"project_identifier": ctx.Repo,
|
||||
}
|
||||
if t := ctx.Arg("title"); t != "" {
|
||||
body["title"] = t
|
||||
}
|
||||
|
|
@ -113,11 +122,19 @@ func Shortcuts() []*common.Shortcut {
|
|||
{Name: "id", Short: "i", Usage: "Wiki 页面 ID", Required: true},
|
||||
},
|
||||
Run: func(ctx *common.RuntimeContext) error {
|
||||
if err := ctx.ResolveOwnerRepo(); err != nil {
|
||||
return err
|
||||
}
|
||||
id, err := ctx.RequireArg("id")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
body := map[string]interface{}{"id": id}
|
||||
body := map[string]interface{}{
|
||||
"id": id,
|
||||
"User": ctx.Owner,
|
||||
"project_name": ctx.Repo,
|
||||
"project_identifier": ctx.Repo,
|
||||
}
|
||||
env, err := ctx.CallAPI("POST", "/api/wiki/deleteWiki", body)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
name: gitlink-code-review
|
||||
version: 1.0.0
|
||||
description: "智能代码审查:获取 PR 变更、分析代码质量、自动生成 Review 评论与摘要报告。当用户需要审查 Pull Request、检查代码质量或生成审查报告时触发。"
|
||||
description: "智能代码审查:分析 PR diff,输出结构化 Review 意见并自动评论。当用户需要代码审查、检查 PR 质量、Review 代码变更时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
|
|
@ -11,311 +11,174 @@ metadata:
|
|||
# gitlink-code-review(智能代码审查)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 所有写入/删除操作前,务必先确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。`gh` 仅适用于 GitHub 平台。**
|
||||
**CRITICAL — 本 Skill 为只读分析,`pr +review` 为写操作,执行前需确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
## 工作流概览
|
||||
---
|
||||
|
||||
本 Skill 提供一套完整的 AI 驱动代码审查工作流,覆盖从获取 PR 变更到生成审查报告的全过程。不需要额外的 CLI Shortcuts——现有 `gitlink-cli` 命令 + AI Agent 的分析能力即可完成。
|
||||
## 功能概述
|
||||
|
||||
| 阶段 | 操作 | AI Agent 角色 |
|
||||
|------|------|--------------|
|
||||
| ① 获取上下文 | 拉取 PR 详情、变更文件、Diff | 执行 CLI 命令采集数据 |
|
||||
| ② 分析代码 | 检查每个文件的变更 | 逐文件审查,标记问题 |
|
||||
| ③ 结构化反馈 | 按严重程度分级输出审查意见 | 生成分级 Review 评论 |
|
||||
| ④ 提交评论 | 发表 Review 到 PR | 通过 API 提交 |
|
||||
| ⑤ 生成报告 | 输出审查摘要 | 生成 Markdown 摘要 |
|
||||
自动分析 PR 变更内容,输出结构化代码审查意见:
|
||||
|
||||
1. **变更概览** — 统计文件数、新增/删除行数
|
||||
2. **代码质量检查** — 检查代码风格、潜在 Bug、性能问题
|
||||
3. **安全审查** — 识别硬编码密钥、注入风险、权限问题
|
||||
4. **测试覆盖率** — 评估是否有足够的测试覆盖
|
||||
5. **Review 意见** — 生成分段审查意见,支持自动评论
|
||||
|
||||
---
|
||||
|
||||
## 详细工作流
|
||||
## 工作流:PR 代码审查
|
||||
|
||||
### 工作流 1:PR 代码审查
|
||||
|
||||
**场景**:收到 PR Review 请求后,进行完整代码审查。
|
||||
|
||||
#### Step 1:获取 PR 上下文
|
||||
### Step 1:获取仓库基本信息
|
||||
|
||||
```bash
|
||||
# 获取 PR 详情
|
||||
gitlink-cli pr +view --id <pr_id> --format json
|
||||
|
||||
# 获取变更文件列表
|
||||
gitlink-cli pr +files --id <pr_id> --format json
|
||||
|
||||
# 获取 Diff 内容(含变更行号和代码上下文)
|
||||
gitlink-cli pr +diff --id <pr_id> --format json
|
||||
```
|
||||
|
||||
#### Step 2:逐文件分析
|
||||
|
||||
对每个变更文件,根据文件类型执行针对性检查:
|
||||
|
||||
**Python 文件检查项:**
|
||||
- 语法与导入:未使用的 import、循环导入、wildcard import
|
||||
- 代码规范:PEP 8 风格偏离、过长行(>88 chars)、命名规范
|
||||
- 安全:硬编码密钥、SQL 注入风险、`eval()`/`exec()` 使用
|
||||
- 性能:不必要的循环、缺少缓存、N+1 查询
|
||||
- 错误处理:裸 `except`、吞异常、缺少 finally
|
||||
|
||||
**JavaScript/TypeScript 文件检查项:**
|
||||
- 安全:`innerHTML` 直接赋值、`eval()` 使用
|
||||
- 类型安全:`any` 滥用、缺失类型定义
|
||||
- 性能:不必要的 re-render、大对象深拷贝
|
||||
- 异步:未处理的 Promise、缺少 error boundary
|
||||
- 依赖:已废弃 API 使用
|
||||
|
||||
**Go 文件检查项:**
|
||||
- 错误处理:未检查的 error return、panic 滥用
|
||||
- 并发:goroutine 泄漏、缺少 sync 保护
|
||||
- 资源管理:未关闭的 file/conn、defer 使用
|
||||
- 命名:导出标识符缺少注释、变量 shadowing
|
||||
|
||||
**通用检查项:**
|
||||
- 硬编码的配置值、密钥、URL
|
||||
- 缺少或错误的边界条件检查
|
||||
- 过于复杂的函数(圈复杂度高)
|
||||
- 魔法数字(未命名的常量)
|
||||
- 重复代码(DRY 违反)
|
||||
- 缺少或过时的注释
|
||||
- 测试覆盖不足
|
||||
|
||||
#### Step 3:生成结构化审查结果
|
||||
|
||||
按以下 Severity 分级输出:
|
||||
|
||||
```markdown
|
||||
## PR #<id> 代码审查报告
|
||||
|
||||
### 🔴 Critical(必须修改)
|
||||
- <问题描述> — <文件>:<行号>
|
||||
> <修改建议>
|
||||
|
||||
### 🟡 Warning(建议修改)
|
||||
- <问题描述> — <文件>:<行号>
|
||||
> <修改建议>
|
||||
|
||||
### 🔵 Suggestion(可选优化)
|
||||
- <问题描述> — <文件>:<行号>
|
||||
> <修改建议>
|
||||
|
||||
### ✅ Positive(值得肯定)
|
||||
- <做得好的地方>
|
||||
```
|
||||
|
||||
#### Step 4:提交 Review 评论
|
||||
|
||||
```bash
|
||||
# 方式 1:提交整体 Review
|
||||
gitlink-cli pr +review --body '{
|
||||
"body": "## 审查结果\n\n### 🔴 Critical\n...\n\n### 🟡 Warning\n...\n\n总体评价:...",
|
||||
"event": "COMMENT"
|
||||
}'
|
||||
|
||||
# 方式 2:在特定行添加内联评论(逐条提交)
|
||||
gitlink-cli pr +review --body '{
|
||||
"body": "这里存在安全风险:用户输入未经转义直接拼接到 SQL 查询中,存在注入风险。建议使用参数化查询。",
|
||||
"event": "COMMENT",
|
||||
"commit_id": "<commit_sha>",
|
||||
"path": "src/query.py",
|
||||
"position": 42
|
||||
}'
|
||||
```
|
||||
|
||||
> **注意:** `event` 参数支持 `COMMENT`(普通评论)和 `APPROVE`(批准)。对于需要修改的问题,使用 `COMMENT`。
|
||||
|
||||
#### Step 5:生成审查摘要
|
||||
|
||||
审查完成后,输出 Markdown 摘要供用户查阅:
|
||||
|
||||
```markdown
|
||||
## 📋 审查摘要 — PR #<id> <title>
|
||||
|
||||
| 指标 | 数据 |
|
||||
|------|------|
|
||||
| 审查文件数 | <n> |
|
||||
| 变更行数 | +<add> / -<del> |
|
||||
| Critical 问题 | <n> |
|
||||
| Warning | <n> |
|
||||
| Suggestion | <n> |
|
||||
|
||||
### 主要发现
|
||||
1. **[Critical]** <最严重的问题>
|
||||
2. **[Warning]** <次要问题>
|
||||
3. **[Suggestion]** <优化建议>
|
||||
|
||||
### 总体评价
|
||||
<整体评估:代码质量、审查通过建议>
|
||||
|
||||
---
|
||||
*由 gitlink-code-review Skill 自动生成*
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 工作流 2:仓库代码健康度扫描
|
||||
|
||||
**场景**:对仓库整体代码质量进行评估,不依赖 PR。
|
||||
|
||||
```bash
|
||||
# 1. 获取仓库信息
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
|
||||
# 2. 获取仓库文件列表(遍历关键目录)
|
||||
gitlink-cli repo +files --query 'filepath=src&ref=master'
|
||||
gitlink-cli repo +files --query 'filepath=tests&ref=master'
|
||||
|
||||
# 3. 获取关键文件内容
|
||||
gitlink-cli repo +raw --ref=master/README.md
|
||||
gitlink-cli repo +raw --ref=master/.gitignore
|
||||
gitlink-cli repo +raw --ref=master/.eslintrc.js # 或类似配置
|
||||
gitlink-cli repo +raw --ref=master/package.json # 或 go.mod, Cargo.toml
|
||||
|
||||
# 4. 获取语言统计和贡献者
|
||||
gitlink-cli repo +languages
|
||||
gitlink-cli repo +contributors
|
||||
```
|
||||
|
||||
**健康度检查清单:**
|
||||
确认仓库存在,提取 `full_name`。
|
||||
|
||||
| 检查项 | 标准 | 评分依据 |
|
||||
|--------|------|----------|
|
||||
| 文档完整性 | 有 README、CONTRIBUTING、CHANGELOG | 文件是否存在、内容质量 |
|
||||
| 许可证 | 有 LICENSE 文件 | 是否存在、是否合规 |
|
||||
| CI 配置 | 有 CI 配置(.github/workflows, Jenkinsfile 等) | 文件是否存在 |
|
||||
| 代码规范 | 有 linter 配置 | eslint/prettier/ruff/pylint 等 |
|
||||
| 测试覆盖 | 有 test 目录或测试文件 | 测试文件比例 |
|
||||
| 依赖管理 | 依赖文件完整且无已知漏洞 | package-lock/go.sum/poetry.lock |
|
||||
| Issue 健康度 | Issue 有分类标签、响应及时 | 通过 Issue 列表分析 |
|
||||
### Step 2:获取开放 PR 列表
|
||||
|
||||
**输出格式:**
|
||||
```bash
|
||||
gitlink-cli pr +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
如指定 PR 编号则跳过此步。如未指定,选择最新 PR 或显示列表让用户选择。
|
||||
|
||||
### Step 3:获取 PR 详情
|
||||
|
||||
```bash
|
||||
gitlink-cli pr +view --owner <owner> --repo <repo> --id <pr_number> --format json
|
||||
```
|
||||
|
||||
提取:`title`(标题,API可能用`name`,两者都尝试), `body`(描述), `pull_request_base`(目标分支,嵌套对象取`.ref`), `pull_request_head`(源分支), `author_login`(作者), `journals_count`(评论数), `pull_request_status`(状态,注意API可能有拼写错误`pull_request_staus`)。
|
||||
|
||||
### Step 3.5:获取 PR 变更文件(增强审查精度)
|
||||
|
||||
```bash
|
||||
gitlink-cli pr +files --owner <owner> --repo <repo> --id <pr_number> --format json
|
||||
```
|
||||
|
||||
提取文件数量、涉及路径,用于判断影响范围。
|
||||
|
||||
### Step 4:多维审查
|
||||
|
||||
#### 4.1 变更规模评估
|
||||
|
||||
| 指标 | 评估标准 |
|
||||
|------|----------|
|
||||
| 变更类型 | 从标题判断:feat/fix/refactor/docs/test/ci/other |
|
||||
| 影响范围 | 基于 `pr +files` 结果:≤2文件=小, 3-5=中, >5=大 |
|
||||
|
||||
#### 4.2 代码质量检查
|
||||
|
||||
| 检查项 | 风险信号 |
|
||||
|--------|----------|
|
||||
| 标题规范性 | 无 `feat:`/`fix:` 等前缀 → 建议规范化 |
|
||||
| 描述完整性 | `body` 为空 → 评分0,要求补充 |
|
||||
| 单一职责 | 标题含"和"/"以及" → 建议拆分 |
|
||||
| 测试覆盖 | 无测试相关描述 → 建议补充测试 |
|
||||
|
||||
#### 4.3 安全检查
|
||||
|
||||
| 检查项 | 风险信号 |
|
||||
|--------|----------|
|
||||
| 硬编码密钥 | 含 `sk-`/`ghp_`/`password =`/`api_key =` 等 |
|
||||
| 敏感文件 | 修改 `.env`/`credentials`/`secret` 等 |
|
||||
| 权限变更 | 涉及 CI/CD 配置、部署脚本修改 |
|
||||
|
||||
#### 4.4 协作评分(满分 20)
|
||||
|
||||
| 维度 | 权重 | 评分标准 |
|
||||
|------|------|----------|
|
||||
| 标题规范 | 5 | 有类型前缀=5, 标题清晰但无前缀=3, 标题模糊=1 |
|
||||
| 描述完整 | 5 | 详细描述=5, 简要描述=3, 无描述=0 |
|
||||
| 变更粒度 | 5 | 单一职责=5, 2-3个变更=3, >3个=1 |
|
||||
| 测试覆盖 | 5 | 有明确测试=5, 疑似有测试=3, 无测试=1 |
|
||||
|
||||
### Step 5:生成审查报告
|
||||
|
||||
按下方输出模板生成报告。
|
||||
|
||||
### Step 6:自动评论(可选,需确认)
|
||||
|
||||
```bash
|
||||
# 先用 dry-run 预览
|
||||
gitlink-cli pr +review --owner <owner> --repo <repo> --id <pr_number> --content "<审查意见>" --dry-run
|
||||
# 正式提交(需确认)
|
||||
gitlink-cli pr +review --owner <owner> --repo <repo> --id <pr_number> --content "<审查意见>" --status common
|
||||
```
|
||||
> status: common=评论, approved=批准, rejected=拒绝
|
||||
> ⚠️ 先 `--dry-run` 预览,确认后去掉 `--dry-run` 正式提交。
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
## 🏥 仓库健康度报告 — <owner>/<repo>
|
||||
# 🔍 PR 审查报告:#{{pr_number}} {{pr_title}}
|
||||
|
||||
### 总体评分:<⭐x/5>
|
||||
> 审查时间:{{当前时间}}
|
||||
> 作者:{{author_login}}
|
||||
> 分支:{{head}} → {{base}}
|
||||
|
||||
| 维度 | 状态 | 评分 | 建议 |
|
||||
|------|:----:|:----:|------|
|
||||
| 📖 文档 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 📜 许可证 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 🔧 CI/CD | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 🎨 代码规范 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 🧪 测试覆盖 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 📦 依赖安全 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
| 🐛 Issue 管理 | ✅/⚠️/❌ | ☆☆☆☆☆ | <建议> |
|
||||
## 一、变更概览
|
||||
|
||||
### 关键发现
|
||||
1. <最需要改进的问题>
|
||||
2. <次要问题>
|
||||
3. <做得好的方面>
|
||||
- 变更类型:{{change_type}}
|
||||
- 影响范围:{{scope}}
|
||||
- 描述质量:{{description_quality}}
|
||||
|
||||
### 改进路线图
|
||||
- **紧急(本周):** ...
|
||||
- **短期(本月):** ...
|
||||
- **长期(本季度):** ...
|
||||
## 二、代码质量评估
|
||||
|
||||
| 检查项 | 状态 | 说明 |
|
||||
|--------|------|------|
|
||||
| 标题规范 | {{title_check}} | |
|
||||
| 描述完整 | {{desc_check}} | |
|
||||
| 变更粒度 | {{size_check}} | |
|
||||
| 测试覆盖 | {{test_check}} | |
|
||||
|
||||
## 三、安全检查
|
||||
|
||||
| 检查项 | 状态 |
|
||||
|--------|------|
|
||||
| 敏感信息 | {{secret_check}} |
|
||||
| 权限变更 | {{perm_check}} |
|
||||
|
||||
## 四、审查结论
|
||||
|
||||
| 维度 | 评分 |
|
||||
|------|------|
|
||||
| 标题规范 | {{title_score}}/5 |
|
||||
| 描述完整 | {{desc_score}}/5 |
|
||||
| 变更粒度 | {{size_score}}/5 |
|
||||
| 测试覆盖 | {{test_score}}/5 |
|
||||
| **总分** | **{{total_score}}/20** |
|
||||
|
||||
### 判定
|
||||
|
||||
- >=16分 Approved ✅
|
||||
- 10-15分 Changes Requested ⚠️
|
||||
- <10分 Needs Work ❌
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### 工作流 3:批量 Issue Triage + 自动分配
|
||||
## 异常场景处理
|
||||
|
||||
**场景**:对新 Issue 进行自动分类、标签分配和责任人推荐。
|
||||
|
||||
```bash
|
||||
# 1. 获取未标记的 Issue
|
||||
gitlink-cli issue +list --state open --format json
|
||||
|
||||
# 2. 逐个分析 Issue 内容
|
||||
gitlink-cli issue +view --id <issue_id> --format json
|
||||
|
||||
# 3. 根据内容智能分类
|
||||
# 分析标题和描述后,通过 Raw API 打标签
|
||||
gitlink-cli issue +update --number '{
|
||||
"issue_tag_ids": [<tag_id>],
|
||||
"done_ratio": 0,
|
||||
"subject": "<原始标题>",
|
||||
"description": "<原始描述>"
|
||||
}'
|
||||
```
|
||||
|
||||
**分类规则参考:**
|
||||
|
||||
| Issue 关键词 | 推荐标签 | 优先级 |
|
||||
|-------------|----------|:------:|
|
||||
| bug, 错误, 失败, crash, 崩溃 | bug | 🔴 High |
|
||||
| feature, 新增, 建议, 希望 | enhancement | 🔵 Low |
|
||||
| 安全, 漏洞, 权限, 泄露 | security | 🔴 High |
|
||||
| 性能, 慢, 卡顿, 优化 | performance | 🟡 Medium |
|
||||
| 文档, README, 注释 | documentation | 🔵 Low |
|
||||
| question, 如何, 怎么, 请问 | question | 🟡 Medium |
|
||||
| 测试, test, 覆盖率 | testing | 🔵 Low |
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| 无开放 PR | 报告"当前无待审查的 PR" |
|
||||
| PR 描述为空 | 标注"描述缺失",描述评分=0 |
|
||||
| `pr +view` 返回错误 | 标注"无法获取 PR 详情" |
|
||||
|
||||
---
|
||||
|
||||
## Raw API 参考
|
||||
|
||||
代码审查相关的 GitLink API 端点:
|
||||
|
||||
```bash
|
||||
# 获取 PR 详情
|
||||
gitlink-cli pr +view --id --format json
|
||||
|
||||
# 获取 PR 变更文件列表
|
||||
gitlink-cli pr +files --format json
|
||||
|
||||
# 获取 PR Diff
|
||||
gitlink-cli pr +diff --format json
|
||||
|
||||
# 提交 PR Review
|
||||
gitlink-cli pr +review --body '{"body":"...","event":"COMMENT"}'
|
||||
|
||||
# 获取仓库文件列表
|
||||
gitlink-cli repo +files --query 'filepath=<path>&ref=<branch>'
|
||||
|
||||
# 获取仓库语言统计
|
||||
gitlink-cli repo +languages --format json
|
||||
|
||||
# 获取贡献者列表
|
||||
gitlink-cli repo +contributors --format json
|
||||
|
||||
# 获取仓库动态
|
||||
gitlink-cli repo +activity --format json
|
||||
```
|
||||
|
||||
## 代码审查最佳实践
|
||||
|
||||
### 审查原则
|
||||
|
||||
1. **先大局后细节**:先理解 PR 的目的和整体变更范围,再逐文件审查
|
||||
2. **关注行为,而非风格**:自动化工具(linter/formatter)能处理的风格问题优先交给工具
|
||||
3. **提供可操作的建议**:不只是指出问题,要给出具体的修改方案
|
||||
4. **肯定好的代码**:发现好的设计、清晰的命名、完善的测试时给予正面反馈
|
||||
5. **控制评论量**:避免信息过载——最严重的 3-5 个问题比 20 个小问题更有价值
|
||||
|
||||
### 安全红线
|
||||
|
||||
以下问题必须标记为 **Critical**,不得忽略:
|
||||
|
||||
- 硬编码的密钥 / Token / 密码
|
||||
- SQL / NoSQL 注入漏洞
|
||||
- 命令注入(shell 命令拼接)
|
||||
- 路径遍历(用户输入直接用于文件路径)
|
||||
- 不安全的反序列化
|
||||
- XSS(未转义的用户输入直接渲染)
|
||||
|
||||
### 输出规范
|
||||
|
||||
- 始终使用 `--format json` 获取结构化数据
|
||||
- 审查报告输出为 **Markdown 格式**,便于直接粘贴到 PR 评论
|
||||
- 涉及文件/行号时使用精准引用,方便定位
|
||||
- 批量操作前使用 `--dry-run` 预检
|
||||
|
||||
## 注意事项
|
||||
|
||||
- PR Review 提交后会通知所有关注该 PR 的参与者,评论内容请保持专业
|
||||
- `pr +diff` 输出可能很大(大型 PR),Agent 应分段处理
|
||||
- API 的 PR files 和 diff 接口有频率限制,避免短时间内重复请求
|
||||
- 对于 draft PR(草稿),应提示用户先将其标记为 Ready for Review
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**
|
||||
- ⚠️ **`pr +review` 为写操作**,执行前需确认
|
||||
- ⚠️ **安全检查依赖关键词匹配**,不能替代专业安全审计
|
||||
|
|
|
|||
|
|
@ -0,0 +1,148 @@
|
|||
---
|
||||
name: gitlink-community-ops
|
||||
version: 1.0.0
|
||||
description: "社区运营端到端自动化编排:当用户需要批量处理新 Issue 分类分配、定期生成社区周报、或发布 Release Notes 时,编排多个子 Skill 完成 Issue 分诊 → 通知汇总 → 周报撰写 → Release 发布的全流程。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
orchestrates:
|
||||
- gitlink-issue-triage
|
||||
- gitlink-notification-digest
|
||||
- gitlink-contributor-insight
|
||||
- gitlink-release-auto
|
||||
- gitlink-release-notes
|
||||
cliHelp: "gitlink-cli --help"
|
||||
---
|
||||
|
||||
# gitlink-community-ops(社区运营自动化编排)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),认证/权限/API 注意事项。**
|
||||
**CRITICAL — 所有写入/删除操作(series-update、release create、issue comment)前,务必先确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 gitlink-cli。禁止用 gh(GitHub CLI)操作 GitLink 资源。**
|
||||
**CRITICAL — 本编排型 Skill 只做"导演",指挥子 Skill 与 CLI 命令的执行顺序,不重写子 Skill 的内部逻辑。**
|
||||
|
||||
---
|
||||
|
||||
## 工作流总览
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A[用户触发] --> M{意图判断}
|
||||
M -->|全流程| S1
|
||||
M -->|仅分类| S2
|
||||
M -->|仅周报| S1b
|
||||
M -->|仅Release| S5
|
||||
S1[Step1 数据采集<br/>issue+list / export+contributors] --> S2
|
||||
S1b[Step1 数据采集<br/>export+issues / +contributors] --> S3
|
||||
S2[Step2 🤖AI分类+分配<br/>issue-triage + workflow+triage<br/>issue+series-update] --> S3
|
||||
S3[Step3 🤖AI通知汇总<br/>notification-digest<br/>contributor-insight] --> S4
|
||||
S4[Step4 🤖AI写周报<br/>WEEKLY-REPORT.md] --> S5{有可发版本?}
|
||||
S5 -->|是| S6[Step5 🤖AI生成Notes<br/>release-notes + release+create]
|
||||
S5 -->|否| END
|
||||
S6 --> END[输出执行清单]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 编排的子 Skill
|
||||
|
||||
| 子 Skill | 职责 | 调用时机 |
|
||||
|---|---|---|
|
||||
| gitlink-issue-triage | Issue 自动分类、打标签、判断优先级与责任人 | Step2:新 Issue 分诊 |
|
||||
| gitlink-notification-digest | 聚合近期通知、未读消息、待办提醒 | Step3:周报素材 |
|
||||
| gitlink-contributor-insight | 贡献者活跃度、新贡献者识别 | Step3:周报人物板块 |
|
||||
| gitlink-release-auto | 拉取合并 PR、组装 Release 候选 | Step5:发版前置 |
|
||||
| gitlink-release-notes | 生成 Release Notes 文案 | Step5:release+create 内容 |
|
||||
|
||||
---
|
||||
|
||||
## 详细步骤
|
||||
|
||||
### Step 1: 数据采集(纯命令)
|
||||
|
||||
- 命令:
|
||||
- `gitlink-cli issue +list --owner <owner> --repo <repo> --state open --limit 50 --format json` — 拉取开放 Issue
|
||||
- `gitlink-cli export +contributors --owner <owner> --repo <repo> --format json --output contributors.json` — 导出贡献者
|
||||
- `gitlink-cli export +issues --owner <owner> --repo <repo> --state all --format json --output issues.json` — 导出全部 Issue 供分析
|
||||
- 🤖AI 判断点:解析 Issue 列表,识别「无标签 / 无 assignee / 长期未更新」三类待处理 Issue,作为 Step2 输入;仓库为空或解析失败时告知用户并停止。
|
||||
- 本步全部只读,无需确认。
|
||||
|
||||
### Step 2: Issue 自动分类与分配(🤖AI 判断点 + 写入命令)
|
||||
|
||||
- 调子 Skill:`gitlink-issue-triage`
|
||||
- 纯命令前置(拉取可用元数据):
|
||||
- `gitlink-cli workflow +triage --owner <owner> --repo <repo> --state open --limit 50 --lang zh-CN --format json` — 内置分诊规则给初步分类
|
||||
- `gitlink-cli issue +priorities --owner <owner> --repo <repo>` — 仓库可用优先级
|
||||
- `gitlink-cli issue +tags --owner <owner> --repo <repo>` — 仓库可用标签
|
||||
- `gitlink-cli issue +assigners --owner <owner> --repo <repo>` — 可分配人员
|
||||
- 🤖AI 判断点:对每个待处理 Issue,结合 title/body 与贡献者擅长领域,决定优先级、标签、责任人,组装批量参数。
|
||||
- ⚠️写入命令(执行前必须回显方案给用户确认):
|
||||
- `gitlink-cli issue +series-update --owner <owner> --repo <repo> --ids <id1,id2,id3> --status open` — 批量更新状态
|
||||
- 确认话术:"共 N 条 Issue,预计修改状态/责任人,是否执行?"
|
||||
|
||||
### Step 3: 社区动态汇总(🤖AI 判断点)
|
||||
|
||||
- 调子 Skill:`gitlink-notification-digest`、`gitlink-contributor-insight`
|
||||
- 纯命令:
|
||||
- `gitlink-cli notification +list --limit 50 --format json` — 拉取通知(默认未读)
|
||||
- `gitlink-cli repo +activity --owner <owner> --repo <repo>` — 仓库活跃曲线
|
||||
- `gitlink-cli user +heatmap --login <owner>` — 贡献热力图
|
||||
- `gitlink-cli user +stats --login <owner>` — 统计数据
|
||||
- 🤖AI 判断点:
|
||||
- 通知去重归类(PR / Issue / Release / CI),提炼本周待办。
|
||||
- 识别「本周新晋贡献者」「Top 活跃」「需感谢的人」。
|
||||
- 输出结构化中间结果供 Step4 引用。
|
||||
|
||||
### Step 4: 撰写社区周报(🤖AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:汇总 Step1-3 结构化结果,按以下板块撰写 `WEEKLY-REPORT.md`:
|
||||
1. 本周数据概览(新增 Issue N / 合并 PR M / 新贡献者 K)
|
||||
2. 重点 Issue 进展
|
||||
3. 贡献者榜单
|
||||
4. 待跟进事项
|
||||
5. 下周计划
|
||||
- 落地:工作目录生成 `WEEKLY-REPORT.md`(落盘前向用户展示大纲)。
|
||||
- 可选纯命令:`gitlink-cli pm +weekly --project <project_id>` — 补充官方周报数据(需项目 ID)。
|
||||
|
||||
### Step 5: Release 候选与发布(🤖AI 判断点 + 写入命令)
|
||||
|
||||
- 调子 Skill:`gitlink-release-auto`、`gitlink-release-notes`
|
||||
- 纯命令(采集发版素材):
|
||||
- `gitlink-cli repo +tags --owner <owner> --repo <repo>` — 最近 tag,确定发版起点
|
||||
- `gitlink-cli repo +commits --owner <owner> --repo <repo>` — 自上 tag 以来提交
|
||||
- `gitlink-cli pr +list --owner <owner> --repo <repo> --state closed --limit 50` — 近期 PR(从中筛选已合并)
|
||||
- `gitlink-cli repo +compare --owner <owner> --repo <repo> --base <last_tag> --head master` — 完整 diff 摘要
|
||||
- 🤖AI 判断点:
|
||||
- 判断变更是否值得发版(仅文档微调则建议跳过)。
|
||||
- 按 conventional commits(feat/fix/perf/docs)分组,识别 BREAKING CHANGE。
|
||||
- 生成 Release Notes 正文,让用户确认版本号(major/minor/patch)。
|
||||
- ⚠️写入命令(发布前回显 tag、标题、正文预览):
|
||||
- `gitlink-cli release +list --owner <owner> --repo <repo>` — 确认 tag 未被占用
|
||||
- `gitlink-cli release +create --owner <owner> --repo <repo> --tag <version> --name "<version>" --body "<Release Notes>" --target master`
|
||||
|
||||
---
|
||||
|
||||
## 触发模式(可裁剪)
|
||||
|
||||
本 Skill 支持全流程与单点触发:
|
||||
- **全流程**:"跑一遍社区运营" → Step1→5
|
||||
- **仅 Issue 分类**:"把今天的新 Issue 分一下" → Step1→2
|
||||
- **仅周报**:"出本周社区周报" → Step1→3→4
|
||||
- **仅 Release**:"发个 v1.2.0" → Step5
|
||||
|
||||
Agent 第一步先与用户确认走哪种模式,避免多余写入。
|
||||
|
||||
---
|
||||
|
||||
## Agent 触发示例
|
||||
|
||||
**用户**:"把 gitlink-cli-demo 这周的社区运营跑一遍,顺便发个新版本。"
|
||||
|
||||
**Agent**:
|
||||
1. 确认 owner=jiangtx、repo=gitlink-cli-demo,版本号意向 → 全流程模式。
|
||||
2. Step1(纯命令):`issue +list --state open`、`export +contributors`、`export +issues`,解析出 12 条待分类 Issue。
|
||||
3. Step2(AI + 命令):`workflow +triage` + `issue +priorities/tags/assigners`,给出分类与责任人方案 → 回显 → 用户确认 → `issue +series-update` 落地。
|
||||
4. Step3(AI + 命令):`notification +list`、`repo +activity`、`user +heatmap` + contributor-insight,产出中间结果。
|
||||
5. Step4(AI):撰写 `WEEKLY-REPORT.md`,展示大纲 → 确认 → 落盘。
|
||||
6. Step5(AI + 命令):`repo +tags`、`pr +list --state closed`、`repo +compare`,识别 8 个合并 PR,判定值得发版 → 调 release-notes 生成正文 → 用户确认 v1.4.0 → `release +create` 发布。
|
||||
7. 输出执行清单:分诊 12 条、周报路径、Release URL。
|
||||
|
|
@ -0,0 +1,171 @@
|
|||
---
|
||||
name: gitlink-compliance-check
|
||||
version: 1.0.0
|
||||
description: "许可证合规检查:扫描仓库的许可证合规性和敏感信息泄露风险,生成合规报告。当用户需要检查许可证合规、扫描敏感信息、审计仓库安全性时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
cliHelp: "gitlink-cli repo --help"
|
||||
---
|
||||
|
||||
# gitlink-compliance-check(许可证合规检查)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作,不会修改任何仓库。无需用户额外确认即可执行。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
扫描仓库的许可证合规性和安全风险:
|
||||
|
||||
1. **许可证检查** — 确认仓库是否有开源许可证
|
||||
2. **文档完整性** — 检查 README、描述等基本文档
|
||||
3. **敏感信息扫描** — 从 PR/Issue 描述中检测可能的密钥泄露
|
||||
4. **CI/CD 安全** — 检查 DevOps 是否激活
|
||||
5. **合规报告** — 生成结构化的合规检查报告
|
||||
|
||||
---
|
||||
|
||||
## 工作流:许可证合规检查
|
||||
|
||||
### Step 1:获取仓库信息
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
检查以下字段:
|
||||
|
||||
| 字段 | 合规维度 |
|
||||
|------|----------|
|
||||
| `license_id` | 许可证类型(null=无许可证) |
|
||||
| `description` | 项目描述是否完整 |
|
||||
| `empty` | 是否为空仓库 |
|
||||
| `mirror` | 是否为镜像仓库 |
|
||||
| `open_devops` | CI/CD 是否激活 |
|
||||
| `default_branch` | 默认分支 |
|
||||
|
||||
### Step 2:扫描 PR 和 Issue(敏感信息检测)
|
||||
|
||||
```bash
|
||||
gitlink-cli pr +list --owner <owner> --repo <repo> --format json
|
||||
gitlink-cli issue +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
在标题和描述中检测敏感信息:
|
||||
|
||||
| 敏感模式 | 风险等级 |
|
||||
|----------|----------|
|
||||
| `sk-[a-zA-Z0-9]{20,}` | 🔴 API Key |
|
||||
| `ghp_[a-zA-Z0-9]{36,}` | 🔴 GitHub Token |
|
||||
| `password =` | 🔴 密码硬编码 |
|
||||
| `AKIA[A-Z0-9]{16}` | 🔴 AWS Key |
|
||||
| `-----BEGIN.*PRIVATE KEY-----` | 🔴 私钥 |
|
||||
| IP 地址模式 | 🟡 内部 IP |
|
||||
|
||||
### Step 3:合规评估
|
||||
|
||||
#### 3.1 许可证合规
|
||||
|
||||
| 状态 | 判定 | 评分 |
|
||||
|------|------|------|
|
||||
| ✅ 合规 | `license_id` 有值 | 10 |
|
||||
| ⚠️ 风险 | `license_id`=null | 0 |
|
||||
|
||||
#### 3.2 文档完整性
|
||||
|
||||
| 检查项 | 判定 | 评分 |
|
||||
|--------|------|------|
|
||||
| 项目描述 | `description` 非空 | 5 |
|
||||
| 文档缺失 | `description` 为空或 null | 0 |
|
||||
|
||||
#### 3.3 CI/CD 安全
|
||||
|
||||
| 检查项 | 判定 | 评分 |
|
||||
|--------|------|------|
|
||||
| DevOps | `open_devops`=true | 5 |
|
||||
| 未激活 | `open_devops`=false | 0 |
|
||||
|
||||
#### 3.4 综合评分(满分 20)
|
||||
|
||||
| 维度 | 权重 |
|
||||
|------|------|
|
||||
| 许可证合规 | 10 |
|
||||
| 文档完整性 | 5 |
|
||||
| CI/CD 安全 | 5 |
|
||||
|
||||
### Step 4:生成合规报告
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 📋 合规检查报告:{{full_name}}
|
||||
|
||||
> 检查时间:{{当前时间}}
|
||||
> 仓库:[{{full_name}}](https://www.gitlink.org.cn/{{owner}}/{{repo}})
|
||||
|
||||
---
|
||||
|
||||
## 一、综合评分
|
||||
|
||||
| 维度 | 状态 | 评分 | 说明 |
|
||||
|------|------|------|------|
|
||||
| 许可证合规 | {{license_status}} | {{license_score}}/10 | |
|
||||
| 文档完整性 | {{doc_status}} | {{doc_score}}/5 | |
|
||||
| CI/CD 安全 | {{ci_status}} | {{ci_score}}/5 | |
|
||||
| **总分** | | **{{total_score}}/20** | |
|
||||
|
||||
## 二、许可证详情
|
||||
|
||||
| 项目 | 内容 |
|
||||
|------|------|
|
||||
| 许可证 | {{license_info}} |
|
||||
| 镜像仓库 | {{is_mirror}} |
|
||||
| 建议 | {{license_advice}} |
|
||||
|
||||
## 三、仓库安全
|
||||
|
||||
| 检查项 | 状态 |
|
||||
|--------|------|
|
||||
| CI/CD 激活 | {{open_devops_check}} |
|
||||
| 仓库类型 | {{repo_type}} |
|
||||
| 默认分支 | {{default_branch}} |
|
||||
|
||||
## 四、敏感信息扫描
|
||||
|
||||
> 如无发现:✅ 本次扫描在 PR/Issue 标题和描述中未发现明显的敏感信息泄露。
|
||||
> 如有发现:列出风险等级、来源、类型。
|
||||
|
||||
## 五、改进建议
|
||||
|
||||
- 无许可证 → 建议添加开源许可证
|
||||
- DevOps 未激活 → 建议激活 CI/CD
|
||||
- 无描述 → 建议补充项目描述
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| 许可证为 null | 标注"⚠️ 无许可证,存在合规风险" |
|
||||
| 镜像仓库 | 标注"源平台许可证未同步" |
|
||||
| 无 PR/Issue 数据 | 敏感信息扫描标注"数据不足" |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **本 Skill 为纯只读操作**
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**
|
||||
- ⚠️ **敏感信息扫描仅覆盖 PR/Issue 标题和描述**
|
||||
- ⚠️ **镜像仓库的许可证信息可能不准确**
|
||||
- ⚠️ **版权合规最终应由法务确认**
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
---
|
||||
name: gitlink-contributor-growth
|
||||
version: 1.0.0
|
||||
description: "贡献者成长体系编排:追踪 PR/Issue 活动后,AI 生成贡献排行、颁发徽章并产出成长报告,当用户想表彰贡献者、做月度/季度贡献回顾、激励社区活跃度时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
orchestrates:
|
||||
- gitlink-contributor-insight
|
||||
- gitlink-user
|
||||
- gitlink-commit-quality
|
||||
- gitlink-release-auto
|
||||
cliHelp: "gitlink-cli --help"
|
||||
---
|
||||
|
||||
# gitlink-contributor-growth(贡献者成长体系编排)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),认证/权限/API 注意事项。**
|
||||
**CRITICAL — 所有写入操作(issue comment、repo create-file/update-file)前,务必先确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 gitlink-cli。禁止用 gh(GitHub CLI)操作 GitLink 资源。**
|
||||
**CRITICAL — 徽章授予是对真实用户的公开评价,颁奖词须客观、正向、避免贬损,颁布前向用户复述最终文案。**
|
||||
|
||||
---
|
||||
|
||||
## 工作流总览
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A[收到贡献者回顾需求] --> B{采集范围明确?}
|
||||
B -->|否| B1[Step0 🤖AI澄清<br/>仓库/时间窗/维度]
|
||||
B1 --> B
|
||||
B -->|是| C[Step1 采集贡献数据<br/>export+contributors/prs/issues]
|
||||
C --> D[Step2 🤖AI深度分析<br/>contributor-insight + commit-quality 打分]
|
||||
D --> E[Step3 🤖AI生成排行榜<br/>设计4枚徽章 + 颁奖词]
|
||||
E --> F{用户确认榜单?}
|
||||
F -->|调整| E1[🤖AI调整权重/重排] --> F
|
||||
F -->|确认| G[Step4 颁发徽章<br/>issue+comment 授予颁奖词]
|
||||
G --> H[Step5 🤖AI生成成长报告<br/>CONTRIBUTION-LEADERBOARD.md]
|
||||
H --> I[Step6 🤖AI总结输出]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 编排的子 Skill
|
||||
|
||||
| 子 Skill | 职责 | 调用时机 |
|
||||
|---|---|---|
|
||||
| gitlink-contributor-insight | 贡献者活跃度、贡献类型、影响力画像 | Step2 逐人画像 |
|
||||
| gitlink-user | 用户资料、heatmap、stats 核验 | Step2 候选人细化、Step4 颁奖词引用 |
|
||||
| gitlink-commit-quality | 提交/PR 质量评估 | Step2 引入质量维度,避免只看数量 |
|
||||
| gitlink-release-auto | 结构化亮点提炼 | Step5 报告"本期亮点"段落 |
|
||||
|
||||
---
|
||||
|
||||
## 详细步骤
|
||||
|
||||
### Step 0: 🤖AI 澄清采集范围(AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:向用户确认四要素:
|
||||
1. **目标仓库**(owner/repo)—— 若只给仓库名,用 `gitlink-cli search +repos -k <name>` 反查。
|
||||
2. **时间窗**(周/月/季度或起止日期)。
|
||||
3. **榜单维度**(默认综合榜;可选修复/文档/新人榜)。
|
||||
4. **是否公开发榜**(决定 Step4 是否评论、Step5 是否提交文件)。
|
||||
- 信息齐全则跳过本步。
|
||||
|
||||
### Step 1: 采集贡献数据(纯命令)
|
||||
|
||||
优先用 `export` 模块(稳定、批量、结构化):
|
||||
- `gitlink-cli export +contributors --owner <owner> --repo <repo> --format json --output contributors.json`
|
||||
- `gitlink-cli export +prs --owner <owner> --repo <repo> --format json --output prs.json`
|
||||
- `gitlink-cli export +issues --owner <owner> --repo <repo> --format json --output issues.json`
|
||||
- 补充核验(字段不全时):
|
||||
- `gitlink-cli repo +contributors --owner <owner> --repo <repo>`
|
||||
- `gitlink-cli repo +activity --owner <owner> --repo <repo>`
|
||||
- 🤖AI 判断点:读取三个 JSON,按 login 聚合 PR/Issue/评论/合并数;识别新人(首次贡献在时间窗内)与老贡献者;取 Top N(默认 15)候选。
|
||||
|
||||
### Step 2: 🤖AI 深度分析(AI 判断点 + 子 Skill)
|
||||
|
||||
- 调 `gitlink-contributor-insight`:每人活跃度、贡献类型(feature/bugfix/docs/refactor)、影响力。
|
||||
- 调 `gitlink-commit-quality`:代表性 PR 质量评估(规范、测试、聚焦度),0-100 质量分。
|
||||
- 调 `gitlink-user` 核验 Top 候选:
|
||||
- `gitlink-cli user +info --login <login>`
|
||||
- `gitlink-cli user +heatmap --login <login>`
|
||||
- `gitlink-cli user +stats --login <login>`
|
||||
- 🤖AI 判断点:综合打分(透明可解释):
|
||||
- `综合分 = 0.4*活跃度 + 0.3*质量分 + 0.2*影响力 + 0.1*趋势`
|
||||
- 分项分写入本地草稿 `scoring.md`(不提交),标注是否新人。
|
||||
|
||||
### Step 3: 🤖AI 生成排行榜 + 设计徽章(AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:徽章体系(可在 Step0 自定义,默认):
|
||||
- 🏆 **本周之星 / 月度之星**:综合分第一(时间窗>1 月改"季度之星")
|
||||
- 🔧 **修复达人**:bugfix 类 PR 合并最多且质量分达标
|
||||
- 📖 **文档能手**:docs 类贡献最多
|
||||
- 🌱 **新人突破奖**:时间窗内首次贡献且进 Top N 的新人
|
||||
- 🤖AI 判断点:为每位获奖者撰颁奖词草稿——客观陈述(X PR、Y Issue、质量分 Z)、正向具体、≤120 字、引用真实数据。
|
||||
- ⚠️强制确认:把"榜单 + 徽章归属 + 颁奖词全文"复述给用户,确认或调整后才进入 Step4。
|
||||
|
||||
### Step 4: 颁发徽章(纯命令,须先经 Step3 确认)
|
||||
|
||||
在仓库"欢迎 Issue / 贡献者公告 Issue"下发表评论授予颁奖词。若无,先建一个:
|
||||
- 查找:
|
||||
- `gitlink-cli issue +list --owner <owner> --repo <repo> --state open --limit 50`
|
||||
- 创建(若无):
|
||||
- `gitlink-cli issue +create --owner <owner> --repo <repo> --title "贡献者成长榜 · <时间窗>" --body "<榜单概述>"`
|
||||
- 颁发(每位获奖者一条 comment):
|
||||
- `gitlink-cli issue +comment --owner <owner> --repo <repo> --number <issue_number> --body "<🆔 @login | 🏅 徽章 | 📝 颁奖词>"`
|
||||
- ⚠️执行前:(1) 已获 Step3 确认;(2) 每条 comment 全文再复述一次;(3) 用户点头后批量发出。
|
||||
- 🤖AI 判断点:用户若要"静默颁奖"则跳过本步,仅在 Step5 报告列出。
|
||||
|
||||
### Step 5: 🤖AI 生成成长报告(AI 判断点 + 写入命令)
|
||||
|
||||
- 🤖AI 判断点:撰写 `CONTRIBUTION-LEADERBOARD.md`:
|
||||
1. 头部:时间窗、仓库、覆盖人数、总 PR/Issue 数
|
||||
2. 本期亮点:调 release-auto 提炼 3-5 条高光时刻
|
||||
3. 完整排行榜:rank / login / 综合分 / 分项 / 徽章
|
||||
4. 徽章授予记录:颁奖词全文
|
||||
5. 致谢与展望
|
||||
- ⚠️写入命令(确认目标分支与路径后):
|
||||
- `gitlink-cli repo +create-file --owner <owner> --repo <repo> --filepath CONTRIBUTION-LEADERBOARD.md --content "<报告>" --message "docs: 更新贡献者成长榜"`
|
||||
- 文件已存在则用 `repo +update-file`(同参数)。
|
||||
- 🤖AI 判断点:用户若要本地落盘不入库,则写本地文件,跳过 CLI 写入。
|
||||
|
||||
### Step 6: 🤖AI 总结输出(AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:汇报执行结果:
|
||||
- 采集覆盖:人数、PR 数、Issue 数
|
||||
- 榜单:Top N 与徽章归属
|
||||
- 颁奖:在哪个 Issue 发了多少条 comment(或说明静默)
|
||||
- 报告:`CONTRIBUTION-LEADERBOARD.md` 最终位置
|
||||
- 后续建议:是否周期执行、是否补 `release +create` 发版公告
|
||||
|
||||
---
|
||||
|
||||
## Agent 触发示例
|
||||
|
||||
**用户**:"帮我给 myorg/core-repo 这个仓库做上个月的贡献者回顾,颁个奖。"
|
||||
|
||||
**Agent**:
|
||||
1. Step0(🤖AI):确认 owner=myorg、repo=core-repo、时间窗=上月、综合榜+三枚徽章、公开颁榜 → 复述确认。
|
||||
2. Step1(纯命令):并行 `export +contributors/prs/issues`,按 login 聚合,取 Top 15 候选。
|
||||
3. Step2(🤖AI):调 contributor-insight 画像、commit-quality 打分、Top 5 用 `user +info/heatmap/stats` 核验;算综合分写 `scoring.md`。
|
||||
4. Step3(🤖AI):生成榜单与四枚徽章(🏆月度之星/🔧修复达人/📖文档能手/🌱新人突破),写颁奖词 → 复述确认。
|
||||
5. Step4(纯命令):用户确认后 `issue +list` 找欢迎 Issue,无则 `issue +create`;对每位获奖者 `issue +comment` 颁奖(每条再次复述后发出)。
|
||||
6. Step5(🤖AI+纯命令):撰写 `CONTRIBUTION-LEADERBOARD.md`,`repo +update-file`(或 +create-file)写入仓库。
|
||||
7. Step6(🤖AI):汇报覆盖 23 人/47 PR/81 Issue,Top 3 榜单,颁发 4 枚徽章于 Issue #128,报告位于仓库根。
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- **只读 vs 写**:Step0-2 全只读;Step3 颁奖词须确认;Step4 comment、Step5 create-file/update-file 为写入须确认。
|
||||
- **颁奖词红线**:客观、正向、避免贬损,颁布前复述。
|
||||
- **不替代子 Skill**:贡献者深度分析仍由 contributor-insight/user/commit-quality 各自负责。
|
||||
|
|
@ -31,16 +31,16 @@ gitlink-cli issue +list --owner jiangtx --repo gitlink-cli --format json
|
|||
# → 0 个 Issue
|
||||
```
|
||||
|
||||
### 不可用命令确认
|
||||
### 命令可用性(执行时状态 vs 当前状态)
|
||||
|
||||
| 命令 | 结果 |
|
||||
|------|------|
|
||||
| `gitlink-cli repo +contributors` | 命令不存在,返回 repo 帮助文本 |
|
||||
| `gitlink-cli user +heatmap` | 命令不存在(user 子命令仅 `+info` / `+me`) |
|
||||
| `gitlink-cli user +stats` | 命令不存在 |
|
||||
| `gitlink-cli user +trends` | 命令不存在 |
|
||||
| `gitlink-cli api GET "/api/v1/repos/.../contributors"` | 返回 HTML 页面,非 JSON |
|
||||
| `gitlink-cli api GET "/api/v1/users/.../heatmap"` | 返回 HTML 页面,非 JSON |
|
||||
| 命令 | 执行时 (2026-06-03) | 当前状态 |
|
||||
|------|---------------------|----------|
|
||||
| `gitlink-cli repo +contributors` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +heatmap` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +stats` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +trends` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli repo +activity` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli repo +languages` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
|
||||
### 关键发现
|
||||
|
||||
|
|
@ -215,7 +215,7 @@ Agent 生成了完整的五段式报告(团队概览 → 排行榜 → 个人
|
|||
| `user +heatmap` 不可用 | 命令不存在 | user 仅 `+info`/`+me` | 从 PR 时间戳推算活跃天数 |
|
||||
| `user +stats` 不可用 | 命令不存在 | 同上 | 从 `pr +list` 聚合 PR/Issue 数 |
|
||||
| `user +trends` 不可用 | 命令不存在 | 同上 | 从 PR 按日聚合判断趋势 |
|
||||
| Raw API 返回 HTML | `api GET` 返回 HTML | 非 JSON 响应 | 仅使用 Shortcut 命令 |
|
||||
| Raw API 返回 HTML | `api GET` 返回 HTML | 非 JSON 响应 | 全部命令已转为 Shortcut |
|
||||
| 项目 < 30 天 | PR 时间跨度 < 30 天 | 全部 PR 在近期 | 放宽分级标准,标注"早期阶段" |
|
||||
| 贡献者 ≤ 2 人 | `contributor_users_count` ≤ 2 | Bus Factor 极低 | 报告标注风险 + 提供吸引新人建议 |
|
||||
| PR 数为 0 | `pr +list` 空数组 | `issues: []` | 标注"仓库暂无 PR 数据" |
|
||||
|
|
@ -230,7 +230,7 @@ Agent 生成了完整的五段式报告(团队概览 → 排行榜 → 个人
|
|||
| CLI 版本 | 贡献者分析可用命令 | 缺失命令 |
|
||||
|----------|-------------------|----------|
|
||||
| 0.1.18 | `repo +info`, `pr +list`, `issue +list`, `user +info` | `repo +contributors`, `user +heatmap`, `user +stats`, `user +trends` |
|
||||
| 未来版本 | 可能新增 `user +heatmap` 等 | — |
|
||||
| 当前版本 | `repo +contributors`, `user +heatmap`, `user +stats`, `user +trends` 等 | — |
|
||||
|
||||
当 CLI 版本更新后,重新验证可用命令:
|
||||
```bash
|
||||
|
|
|
|||
|
|
@ -130,16 +130,16 @@ PR 详细列表:
|
|||
}
|
||||
```
|
||||
|
||||
### 5. 不可用的命令
|
||||
### 5. 命令可用性(执行时状态 vs 当前状态)
|
||||
|
||||
| 命令 | 结果 |
|
||||
|------|------|
|
||||
| `gitlink-cli repo +contributors` | 命令不存在,返回 repo 帮助文本 |
|
||||
| `gitlink-cli user +heatmap` | 命令不存在(user 仅 `+info` / `+me`) |
|
||||
| `gitlink-cli user +stats` | 命令不存在 |
|
||||
| `gitlink-cli user +trends` | 命令不存在 |
|
||||
| `gitlink-cli api GET "/api/v1/repos/.../contributors"` | 返回 HTML 页面,非 JSON |
|
||||
| `gitlink-cli api GET "/api/v1/users/.../heatmap"` | 返回 HTML 页面,非 JSON |
|
||||
| 命令 | 执行时 (2026-06-03) | 当前状态 |
|
||||
|------|---------------------|----------|
|
||||
| `gitlink-cli repo +contributors` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +heatmap` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +stats` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli user +trends` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli repo +activity` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
| `gitlink-cli repo +languages` | ❌ 命令不存在 | ✅ 已可用 |
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,147 @@
|
|||
---
|
||||
name: gitlink-multi-repo-ops
|
||||
version: 1.0.0
|
||||
description: "多仓库协同编排:跨多个 GitLink 仓库的统一 Issue 追踪、PR 状态看板与 Release 协调发布,当用户需要同时管理/对比/协调多个仓库时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
orchestrates:
|
||||
- gitlink-issue
|
||||
- gitlink-pr
|
||||
- gitlink-release
|
||||
- gitlink-insight
|
||||
- gitlink-workflow
|
||||
cliHelp: "gitlink-cli --help"
|
||||
---
|
||||
|
||||
# gitlink-multi-repo-ops(多仓库协同编排)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),认证/权限/API 注意事项。**
|
||||
**CRITICAL — 所有写入/删除操作(批量 release create、issue batch-close)前,务必先确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 gitlink-cli。禁止用 gh(GitHub CLI)操作 GitLink 资源。**
|
||||
**CRITICAL — 编排型 Skill 只做"导演",不重写子 Skill 内部逻辑。**
|
||||
|
||||
---
|
||||
|
||||
## 工作流总览
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[用户自然语言输入<br/>含仓库名/组织/清单] --> S1[Step1 🤖AI解析仓库清单]
|
||||
S1 --> S2[Step2 跨仓库数据采集<br/>循环 issue/pr/release list]
|
||||
S2 --> S2J{数据齐全?}
|
||||
S2J -->|否| S2
|
||||
S2J -->|是| S3[Step3 🤖AI跨仓分析<br/>workflow+repo-report / +health]
|
||||
S3 --> S4[Step4 🤖AI生成协同看板<br/>MULTI-REPO-DASHBOARD.md]
|
||||
S4 --> S5[Step5 🤖AI Release依赖判断<br/>拓扑排序]
|
||||
S5 --> CONF{用户确认发布计划?}
|
||||
CONF -->|修改| S5
|
||||
CONF -->|同意| S6[Step6 Release协调发布<br/>release+create 串行]
|
||||
S6 --> DONE[看板 + 发布报告]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 编排的子 Skill
|
||||
|
||||
| 子 Skill | 职责 | 调用时机 |
|
||||
|---|---|---|
|
||||
| gitlink-issue | 单仓 Issue 的 list/view/close | Step2 采集、Step6 发布前阻断检查 |
|
||||
| gitlink-pr | 单仓 PR 的 list/view/merge/check-merge | Step2 采集、Step6 发布前阻断检查 |
|
||||
| gitlink-release | 单仓 Release 的 list/create/view | Step2 采集、Step6 协调发布 |
|
||||
| gitlink-insight | 仓库画像、贡献者、活跃度 | Step3 跨仓分析 |
|
||||
| gitlink-workflow | repo-report / triage / health 汇总 | Step3 单仓报告、Step4 看板合成 |
|
||||
|
||||
---
|
||||
|
||||
## 详细步骤
|
||||
|
||||
### Step 1: 🤖AI 解析仓库清单(AI 判断点)
|
||||
|
||||
- 输入:用户自然语言(如"看看 acme 组织下的 frontend、backend、infra 三个库")。
|
||||
- 🤖AI 判断点:抽取规范化的 `owner/repo` 列表,去重、补全大小写。若只给组织名,先拉候选再请用户确认。
|
||||
- 纯命令(仅当需枚举候选时):
|
||||
- `gitlink-cli org +list --owner <org>`
|
||||
- `gitlink-cli repo +list --owner <org> --limit 50`
|
||||
- 🤖AI 判断点:清单为空或歧义时**必须暂停确认**,不得擅自推断。
|
||||
- 产出:内部 `repo_list` 数组,供后续循环。
|
||||
|
||||
### Step 2: 跨仓库数据采集(纯命令,循环执行)
|
||||
|
||||
对 `repo_list` 每个 repo 循环执行只读命令,结果按仓库归档:
|
||||
- `gitlink-cli issue +list --owner <owner> --repo <repo> --state open --limit 50`
|
||||
- `gitlink-cli pr +list --owner <owner> --repo <repo> --state open --limit 50`
|
||||
- `gitlink-cli release +list --owner <owner> --repo <repo> --limit 10`
|
||||
- `gitlink-cli milestone +list --owner <owner> --repo <repo>`
|
||||
- `gitlink-cli repo +info --owner <owner> --repo <repo>`
|
||||
- 🤖AI 判断点:某仓库采集失败(404/无权限)记入 errors[],**不中断流程**,继续下一个,最终看板标注"采集失败"。
|
||||
- 全部 GET,安全无需确认。
|
||||
|
||||
### Step 3: 🤖AI 跨仓统一分析(AI 判断点)
|
||||
|
||||
- 纯命令(逐仓库):
|
||||
- `gitlink-cli workflow +repo-report --repository <owner>/<repo>`
|
||||
- `gitlink-cli workflow +health --repository <owner>/<repo>`
|
||||
- `gitlink-cli workflow +triage --owner <owner> --repo <repo> --state open`(若 issue 堆积)
|
||||
- 🤖AI 判断点:
|
||||
- 对比各仓"未关闭 Issue / 未合并 PR / 距上次 Release 时长",找瓶颈仓库与风险仓库。
|
||||
- 识别跨仓关联 Issue(标题/标签相似)、共享贡献者、依赖同一里程碑的发布计划。
|
||||
- 汇总每仓 P0/P1 issue 与阻塞 PR,形成优先级矩阵。
|
||||
|
||||
### Step 4: 🤖AI 生成协同看板(AI 判断点)
|
||||
|
||||
- 纯命令(可选,补充活跃度):
|
||||
- `gitlink-cli repo +activity --owner <owner> --repo <repo>`
|
||||
- `gitlink-cli repo +contributors --owner <owner> --repo <repo> --limit 10`
|
||||
- 🤖AI 判断点:撰写 `MULTI-REPO-DASHBOARD.md`,结构:
|
||||
1. 仓库总览表(仓库 | 开放 Issue | 开放 PR | 最新 Release | 健康分)
|
||||
2. 跨仓 Issue 看板(按优先级/标签归并)
|
||||
3. 跨仓 PR 看板(可合并 / 阻塞 / 冲突)
|
||||
4. Release 协调时间线
|
||||
5. 风险提示
|
||||
- 🤖AI 判断点:若用户提及"导出":
|
||||
- `gitlink-cli export +issues --owner <owner> --repo <repo> --output issues.csv`
|
||||
- `gitlink-cli export +prs --owner <owner> --repo <repo> --output prs.csv`
|
||||
|
||||
### Step 5: 🤖AI Release 依赖判断(AI 判断点,关键决策)
|
||||
|
||||
- 纯命令(核对可合并性与现有 release):
|
||||
- `gitlink-cli pr +check-merge --owner <owner> --repo <repo> --number <pr>` — 发布分支 PR 冲突预检
|
||||
- `gitlink-cli release +view --owner <owner> --repo <repo> --id <version_id>`
|
||||
- 🤖AI 判断点:
|
||||
- **依赖拓扑排序**:backend 依赖 infra、frontend 依赖 backend → 发布顺序 `infra → backend → frontend`。
|
||||
- **发布门禁**:任一仓库有阻断级未合并 PR 或 P0 issue,先警告,不得自动跳过。
|
||||
- 生成"建议发布顺序"草案(每仓 tag、notes 要点、顺序)。
|
||||
- ⚠️强制确认:暂停并向用户确认发布计划与顺序,未确认严禁进入 Step6。
|
||||
|
||||
### Step 6: Release 协调发布(纯命令,需用户确认)
|
||||
|
||||
按拓扑顺序逐仓库串行执行(前一个失败则停止,避免半发布):
|
||||
- `gitlink-cli release +create --owner <owner> --repo <repo> --tag <vX.Y.Z> --name "<标题>" --body "<notes>" --target <branch>`
|
||||
- 每仓发布后核对:
|
||||
- `gitlink-cli release +view --owner <owner> --repo <repo> --id <version_id>`
|
||||
- 🤖AI 判断点:中间某仓失败,记录已成功与失败仓,回滚交由用户(不擅自 `release +delete`)。
|
||||
- 可选(用户明确要求清理"已发布修复"的 issue,再次确认后):
|
||||
- `gitlink-cli issue +batch-close --owner <owner> --repo <repo> --numbers <n,n>`
|
||||
|
||||
---
|
||||
|
||||
## Agent 触发示例
|
||||
|
||||
**用户**:"帮我盘点 acme 组织的 frontend、backend、infra 三个仓库的进度,顺便把该发的版本协调发一下。"
|
||||
|
||||
**Agent**:
|
||||
1. Step1(🤖AI):提取 `repo_list = [acme/frontend, acme/backend, acme/infra]`。
|
||||
2. Step2(纯命令):循环三仓跑 `issue +list`、`pr +list`、`release +list`、`milestone +list`、`repo +info`,落盘 `data/`。
|
||||
3. Step3(🤖AI):逐仓 `workflow +repo-report`、`workflow +health`;对比得出"backend PR #142 阻塞 frontend,infra 已 4 个月未发版"。
|
||||
4. Step4(🤖AI):生成 `MULTI-REPO-DASHBOARD.md`,含总览表、PR 看板、Release 时间线、风险。
|
||||
5. Step5(🤖AI):判断依赖顺序 `infra(v2.1.0) → backend(v3.4.0) → frontend(v1.9.0)`;`pr +check-merge` 确认 backend 发布分支无冲突 → 暂停确认。
|
||||
6. 用户批准后 Step6(纯命令):按顺序 `release +create` 三仓,每发一个即 `release +view` 核对,汇总发布结果。
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- **只读 vs 写**:Step1-4 全只读可自由执行;Step5 决策与 Step6 写操作必须显式确认。
|
||||
- **幂等性**:采集失败不重试到死循环;发布失败不自动回滚。
|
||||
- **不替代子 Skill**:单仓深度操作细节仍由 issue/pr/release/insight/workflow 各自负责。
|
||||
|
|
@ -14,11 +14,11 @@ gitlink-cli auth status
|
|||
# → Logged in as lindiwen23
|
||||
|
||||
# Step 2: 获取未读通知(status=1)
|
||||
gitlink-cli api GET "users/lindiwen23/messages.json" --query "status=1&limit=20" --format json
|
||||
gitlink-cli notification +list --format json
|
||||
# → 7 条未读,unread_notification=7, unread_atme=0
|
||||
|
||||
# Step 3: 获取已读通知(用于趋势分析和回顾)
|
||||
gitlink-cli api GET "users/lindiwen23/messages.json" --query "status=2&limit=20" --format json
|
||||
gitlink-cli notification +list --all --format json
|
||||
# → 21 条已读
|
||||
|
||||
# Step 4: 分类统计、生成摘要报告
|
||||
|
|
@ -176,12 +176,10 @@ gitlink-cli api GET "users/lindiwen23/messages.json" --query "status=2&limit=20"
|
|||
|
||||
### 经验总结
|
||||
|
||||
1. **`gitlink-cli notification` 命令不存在**:GitLink CLI 没有内置 notification 子命令,所有操作需通过 `gitlink-cli api` 调用 Raw API
|
||||
1. **`gitlink-cli notification` 命令已可用**:使用 `notification +list` `+read` `+read-all` `+watch` 管理通知
|
||||
2. **API 端点是 `messages` 不是 `notifications`**:GitLink 用「消息」术语
|
||||
3. **CLI 路径 Bug**:`gitlink-cli api` 的 PATH 参数以 `/` 开头会被解析为本地文件路径,必须去掉前导 `/`
|
||||
4. **响应字段 `unread_notification` 和 `unread_atme`**:顶层统计字段可直接用于分类计数,无需遍历全部消息
|
||||
5. **没有批量已读 API**:标记已读需逐条调用 `POST users/{owner}/messages/{id}/read`
|
||||
6. **`source` 字段 `PullReuqestAtme`**:官方 API 存在拼写错误(应为 PullRequestAtme),匹配时注意
|
||||
3. **没有批量已读 API**:标记已读需逐条调用 `notification +read --id <id>`
|
||||
4. **`source` 字段 `PullReuqestAtme`**:官方 API 存在拼写错误(应为 PullRequestAtme),匹配时注意
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -195,12 +193,8 @@ gitlink-cli api GET "users/lindiwen23/messages.json" --query "status=2&limit=20"
|
|||
```
|
||||
工具调用 1: Read → ../gitlink-shared/SKILL.md ← 遵循 Skill 前置条件
|
||||
工具调用 2: Bash → gitlink-cli auth status ← 获取用户名
|
||||
工具调用 3: Bash → gitlink-cli api GET "users/lindiwen23/messages.json"
|
||||
--query "status=1&limit=20" --format json ← 获取未读
|
||||
工具调用 4: Bash → gitlink-cli api GET "users/lindiwen23/messages.json"
|
||||
--query "status=2&limit=20" --format json ← 获取已读(趋势分析)
|
||||
工具调用 5: Bash → gitlink-cli api GET "users/lindiwen23/messages.json"
|
||||
--query "limit=20" --format json ← 获取全部(总计统计)
|
||||
工具调用 3: Bash → gitlink-cli notification +list --format json ← 获取未读
|
||||
工具调用 4: Bash → gitlink-cli notification +list --all --format json ← 获取已读(趋势分析)
|
||||
```
|
||||
|
||||
### Agent 决策过程
|
||||
|
|
@ -283,7 +277,7 @@ Agent **正确遵循了 skill v2.0.0 的工作流**:
|
|||
|
||||
| 场景 | 检测方式 | 处理 |
|
||||
|------|----------|------|
|
||||
| `notification +list` 命令不存在 | 运行 `gitlink-cli notification` 报错 | 改用 `gitlink-cli api GET "users/{owner}/messages.json"` |
|
||||
| `notification +list` 返回空 | 可能无未读通知 | 使用 `notification +list --all` 查看全部 |
|
||||
| API 返回 HTML 而非 JSON | 响应以 `<!doctype html>` 开头 | 去掉路径前导 `/` 重试 |
|
||||
| 未读通知 > 返回条数 | `total_count` > `messages.length` | 追加 `--query "page=2"` |
|
||||
| 用户名不确定 | `auth status` 输出 | 从输出中提取 login 字段 |
|
||||
|
|
@ -293,14 +287,14 @@ Agent **正确遵循了 skill v2.0.0 的工作流**:
|
|||
|
||||
## 版本兼容性说明
|
||||
|
||||
本 skill v2.0.0 基于 `gitlink-cli 0.1.18` 编写。关键变更:
|
||||
本 skill v3.0.0 基于 `gitlink-cli` 最新版本编写。关键变更:
|
||||
|
||||
| 版本 | `notification` 子命令 | 实际 API | 标记已读 |
|
||||
|------|----------------------|----------|----------|
|
||||
| v1.0.0 | `notification +list`(虚构) | 不存在 | `notification +read-all`(虚构) |
|
||||
| v2.0.0 | 无此子命令 | `GET /api/users/{owner}/messages.json` | `POST /api/users/{owner}/messages/{id}/read` |
|
||||
| 版本 | 通知获取 | 标记已读 | 关注 |
|
||||
|------|----------|----------|------|
|
||||
| v1.0-v2.0 | Raw API `GET users/{owner}/messages.json` | `POST users/{owner}/messages/{id}/read` | 无 |
|
||||
| v3.0.0 | `notification +list` | `notification +read` / `+read-all` | `notification +watch` |
|
||||
|
||||
当 CLI 版本更新后,重新验证可用命令:
|
||||
```bash
|
||||
gitlink-cli --help
|
||||
gitlink-cli notification --help
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
name: gitlink-notification-digest
|
||||
version: 2.0.0
|
||||
version: 3.0.0
|
||||
description: "通知摘要:汇总 GitLink 通知并按类型分类,生成通知摘要报告,支持批量标记已读。当用户需要查看通知摘要、整理通知、清理未读通知时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
|
|
@ -20,9 +20,9 @@ metadata:
|
|||
|
||||
## 功能概述
|
||||
|
||||
帮助用户高效管理 GitLink 通知(GitLink 平台称为「消息」):
|
||||
帮助用户高效管理 GitLink 通知:
|
||||
|
||||
1. **通知列表** — 获取所有未读通知
|
||||
1. **通知列表** — 使用 `notification +list` 获取通知
|
||||
2. **自动分类** — 按 `source` 字段分类(Issue/PR/系统等)
|
||||
3. **优先级判断** — 识别需要立即处理的通知
|
||||
4. **批量操作** — 支持标记已读(需确认)
|
||||
|
|
@ -30,93 +30,52 @@ metadata:
|
|||
|
||||
---
|
||||
|
||||
## ⚠️ 关键注意事项
|
||||
|
||||
### CLI 路径处理 Bug
|
||||
|
||||
**`gitlink-cli api` 的路径参数不要以 `/` 开头**,否则会被错误解析为本地文件路径。
|
||||
## 可用的 notification 命令
|
||||
|
||||
```bash
|
||||
# ❌ 错误 — 路径以 / 开头会被解析为 D:/Applications/Git/...
|
||||
gitlink-cli api GET /users/me
|
||||
# 列出通知
|
||||
gitlink-cli notification +list [--all] [--participating] [--page 1] [--limit 20]
|
||||
|
||||
# ✅ 正确 — 去掉前导 /
|
||||
gitlink-cli api GET "users/{owner}/messages.json"
|
||||
# 标记单条已读
|
||||
gitlink-cli notification +read --id <notification_id>
|
||||
|
||||
# 标记全部已读
|
||||
gitlink-cli notification +read-all
|
||||
|
||||
# 关注/取消关注仓库通知
|
||||
gitlink-cli notification +watch --owner <owner> --repo <repo>
|
||||
gitlink-cli notification +watch --owner <owner> --repo <repo> --unwatch
|
||||
```
|
||||
|
||||
### 术语对照
|
||||
|
||||
GitLink 平台用「**消息**」(messages)而不是「通知」(notifications)。API 端点和字段均使用 `messages`。
|
||||
|
||||
---
|
||||
|
||||
## 工作流:通知摘要
|
||||
|
||||
### Step 1:获取通知列表
|
||||
|
||||
使用 Raw API 调用 `/api/users/{owner}/messages.json`:
|
||||
使用 `notification +list` 命令:
|
||||
|
||||
```bash
|
||||
# 获取未读通知(status=1 表示未读,2 表示已读)
|
||||
gitlink-cli api GET "users/{owner}/messages.json" --query "status=1&limit=20" --format json
|
||||
# 获取未读通知
|
||||
gitlink-cli notification +list --format json
|
||||
|
||||
# 获取全部通知(含已读)
|
||||
gitlink-cli api GET "users/{owner}/messages.json" --query "limit=20" --format json
|
||||
# 获取所有通知(含已读)
|
||||
gitlink-cli notification +list --all --format json
|
||||
|
||||
# 仅参与的通知
|
||||
gitlink-cli notification +list --participating --format json
|
||||
|
||||
# 分页获取
|
||||
gitlink-cli api GET "users/{owner}/messages.json" --query "status=1&page=2&limit=20" --format json
|
||||
|
||||
# 按类型过滤
|
||||
# type=notification 系统消息(仓库动态、PR、Issue 等)
|
||||
# type=atme @我消息
|
||||
gitlink-cli api GET "users/{owner}/messages.json" --query "type=atme&status=1&limit=20" --format json
|
||||
gitlink-cli notification +list --page 2 --limit 20 --format json
|
||||
```
|
||||
|
||||
**参数说明:**
|
||||
|
||||
| 参数 | 位置 | 说明 |
|
||||
|------|------|------|
|
||||
| `{owner}` | Path | 当前用户名(从 `gitlink-cli auth status` 获取) |
|
||||
| `status` | Query | 1=未读,2=已读,不传=全部 |
|
||||
| `type` | Query | `notification`=系统消息,`atme`=@我消息,不传=全部 |
|
||||
| `page` | Query | 页码(默认 1) |
|
||||
| `limit` | Query | 每页条数(默认 20) |
|
||||
|
||||
**响应结构:**
|
||||
|
||||
```json
|
||||
{
|
||||
"total_count": 28,
|
||||
"type": "",
|
||||
"unread_notification": 7,
|
||||
"unread_atme": 0,
|
||||
"messages": [
|
||||
{
|
||||
"id": 740214,
|
||||
"status": 1,
|
||||
"content": "jiangtx在 <b>jiangtx/gitlink-cli</b> 提交了一个合并请求:<b>label 模块新建</b>",
|
||||
"notification_url": "https://www.gitlink.org.cn/jiangtx/gitlink-cli/pulls/15347",
|
||||
"source": "ProjectPullRequest",
|
||||
"created_at": "2026-06-03 00:27:37",
|
||||
"time_ago": "10小时前",
|
||||
"type": "notification",
|
||||
"sender": {
|
||||
"id": 113,
|
||||
"type": "User",
|
||||
"name": "jiangtx",
|
||||
"login": "jiangtx",
|
||||
"image_url": "..."
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
**响应结构:** 与 GitLink 平台「消息」API 返回结构一致。
|
||||
|
||||
**提取字段:**
|
||||
- `id` — 消息 ID(用于标记已读)
|
||||
- `content` — HTML 格式的通知内容
|
||||
- `source` — 通知来源类型(枚举值,见下方分类表)
|
||||
- `notification_url` — 跳转链接,可从中解析仓库(提取 URL 中的 `/owner/repo/` 段)
|
||||
- `notification_url` — 跳转链接,可从中解析仓库
|
||||
- `created_at` — 通知时间(格式 `YYYY-MM-DD HH:mm:ss`)
|
||||
- `status` — 1=未读,2=已读
|
||||
- `type` — `notification` 或 `atme`
|
||||
|
|
@ -194,16 +153,18 @@ gitlink-cli api GET "users/{owner}/messages.json" --query "type=atme&status=1&li
|
|||
|
||||
```bash
|
||||
# 标记单条已读
|
||||
gitlink-cli api POST "users/{owner}/messages/{id}/read" --format json
|
||||
gitlink-cli notification +read --id <notification_id>
|
||||
|
||||
# 批量标记已读 — 逐条调用,GitLink 暂无批量已读 API
|
||||
# 全部标记已读
|
||||
gitlink-cli notification +read-all
|
||||
|
||||
# 批量标记 — 逐条调用
|
||||
for id in <id1> <id2> <id3>; do
|
||||
gitlink-cli api POST "users/{owner}/messages/$id/read" --format json
|
||||
gitlink-cli notification +read --id $id
|
||||
done
|
||||
```
|
||||
|
||||
> ⚠️ **执行前必须确认用户意图** — 标记已读为写操作。
|
||||
> ⚠️ **GitLink 没有批量已读 API**,需要逐条标记。
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -283,7 +244,7 @@ done
|
|||
- 需要回复/处理:{{need_action_count}} 条 P0/P1 通知
|
||||
|
||||
如需标记 P3 通知为已读,我可以逐条执行:
|
||||
`gitlink-cli api POST "users/{owner}/messages/{id}/read"`
|
||||
`gitlink-cli notification +read --id <id>`
|
||||
```
|
||||
|
||||
---
|
||||
|
|
@ -295,7 +256,7 @@ done
|
|||
| 无未读通知 | 输出"🎉 所有通知已处理完毕" |
|
||||
| 通知数量 > 50 | 分页获取(page 1/2/3),优先分析最近 50 条 |
|
||||
| API 返回 HTML 而非 JSON | 路径可能以 `/` 开头导致解析错误,去掉前导 `/` 重试 |
|
||||
| `unread_notification` > messages 数组长度 | 存在多页数据,追加 `--query "page=2"` 获取 |
|
||||
| 通知数量 > 20 | 分页获取(--page 2,3),优先分析最近 50 条 |
|
||||
| 用户名不确定 | 先执行 `gitlink-cli auth status` 获取当前登录用户 |
|
||||
|
||||
---
|
||||
|
|
@ -305,7 +266,6 @@ done
|
|||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **标记已读为写操作**,执行前必须确认用户意图
|
||||
- ✅ **本 Skill 默认只读分析**,仅在用户明确要求时标记已读
|
||||
- ⚠️ **`gitlink-cli api` 路径不要以 `/` 开头**(CLI Bug)
|
||||
- ⚠️ **GitLink 用「消息(messages)」而非「通知(notifications)」**
|
||||
- ⚠️ **`source` 字段 `PullReuqestAtme` 是官方拼写错误**,实际使用注意匹配
|
||||
- ⚠️ **通知可能分页**,数量 >20 时需追加 `--query "page=2"`
|
||||
- ⚠️ **通知可能分页**,数量 >20 时需追加 `--page 2`
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
name: gitlink-onboarding
|
||||
version: 1.0.0
|
||||
description: "新人入门引导:帮助新贡献者发现适合入门的 Issue、了解项目贡献流程。当用户想参与项目贡献但不知从何入手、寻找入门任务、或询问如何开始贡献代码时触发。"
|
||||
version: 1.1.0
|
||||
description: "新人入门引导:帮助新贡献者发现适合入门的 Issue,自动生成引导评论降低参与门槛。当用户想参与项目贡献但不知从何入手、寻找入门任务、或询问如何开始贡献代码时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
|
|
@ -104,9 +104,16 @@ gitlink-cli issue +view --owner <owner> --repo <repo> --number <project_issues_i
|
|||
- `comment_journals_count` — 是否有讨论历史(有讨论 = 需求更明确)
|
||||
- `start_date` / `due_date` — 是否有时间限制
|
||||
|
||||
### Step 5:生成新人引导报告
|
||||
### Step 5:生成引导评论(v1.1 新增)
|
||||
|
||||
将所有信息组织为以下格式输出。
|
||||
为每个推荐的入门 Issue 生成一段可直接在 GitLink Issue 下发布的引导评论。评论内容包括:
|
||||
- 🎉 欢迎语 + 适合新手说明
|
||||
- 📋 建议步骤(认领、Fork、Clone、分支、提交、PR)
|
||||
- 💡 提示语(鼓励提问、提供帮助)
|
||||
|
||||
### Step 6:生成新人引导报告
|
||||
|
||||
将所有信息(含引导评论)按以下格式输出。
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
name: gitlink-pm
|
||||
version: 1.0.0
|
||||
version: 1.1.0
|
||||
description: "项目管理(PM):Sprint、看板、周报等项目管理功能。当用户需要使用 GitLink PM 功能时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
|
|
@ -14,33 +14,31 @@ metadata:
|
|||
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。`gh` 仅适用于 GitHub 平台。**
|
||||
|
||||
GitLink PM 模块提供敏捷项目管理能力,目前通过 Raw API 访问。
|
||||
GitLink PM 模块提供敏捷项目管理能力,通过 `pm` Shortcut 命令访问。
|
||||
|
||||
## API 端点
|
||||
|
||||
> 前缀:`/api/pm`
|
||||
## 可用命令
|
||||
|
||||
```bash
|
||||
# 看板
|
||||
gitlink-cli api GET /pm/dashboards --query 'project_id=123'
|
||||
gitlink-cli pm +dashboards --project <project_id>
|
||||
|
||||
# Sprint Issue 列表
|
||||
gitlink-cli api GET /pm/sprint_issues --query 'project_id=123'
|
||||
gitlink-cli pm +sprints --project <project_id>
|
||||
|
||||
# 周报
|
||||
gitlink-cli api GET /pm/weekly_issues --query 'project_id=123'
|
||||
gitlink-cli pm +weekly --project <project_id>
|
||||
|
||||
# Issue 标签
|
||||
gitlink-cli api GET /pm/issue_tags --query 'project_id=123'
|
||||
gitlink-cli pm +tags --project <project_id>
|
||||
|
||||
# 流水线
|
||||
gitlink-cli api GET /pm/pipelines --query 'project_id=123'
|
||||
gitlink-cli pm +pipelines --project <project_id>
|
||||
|
||||
# Action 运行记录
|
||||
gitlink-cli api GET /pm/action_runs --query 'project_id=123'
|
||||
gitlink-cli pm +runs --project <project_id>
|
||||
```
|
||||
|
||||
## 注意事项
|
||||
|
||||
- PM 接口需要项目 ID(`project_id`),可通过 `repo +info` 获取
|
||||
- PM 命令使用 `--project` flag 指定项目 ID,可通过 `repo +info` 获取
|
||||
- PM 功能需要项目开启 PM 模块
|
||||
|
|
|
|||
|
|
@ -0,0 +1,152 @@
|
|||
---
|
||||
name: gitlink-pr-gate
|
||||
version: 1.0.0
|
||||
description: "代码质量看门人编排:PR 提交后,AI 自动审查代码 → 跑/核对 CI → 汇总结构化 Review 评论 → 质量达标自动合并,当用户需要审查 PR、给 PR 做 Review、把关合并质量时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
orchestrates:
|
||||
- gitlink-code-review
|
||||
- gitlink-commit-quality
|
||||
- gitlink-ci-health
|
||||
- gitlink-pr
|
||||
cliHelp: "gitlink-cli pr --help"
|
||||
---
|
||||
|
||||
# gitlink-pr-gate(代码质量看门人编排)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),认证/权限/API 注意事项。**
|
||||
**CRITICAL — 所有写入操作(pr +comment、pr +merge)前,务必先确认用户意图。**
|
||||
**CRITICAL — 自动合并是高风险写操作,必须把审查结论完整复述给用户,确认后才合并。**
|
||||
**CRITICAL — GitLink 操作只能用 gitlink-cli。禁止用 gh(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
---
|
||||
|
||||
## 工作流总览
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A[用户: 审查某个 PR] --> S0[Step0 🤖AI解析审查目标<br/>确定 PR 编号]
|
||||
S0 --> S1[Step1 采集 PR 变更<br/>pr+diff / +files / +commits]
|
||||
S1 --> S2[Step2 🤖AI代码审查<br/>调 code-review + commit-quality]
|
||||
S2 --> S3[Step3 CI 检查<br/>调 ci-health / ci+builds]
|
||||
S3 --> S4[Step4 🤖AI汇总评审<br/>生成结构化 Review 评论]
|
||||
S4 --> CONF1{用户确认评论?}
|
||||
CONF1 -->|是| S5[pr+comment 发布评论]
|
||||
CONF1 -->|修改| S4
|
||||
S5 --> S6[Step5 🤖AI质量达标判断]
|
||||
S6 --> CONF2{达标且用户确认合并?}
|
||||
CONF2 -->|是| S7[pr+merge 自动合并]
|
||||
CONF2 -->|否| S8[列出需修改项,不合并]
|
||||
S7 --> DONE[完成]
|
||||
S8 --> DONE
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 编排的子 Skill
|
||||
|
||||
| 子 Skill | 职责 | 调用时机 |
|
||||
|---|---|---|
|
||||
| gitlink-code-review | AI 语义代码审查(逻辑/安全/性能/可读性) | Step2 核心 |
|
||||
| gitlink-commit-quality | 提交规范检查(Conventional Commits、PR 描述) | Step2 规范 |
|
||||
| gitlink-ci-health | CI 构建状态与成功率 | Step3 CI |
|
||||
| gitlink-pr | PR 的 diff/files/commits/comment/merge/check-merge | Step1、Step4、Step5 |
|
||||
|
||||
---
|
||||
|
||||
## 详细步骤
|
||||
|
||||
### Step 0: 🤖AI 解析审查目标(AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:确认审查对象:
|
||||
- 用户给了 PR 编号/URL → 直接用
|
||||
- 用户说"最近的 PR"/"待审 PR" → `gitlink-cli pr +list --owner <owner> --repo <repo> --state open` 找出候选,列给用户确认
|
||||
- 纯命令:
|
||||
- `gitlink-cli pr +view --owner <owner> --repo <repo> --number <pr_number>` — 确认 PR 存在、拿基本信息(标题、分支、作者)
|
||||
|
||||
### Step 1: 采集 PR 变更(纯命令)
|
||||
|
||||
- 纯命令(拉取审查素材):
|
||||
- `gitlink-cli pr +diff --owner <owner> --repo <repo> --number <pr_number>` — 完整 diff
|
||||
- `gitlink-cli pr +files --owner <owner> --repo <repo> --number <pr_number>` — 变更文件清单
|
||||
- `gitlink-cli pr +commits --owner <owner> --repo <repo> --number <pr_number>` — 提交历史
|
||||
- 本步全部只读,无需确认。
|
||||
|
||||
### Step 2: 🤖AI 代码审查(AI 判断点 + 子 Skill)
|
||||
|
||||
- 调 `gitlink-code-review`:对 diff 做语义分析,找潜在问题——
|
||||
- 逻辑错误、边界条件、空指针、资源泄漏
|
||||
- 安全隐患(注入、鉴权、敏感信息)
|
||||
- 性能问题、可读性、命名
|
||||
- 调 `gitlink-commit-quality`:检查提交规范——
|
||||
- Conventional Commits(feat/fix/docs/...)
|
||||
- PR 描述完整性、分支命名
|
||||
- 🤖AI 判断点:把审查结果分级:
|
||||
- 🔴 阻断问题(必须改才能合并)
|
||||
- 🟡 建议改进(可改可不改)
|
||||
- 🟢 优点(值得肯定的写法)
|
||||
- 纯命令(可选,辅助判断可合并性):
|
||||
- `gitlink-cli pr +check-merge --owner <owner> --repo <repo> --number <pr_number>` — 冲突预检
|
||||
|
||||
### Step 3: CI 检查(纯命令 + 子 Skill)
|
||||
|
||||
- 调 `gitlink-ci-health`:拉取该 PR 相关构建状态。
|
||||
- 纯命令:
|
||||
- `gitlink-cli ci +builds --owner <owner> --repo <repo> --limit 10` — 最近构建列表
|
||||
- `gitlink-cli ci +logs --owner <owner> --repo <repo> --number <build_id>` — 失败时查日志
|
||||
- 🤖AI 判断点:
|
||||
- CI 全绿 → 客观质量达标
|
||||
- CI 失败 → 标记阻断,合并前必须修复
|
||||
- 无 CI 记录 → 提示用户该 PR 未跑 CI,合并风险自担
|
||||
|
||||
### Step 4: 🤖AI 汇总评审 → 评论(AI 判断点 + 写命令)
|
||||
|
||||
- 🤖AI 判断点:综合 Step2 审查 + Step3 CI,生成结构化 Review 评论,结构:
|
||||
```
|
||||
## 🤖 自动审查结论
|
||||
**CI 状态**: ✅全绿 / ❌失败 / ⚠️未跑
|
||||
**可合并**: 是 / 否(原因)
|
||||
|
||||
🔴 阻断问题:
|
||||
- <文件:行> <问题描述>
|
||||
🟡 建议改进:
|
||||
- <建议>
|
||||
🟢 亮点:
|
||||
- <肯定>
|
||||
```
|
||||
- ⚠️写入命令(评论全文先复述给用户确认):
|
||||
- `gitlink-cli pr +comment --owner <owner> --repo <repo> --number <pr_number> --body "<评审全文>"`
|
||||
|
||||
### Step 5: 🤖AI 质量达标判断 → 合并(AI 判断点 + 写命令)
|
||||
|
||||
- 🤖AI 判断点:综合判断是否达标——
|
||||
- **达标条件**:无 🔴 阻断问题 + CI 全绿 + 无合并冲突
|
||||
- **不达标**:有任一阻断项 → 列出需修改项,**不合并**,等作者修
|
||||
- ⚠️写入命令(达标且用户明确确认后):
|
||||
- `gitlink-cli pr +merge --owner <owner> --repo <repo> --number <pr_number>`
|
||||
- 🤖AI 判断点:合并后可选——关闭相关 Issue、更新里程碑(需用户二次确认)。
|
||||
|
||||
---
|
||||
|
||||
## Agent 触发示例
|
||||
|
||||
**用户**:"帮我审查 jiangtx/gitlink-cli 的 PR #25,没问题就合并。"
|
||||
|
||||
**Agent**:
|
||||
1. Step0(🤖AI):确认 PR #25 → `pr +view` 拿基本信息。
|
||||
2. Step1(纯命令):`pr +diff`、`pr +files`、`pr +commits` 拉取变更(改了 5 个文件,+120/-30)。
|
||||
3. Step2(🤖AI):调 code-review 发现 1 个 🟡 建议(函数过长)+ commit-quality 发现提交信息符合规范;`pr +check-merge` 无冲突。
|
||||
4. Step3(纯命令):调 ci-health + `ci +builds`,CI 全绿。
|
||||
5. Step4(🤖AI):生成结构化评论 → 复述给用户 → 确认 → `pr +comment` 发布。
|
||||
6. Step5(🤖AI):无 🔴 阻断 + CI 全绿 → 判定达标 → 用户确认合并 → `pr +merge`。
|
||||
7. 输出:审查结论已评论、PR 已合并。
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- **只读 vs 写**:Step0-3 全只读;Step4 comment、Step5 merge 为写入,须确认。
|
||||
- **AI 审查 ≠ 替代人工**:本 Skill 的 AI 审查是辅助,最终合并决策须用户拍板。
|
||||
- **不替代子 Skill**:代码审查深度仍由 code-review/commit-quality/ci-health 各自负责,本 Skill 只编排顺序与做汇总判断。
|
||||
- **纯命令串联**:pr +view / +diff / +files / +commits / +comment / +merge / +check-merge + ci +builds = 8+ 命令,满足"≥3 个命令串联"。
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
---
|
||||
name: gitlink-project-bootstrap
|
||||
version: 1.0.0
|
||||
description: "项目一键初始化编排:从一句话项目描述出发,串联创建仓库 → 生成 README/LICENSE/CI 配置 → 初始化 label/milestone/member → 创建首批 Issue → 配置 webhook,实现端到端自动化。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
orchestrates:
|
||||
- gitlink-repo
|
||||
- gitlink-label
|
||||
- gitlink-milestone
|
||||
- gitlink-member
|
||||
- gitlink-webhook
|
||||
- gitlink-issue
|
||||
- gitlink-onboarding
|
||||
cliHelp: "gitlink-cli --help"
|
||||
---
|
||||
|
||||
# gitlink-project-bootstrap(项目一键初始化编排)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),认证/权限/API 注意事项。**
|
||||
**CRITICAL — 本 Skill 几乎全是写入操作(建仓库/建文件/加成员),每一步执行前务必先确认用户意图。**
|
||||
**CRITICAL — GitLink 操作只能用 gitlink-cli。禁止用 gh(GitHub CLI)操作 GitLink 资源。**
|
||||
**CRITICAL — 失败后不自动 `repo +delete` 回滚,必须用户授权才清理。**
|
||||
|
||||
---
|
||||
|
||||
## 工作流总览
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A[用户一句话需求] --> S1[Step1 🤖AI需求解析<br/>提取项目名/语言/描述/成员]
|
||||
S1 --> CONF1{用户确认初始化清单?}
|
||||
CONF1 -->|否| S1
|
||||
CONF1 -->|是| S2[Step2 创建仓库骨架<br/>repo+create + create-file×3]
|
||||
S2 --> S3[Step3 初始化协作体系<br/>label+create / milestone+create / member+batch-add]
|
||||
S3 --> S4[Step4 🤖AI推荐首批Issue<br/>issue+create ×N]
|
||||
S4 --> S5[Step5 配置自动化<br/>webhook+create + webhook+test]
|
||||
S5 --> S6[Step6 🤖AI输出初始化报告<br/>调 onboarding 生成新人文档]
|
||||
S6 --> DONE[完成]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 编排的子 Skill
|
||||
|
||||
| 子 Skill | 职责 | 调用时机 |
|
||||
|---|---|---|
|
||||
| gitlink-repo | 创建仓库、写入 README/LICENSE/CI 文件 | Step2 |
|
||||
| gitlink-label | 初始化标签体系(bug/feature/doc...) | Step3 |
|
||||
| gitlink-milestone | 创建首个里程碑(Sprint 1 / MVP) | Step3 |
|
||||
| gitlink-member | 批量添加初始成员 | Step3 |
|
||||
| gitlink-issue | 创建首批 Issue | Step4 |
|
||||
| gitlink-webhook | 配置 CI/webhook 回调 | Step5 |
|
||||
| gitlink-onboarding | 生成新人引导文档 | Step6 |
|
||||
|
||||
---
|
||||
|
||||
## 详细步骤
|
||||
|
||||
### Step 1: 🤖AI 需求解析(AI 判断点)
|
||||
|
||||
- 🤖AI 判断点:从用户一句话提取并生成「初始化清单」:
|
||||
- 项目名(name)
|
||||
- 描述(description)
|
||||
- 语言/技术栈(决定 README/CI 模板)
|
||||
- 可见性(private 默认)
|
||||
- 成员列表(user_id 或 login)
|
||||
- 缺省字段需明确标注「(推断)」,不得静默补全。
|
||||
- 纯命令(核验身份/补全成员 ID):
|
||||
- `gitlink-cli user +me` — 当前操作者
|
||||
- `gitlink-cli search +users -k <姓名>` — 反查用户 ID
|
||||
- ⚠️强制确认:把完整清单出示给用户,确认或修改后才进入 Step2。
|
||||
|
||||
### Step 2: 创建仓库骨架(纯命令 + 🤖AI 生成内容)
|
||||
|
||||
- 纯命令(建仓库):
|
||||
- `gitlink-cli repo +create --name <name> --description "<desc>" --private <true|false>`
|
||||
- 🤖AI 判断点:根据语言生成 README.md / LICENSE / CI 配置内容(如 Python→pytest 模板、Go→go build 模板)。
|
||||
- ⚠️写入命令(逐个创建文件,每个都需确认):
|
||||
- `gitlink-cli repo +create-file --owner <owner> --repo <name> --filepath README.md --content "<内容>" --message "docs: add README"`
|
||||
- `gitlink-cli repo +create-file --owner <owner> --repo <name> --filepath LICENSE --content "<MIT...>" --message "docs: add LICENSE"`
|
||||
- `gitlink-cli repo +create-file --owner <owner> --repo <name> --filepath .gitlink-ci.yml --content "<CI配置>" --message "ci: add pipeline config"`
|
||||
|
||||
### Step 3: 初始化协作体系(纯命令)
|
||||
|
||||
- 标签体系(🤖AI 推荐配色):
|
||||
- `gitlink-cli label +create --owner <owner> --repo <name> --name bug --color "#d73a4a"`
|
||||
- `gitlink-cli label +create --owner <owner> --repo <name> --name feature --color "#a2eeef"`
|
||||
- `gitlink-cli label +create --owner <owner> --repo <name> --name documentation --color "#0075ca"`
|
||||
- 里程碑:
|
||||
- `gitlink-cli milestone +create --owner <owner> --repo <name> --name "Sprint 1"`
|
||||
- 成员(批量):
|
||||
- `gitlink-cli member +batch-add --owner <owner> --repo <name> --user-ids <id1,id2,id3> --dry-run` — 先预览
|
||||
- 确认后去掉 `--dry-run` 正式添加
|
||||
|
||||
### Step 4: 🤖AI 推荐首批 Issue(AI 判断点 + 写入命令)
|
||||
|
||||
- 🤖AI 判断点:根据项目类型推荐 3-5 个初始 Issue(如"搭建项目结构""配置 CI""编写使用文档""冒烟测试")。
|
||||
- ⚠️写入命令(确认后逐条创建):
|
||||
- `gitlink-cli issue +create --owner <owner> --repo <name> --title "搭建项目结构" --body "<描述>" --label <label>`
|
||||
|
||||
### Step 5: 配置自动化(纯命令)
|
||||
|
||||
- ⚠️写入命令:
|
||||
- `gitlink-cli webhook +create --owner <owner> --repo <name> --url <回调URL> --events push,merge_request`
|
||||
- `gitlink-cli webhook +test --owner <owner> --repo <name> --id <webhook_id>` — 测试连通性
|
||||
|
||||
### Step 6: 🤖AI 输出初始化报告(AI 判断点)
|
||||
|
||||
- 调子 Skill:`gitlink-onboarding` — 生成新人上手文档段落。
|
||||
- 🤖AI 判断点:汇总输出初始化报告:
|
||||
- 仓库地址、可见性
|
||||
- 已创建文件清单(README/LICENSE/CI)
|
||||
- 标签数、里程碑、成员数
|
||||
- 首批 Issue 列表
|
||||
- Webhook 配置与测试结果
|
||||
- 可选建议:`gitlink-cli repo +info --owner <owner> --repo <name>` 复核仓库状态。
|
||||
|
||||
---
|
||||
|
||||
## 错误处理与回滚
|
||||
|
||||
- **逐步熔断**:关键命令(repo +create、repo +create-file、milestone +create)失败,立即停止后续步骤。
|
||||
- **不自动删除**:本 Skill **不**自动 `repo +delete`,失败后由用户决定是否回滚。
|
||||
- **部分失败汇总**:成员添加、Issue 创建、Webhook 测试的个别失败不阻塞,统一在 Step6 报告列出。
|
||||
|
||||
---
|
||||
|
||||
## Agent 触发示例
|
||||
|
||||
**用户**:"帮我初始化一个 Python 的数据分析项目 data-analysis-demo,成员有小王和小李,先私有。"
|
||||
|
||||
**Agent**:
|
||||
1. Step1(🤖AI):解析 → 项目名 `data-analysis-demo`,语言 Python,成员含小王小李,私有 → 出示清单等待确认。
|
||||
2. 用户确认后:
|
||||
- `repo +create --name data-analysis-demo --description "..." --private true`
|
||||
- 🤖 生成 README.md / LICENSE(MIT) / .gitlink-ci.yml(python pytest) → 三个 `repo +create-file`。
|
||||
3. `label +create`(bug/feature/docs 三色);`milestone +create --name "MVP"`;`member +batch-add --user-ids <小王,小李> --dry-run` → 确认 → 正式添加。
|
||||
4. 🤖 推荐 5 条 Issue(环境脚手架/数据加载器/CI 联调/文档/冒烟测试)→ 确认 → 逐条 `issue +create`。
|
||||
5. 询问 Webhook URL → `webhook +create` + `webhook +test`。
|
||||
6. 调 onboarding 生成新人文档,输出初始化报告。
|
||||
|
||||
---
|
||||
|
||||
## 反模式(禁止行为)
|
||||
|
||||
- ❌ 未确认初始化清单就执行写入命令。
|
||||
- ❌ 编造本文件未列出的命令(如 `repo +bootstrap`、`issue +bulk-create`)。
|
||||
- ❌ 用 `gh`、`curl` 绕过 gitlink-cli。
|
||||
- ❌ 静默补全缺失字段而不告知用户。
|
||||
- ❌ 失败后自动 `repo +delete` 清理(必须用户授权)。
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
---
|
||||
name: gitlink-release-notes
|
||||
version: 1.0.0
|
||||
description: "Release Notes 生成:根据 commit 和 PR 记录生成结构化版本说明。当用户需要生成版本发布说明、制作 Release Notes、总结版本变更时触发。"
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["gitlink-cli"]
|
||||
cliHelp: "gitlink-cli release --help"
|
||||
---
|
||||
|
||||
# gitlink-release-notes(Release Notes 生成)
|
||||
|
||||
**CRITICAL — 开始前必须先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md),其中包含认证、权限处理和 API 注意事项。**
|
||||
**CRITICAL — 本 Skill 为只读操作,不会修改任何仓库。无需用户额外确认即可执行。**
|
||||
**CRITICAL — GitLink 操作只能用 `gitlink-cli`。禁止用 `gh`(GitHub CLI)操作 GitLink 资源。**
|
||||
|
||||
> **前置条件:** 先阅读 [`../gitlink-shared/SKILL.md`](../gitlink-shared/SKILL.md) 了解认证和全局参数。
|
||||
|
||||
---
|
||||
|
||||
## 功能概述
|
||||
|
||||
根据仓库的 PR 记录,自动生成结构化的 Release Notes:
|
||||
|
||||
1. **获取版本信息** — 查看已有 Release 确定版本号
|
||||
2. **收集 PR 变更** — 获取合并的 PR 记录
|
||||
3. **自动分类** — 将变更归类为 Feature/BugFix/Refactor/Docs
|
||||
4. **生成发布说明** — 按标准模板输出 Release Notes
|
||||
|
||||
---
|
||||
|
||||
## 工作流:Release Notes 生成
|
||||
|
||||
### Step 1:获取仓库信息
|
||||
|
||||
```bash
|
||||
gitlink-cli repo +info --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
提取:`full_name`, `version_releases_count`。
|
||||
|
||||
### Step 2:获取已有 Release
|
||||
|
||||
```bash
|
||||
gitlink-cli release +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
查看发布历史,确定下一版本号。
|
||||
|
||||
### Step 3:获取已合并的 PR
|
||||
|
||||
```bash
|
||||
gitlink-cli pr +list --owner <owner> --repo <repo> --format json
|
||||
```
|
||||
|
||||
筛选 `pull_request_status=1` (已合并) 的 PR。
|
||||
|
||||
### Step 4:分类汇总
|
||||
|
||||
| 类型 | 标题关键词 | 说明 |
|
||||
|------|-----------|------|
|
||||
| 🚀 Features | `feat:` | 新功能 |
|
||||
| 🐛 Bug Fixes | `fix:` | Bug 修复 |
|
||||
| 🔧 Refactoring | `refactor:`, `perf:`, `chore:` | 重构和性能优化 |
|
||||
| 📝 Documentation | `docs:` | 文档更新 |
|
||||
| ⚡ CI/CD | `ci:`, `build:` | CI/CD 流水线 |
|
||||
| 🧪 Tests | `test:` | 测试相关 |
|
||||
|
||||
### Step 5:生成 Release Notes
|
||||
|
||||
---
|
||||
|
||||
## 输出模板
|
||||
|
||||
```markdown
|
||||
# 🚀 Release {{version}} — {{release_title}}
|
||||
|
||||
> 发布日期:{{release_date}}
|
||||
> 仓库:[{{full_name}}](https://www.gitlink.org.cn/{{owner}}/{{repo}})
|
||||
> 此版本包含 {{total_prs}} 个合并 PR,由 {{total_contributors}} 位贡献者完成
|
||||
|
||||
---
|
||||
|
||||
## 🔢 变更统计
|
||||
|
||||
| 类型 | 数量 |
|
||||
|------|------|
|
||||
| 🚀 Features | {{feat_count}} |
|
||||
| 🐛 Bug Fixes | {{fix_count}} |
|
||||
| 🔧 Refactoring | {{refactor_count}} |
|
||||
| 📝 Documentation | {{docs_count}} |
|
||||
| ⚡ CI/CD | {{ci_count}} |
|
||||
| 🧪 Tests | {{test_count}} |
|
||||
|
||||
---
|
||||
|
||||
## 🚀 Features
|
||||
|
||||
- **{{title}}** (#{{number}}) — {{author_login}}
|
||||
|
||||
> 如无,输出:此版本无新增功能。
|
||||
|
||||
## 🐛 Bug Fixes
|
||||
|
||||
- **{{title}}** (#{{number}}) — {{author_login}}
|
||||
|
||||
> 如无,输出:此版本无 Bug 修复。
|
||||
|
||||
## 🔧 Refactoring
|
||||
|
||||
- **{{title}}** (#{{number}}) — {{author_login}}
|
||||
|
||||
## 📝 Documentation
|
||||
|
||||
- **{{title}}** (#{{number}}) — {{author_login}}
|
||||
|
||||
---
|
||||
|
||||
## 👏 贡献者
|
||||
|
||||
- @{{login}}({{pr_count}} 个 PR)
|
||||
|
||||
---
|
||||
|
||||
## 📦 完整 PR 列表
|
||||
|
||||
| PR | 标题 | 类型 | 作者 |
|
||||
|----|------|------|------|
|
||||
| #{{number}} | {{title}} | {{type}} | {{author_login}} |
|
||||
|
||||
> 此 Release Notes 由 `gitlink-cli` 自动生成
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 异常场景处理
|
||||
|
||||
| 场景 | 处理方式 |
|
||||
|------|----------|
|
||||
| 无已合并 PR | 报告"新版本尚无合并的 PR" |
|
||||
| PR 标题无类型前缀 | 归入"Other"分类 |
|
||||
| PR 数量过多(>50) | 仅列出最近 30 个 PR |
|
||||
|
||||
---
|
||||
|
||||
## 注意事项
|
||||
|
||||
- ✅ **所有命令使用 `--format json`**,确保可解析
|
||||
- ✅ **本 Skill 为纯只读操作**,不会修改仓库
|
||||
- ✅ **Owner/repo 优先从 `git remote` 自动解析**
|
||||
- ⚠️ **PR 标题需遵循 Conventional Commits 规范**,否则分类可能不准确
|
||||
- ⚠️ **GitLink Release 功能使用率低**,`release +list` 可能返回空
|
||||
|
|
@ -90,7 +90,7 @@ gitlink-cli auth login
|
|||
| 层级 | 格式 | 示例 | 适用场景 |
|
||||
|------|------|------|----------|
|
||||
| Shortcuts | `gitlink-cli <domain> +<verb>` | `gitlink-cli repo +info` | 高频操作,推荐优先使用 |
|
||||
| Raw API | `gitlink-cli api <METHOD> <PATH>` | `gitlink-cli user +me` | Shortcuts 未覆盖的接口 |
|
||||
| Raw API | `gitlink-cli api <METHOD> <PATH>` | `gitlink-cli api GET "/users/me"` | Shortcuts 未覆盖的接口 |
|
||||
|
||||
## GitLink API 注意事项
|
||||
|
||||
|
|
|
|||
|
|
@ -159,14 +159,15 @@ GitLink 的通知功能通过「消息」API 实现。
|
|||
### 调用示例
|
||||
|
||||
```bash
|
||||
# 获取未读通知
|
||||
gitlink-cli api GET "users/lindiwen23/messages.json" --query "status=1&limit=20" --format json
|
||||
|
||||
# 获取 @我 的通知
|
||||
gitlink-cli api GET "users/lindiwen23/messages.json" --query "type=atme&status=1" --format json
|
||||
# 获取通知
|
||||
gitlink-cli notification +list --format json
|
||||
|
||||
# 标记单条已读
|
||||
gitlink-cli api POST "users/lindiwen23/messages/740214/read" --format json
|
||||
gitlink-cli notification +read --id 740214
|
||||
|
||||
# ⚠️ 路径不要以 / 开头,否则会被解析为本地文件路径
|
||||
# 全部标记已读
|
||||
gitlink-cli notification +read-all
|
||||
|
||||
# 关注仓库通知
|
||||
gitlink-cli notification +watch --owner <owner> --repo <repo>
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue