@zhin.js/adapter-github 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +624 -0
- package/README.md +38 -190
- package/adapters/github.ts +51 -0
- package/{skills/github/SKILL.md → agent/skills/github.md} +22 -5
- package/agent/tools/bind.ts +12 -0
- package/agent/tools/create_pr.ts +19 -0
- package/agent/tools/install.ts +12 -0
- package/agent/tools/patch_file.ts +18 -0
- package/agent/tools/prepare_workspace.ts +14 -0
- package/agent/tools/push_branch.ts +17 -0
- package/agent/tools/star.ts +15 -0
- package/agent/tools/subscribe.ts +16 -0
- package/agent/tools/subscriptions.ts +13 -0
- package/agent/tools/unbind.ts +12 -0
- package/agent/tools/unsubscribe.ts +15 -0
- package/agent/tools/whoami.ts +12 -0
- package/lib/agent-prompt.d.ts +0 -1
- package/lib/agent-prompt.js +10 -9
- package/lib/endpoint.d.ts +46 -24
- package/lib/endpoint.js +144 -144
- package/lib/gh-client.d.ts +73 -1
- package/lib/gh-client.js +99 -1
- package/lib/github-agent-deps.d.ts +47 -0
- package/lib/github-agent-deps.js +43 -0
- package/lib/github-bot-handlers.d.ts +26 -0
- package/lib/github-bot-handlers.js +77 -0
- package/lib/github-channel-context.d.ts +16 -0
- package/lib/github-channel-context.js +31 -0
- package/lib/github-tool-handlers.d.ts +17 -0
- package/lib/github-tool-handlers.js +221 -0
- package/lib/index.d.ts +7 -32
- package/lib/index.js +7 -386
- package/lib/oauth-users.d.ts +33 -0
- package/lib/oauth-users.js +38 -0
- package/lib/protocol.d.ts +87 -0
- package/lib/protocol.js +241 -0
- package/lib/types.d.ts +6 -1
- package/lib/types.js +0 -1
- package/lib/webhook.d.ts +13 -0
- package/lib/webhook.js +87 -0
- package/lib/workspace-manager.d.ts +21 -0
- package/lib/workspace-manager.js +145 -0
- package/package.json +60 -23
- package/plugin.ts +52 -0
- package/schema.json +65 -0
- package/src/agent-prompt.ts +11 -10
- package/src/endpoint.ts +169 -150
- package/src/gh-client.ts +131 -0
- package/src/github-agent-deps.ts +82 -0
- package/src/github-bot-handlers.ts +109 -0
- package/src/github-channel-context.ts +46 -0
- package/src/github-tool-handlers.ts +257 -0
- package/src/index.ts +55 -431
- package/src/oauth-users.ts +47 -0
- package/src/protocol.ts +367 -0
- package/src/types.ts +6 -0
- package/src/webhook.ts +125 -0
- package/src/workspace-manager.ts +158 -0
- package/lib/adapter.d.ts +0 -66
- package/lib/adapter.d.ts.map +0 -1
- package/lib/adapter.js +0 -418
- package/lib/adapter.js.map +0 -1
- package/lib/agent-prompt.d.ts.map +0 -1
- package/lib/agent-prompt.js.map +0 -1
- package/lib/endpoint.d.ts.map +0 -1
- package/lib/endpoint.js.map +0 -1
- package/lib/gh-client.d.ts.map +0 -1
- package/lib/gh-client.js.map +0 -1
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/register-github-mcp.d.ts +0 -7
- package/lib/register-github-mcp.d.ts.map +0 -1
- package/lib/register-github-mcp.js +0 -36
- package/lib/register-github-mcp.js.map +0 -1
- package/lib/segment-mapper.d.ts +0 -2
- package/lib/segment-mapper.d.ts.map +0 -1
- package/lib/segment-mapper.js +0 -2
- package/lib/segment-mapper.js.map +0 -1
- package/lib/types.d.ts.map +0 -1
- package/lib/types.js.map +0 -1
- package/plugin.yml +0 -3
- package/src/adapter.ts +0 -450
- package/src/register-github-mcp.ts +0 -62
- package/src/segment-mapper.ts +0 -1
package/README.md
CHANGED
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
# @zhin.js/adapter-github
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
查询 · 管理 · 通知 · OAuth 用户绑定 四合一。
|
|
3
|
+
GitHub Plugin Runtime 适配器 — Issue/PR 评论区即聊天通道,GitHub App 认证,Webhook 入站经 `httpHostToken`。
|
|
6
4
|
|
|
7
5
|
## 功能特性
|
|
8
6
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- ✅ **OAuth 用户绑定**:用户可绑定自己的 GitHub 账号,star/fork 以个人身份执行
|
|
15
|
-
- ✅ **AI Skill**:所有工具自动暴露给 AI 调用
|
|
16
|
-
- ✅ **无 router 也能运行**:核心功能不依赖 HTTP 服务,有 router 时自动注册 Webhook 和 OAuth 路由
|
|
7
|
+
- **聊天通道**:Issue/PR 评论区映射为群聊,支持收发消息
|
|
8
|
+
- **Webhook 入站**:HMAC-SHA256 验签 → `messageGatewayToken`
|
|
9
|
+
- **出站**:`send({ target, payload })` → Issue/PR comment(target 为 channel ID)
|
|
10
|
+
- **GitHub App 认证**:JWT → Installation Token
|
|
11
|
+
- **Agent 工具**:`agent/` 下 star/bind/subscribe/workspace 等保留
|
|
17
12
|
|
|
18
13
|
## 安装
|
|
19
14
|
|
|
@@ -21,66 +16,37 @@
|
|
|
21
16
|
pnpm add @zhin.js/adapter-github
|
|
22
17
|
```
|
|
23
18
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
## GitHub App 创建
|
|
29
|
-
|
|
30
|
-
1. 访问 [GitHub Developer Settings](https://github.com/settings/apps)
|
|
31
|
-
2. 点击 **New GitHub App**
|
|
32
|
-
3. 填写基本信息:
|
|
33
|
-
- **App name**: 你的 bot 名称
|
|
34
|
-
- **Homepage URL**: 任意
|
|
35
|
-
- **Webhook URL**: `http://your-server:port/pub/github/webhook`(有 HTTP 服务时)
|
|
36
|
-
- **Webhook secret**: 自定义密钥
|
|
37
|
-
4. 权限设置(Permissions):
|
|
38
|
-
- **Repository → Issues**: Read & Write
|
|
39
|
-
- **Repository → Pull requests**: Read & Write
|
|
40
|
-
- **Repository → Contents**: Read
|
|
41
|
-
- **Repository → Metadata**: Read
|
|
42
|
-
- **Repository → Actions**: Read(查看 CI)
|
|
43
|
-
5. 订阅事件(Subscribe to events):
|
|
44
|
-
- Issue comment、Pull request、Pull request review、Pull request review comment
|
|
45
|
-
- Push、Star、Fork(用于通知)
|
|
46
|
-
6. 创建后记录 **App ID**,点击 **Generate a private key** 下载 `.pem` 文件
|
|
47
|
-
7. 安装 App 到目标仓库/组织
|
|
48
|
-
|
|
49
|
-
## 配置
|
|
19
|
+
Webhook 需要 Root 提供 `@zhin.js/host-http`(`zhin runtime start` 默认装配)。
|
|
20
|
+
|
|
21
|
+
## 配置(Plugin Runtime)
|
|
50
22
|
|
|
51
23
|
```yaml
|
|
52
24
|
# zhin.config.yml
|
|
53
|
-
|
|
54
|
-
|
|
25
|
+
plugins:
|
|
26
|
+
github:
|
|
55
27
|
name: my-github-bot
|
|
56
28
|
app_id: 123456
|
|
57
|
-
private_key: ./data/github-app.pem
|
|
58
|
-
webhook_secret: your-secret
|
|
59
|
-
webhook_path: /
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
- "@zhin.js/adapter-github"
|
|
64
|
-
- "@zhin.js/host-router" # Webhook 需要
|
|
29
|
+
private_key: ./data/github-app.pem
|
|
30
|
+
webhook_secret: your-secret
|
|
31
|
+
webhook_path: /github/webhook
|
|
32
|
+
auto_reply_repos:
|
|
33
|
+
- zhinjs/zhin
|
|
34
|
+
workspace_root: ./data/github-workspaces
|
|
65
35
|
```
|
|
66
36
|
|
|
67
37
|
```env
|
|
68
38
|
GITHUB_APP_ID=123456
|
|
69
39
|
GITHUB_WEBHOOK_SECRET=your-secret
|
|
70
|
-
# MCP server-github(适配器自动 addMcp,与 App 认证独立)
|
|
71
|
-
GITHUB_PERSONAL_ACCESS_TOKEN=ghp_xxxxxxxxxxxx
|
|
72
|
-
# 或 ai.githubMcp.token / ai.mcpServers
|
|
73
40
|
```
|
|
74
41
|
|
|
75
|
-
|
|
42
|
+
`private_key` 支持文件路径或 PEM 内容。未配置 `webhook_secret` 时仅 API 出站 / agent 工具可用(无入站)。
|
|
76
43
|
|
|
77
|
-
|
|
78
|
-
- 文件路径:`./data/github-app.pem`
|
|
79
|
-
- 直接内容:`"-----BEGIN RSA PRIVATE KEY-----\n..."`
|
|
44
|
+
## 已移除的配置
|
|
80
45
|
|
|
81
|
-
|
|
46
|
+
- **`ai.githubMcp.enabled` / `ai.githubMcp.token`**:Plugin Runtime 迁移后 `register-github-mcp`(stdio `@modelcontextprotocol/server-github`,PAT 人身份)已移除,该配置不再生效。如需 MCP 工具,请按新运行时 `mcp/<name>.ts`(`@zhin.js/mcp-feature`)约定自行装配。
|
|
47
|
+
- **`poll_interval`**:轮询降级已删除,仅 webhook 入站;该字段目前解析但不生效(deferred)。
|
|
82
48
|
|
|
83
|
-
|
|
49
|
+
## Channel ID
|
|
84
50
|
|
|
85
51
|
| 类型 | Channel ID | 示例 |
|
|
86
52
|
|------|-----------|------|
|
|
@@ -89,141 +55,23 @@ GitHub adapter 将 Issue/PR 映射为聊天频道:
|
|
|
89
55
|
|
|
90
56
|
## AI 工具
|
|
91
57
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
| 工具 | 说明 |
|
|
95
|
-
|------|------|
|
|
96
|
-
| `github_star` | Star / Unstar / 检查(per-user OAuth 或 Endpoint 默认) |
|
|
97
|
-
| `github_bind` / `github_unbind` / `github_whoami` | 用户 GitHub 账号绑定 |
|
|
98
|
-
| `github_install` | GitHub App 安装链接 |
|
|
99
|
-
| `github_subscribe` / `github_unsubscribe` / `github_subscriptions` | 频道级 Webhook 订阅 |
|
|
100
|
-
|
|
101
|
-
### MCP(`@modelcontextprotocol/server-github`)
|
|
102
|
-
|
|
103
|
-
配置 `GITHUB_PERSONAL_ACCESS_TOKEN`(或 `ai.githubMcp.token`)后,适配器通过 `orchestrator.addMcp` 注册 `github` server;AI 侧工具名为 `mcp_github_*`(如 `mcp_github_fork_repository`、`mcp_github_create_issue`)。
|
|
104
|
-
|
|
105
|
-
**BREAKING**:`github_fork` 已移除,请改用 `mcp_github_fork_repository`。
|
|
106
|
-
|
|
107
|
-
### 使用示例
|
|
108
|
-
|
|
109
|
-
```
|
|
110
|
-
AI: 列出 zhinjs/zhin 的 PR
|
|
111
|
-
AI: 合并 zhinjs/zhin 的 PR #108
|
|
112
|
-
AI: 查看 zhinjs/zhin 的 star 数
|
|
113
|
-
AI: 订阅 zhinjs/zhin 的 push 和 pr 事件
|
|
114
|
-
AI: 搜索 zhinjs 相关的仓库
|
|
115
|
-
AI: 给 zhinjs/zhin 的 issue #42 加上 bug 标签
|
|
116
|
-
AI: 查看 zhinjs/zhin 的 README.md 文件
|
|
117
|
-
AI: 对比 zhinjs/zhin 的 main 和 dev 分支
|
|
118
|
-
AI: 编辑 zhinjs/zhin 的 issue #42 标题
|
|
119
|
-
AI: 绑定我的 GitHub 账号
|
|
120
|
-
AI: star zhinjs/zhin
|
|
121
|
-
AI: fork zhinjs/zhin # 使用 mcp_github_fork_repository
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
## Webhook 事件通知
|
|
125
|
-
|
|
126
|
-
配置好 Webhook 后,支持以下事件的跨平台推送:
|
|
127
|
-
|
|
128
|
-
| 事件 | 参数 | 说明 |
|
|
129
|
-
|------|------|------|
|
|
130
|
-
| Push | `push` | 代码推送 |
|
|
131
|
-
| Issue | `issue` | Issue 创建/更新/关闭 |
|
|
132
|
-
| Star | `star` | 仓库被 star |
|
|
133
|
-
| Unstar | `unstar` | 仓库被 unstar |
|
|
134
|
-
| Fork | `fork` | 仓库被 fork |
|
|
135
|
-
| Pull Request | `pr` / `pull_request` | PR 创建/更新/合并 |
|
|
136
|
-
|
|
137
|
-
### Webhook 端点
|
|
138
|
-
|
|
139
|
-
```
|
|
140
|
-
POST /pub/github/webhook
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
Headers:
|
|
144
|
-
- `X-GitHub-Event`: 事件类型
|
|
145
|
-
- `X-Hub-Signature-256`: 签名(配置了 secret 时)
|
|
58
|
+
见 `agent/tools/`:`github_star`、`github_bind`、`github_subscribe`、`github_prepare_workspace` 等。
|
|
146
59
|
|
|
147
|
-
##
|
|
60
|
+
## 架构
|
|
148
61
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
|
154
|
-
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
2. Endpoint 返回 **verification URI** 与 **user code**(GitHub Device Flow)
|
|
164
|
-
3. 用户在浏览器打开链接并输入 code 完成授权
|
|
165
|
-
4. Token 写入 `github_oauth_users` 表;可用 `github_whoami` / `github_unbind` 管理
|
|
166
|
-
|
|
167
|
-
**Client ID**:从 GitHub App 的 `/app` API 自动获取(`GhClient.getClientId()`),**无需**在 Endpoint 配置里写 `client_id` / `client_secret`。
|
|
168
|
-
|
|
169
|
-
### 前置条件
|
|
170
|
-
|
|
171
|
-
- 需要 **`database`** 插件(`github_oauth_users` 模型)
|
|
172
|
-
- Device Flow 在 IM 内完成,**不依赖** `/pub/github/oauth` HTTP 路由
|
|
173
|
-
|
|
174
|
-
## 数据库表
|
|
175
|
-
|
|
176
|
-
### github_subscriptions
|
|
177
|
-
|
|
178
|
-
| 字段 | 类型 | 说明 |
|
|
179
|
-
|------|------|------|
|
|
180
|
-
| id | integer | 主键 |
|
|
181
|
-
| repo | text | 仓库名 (owner/repo) |
|
|
182
|
-
| events | json | 订阅的事件列表 |
|
|
183
|
-
| target_id | text | 目标频道 ID |
|
|
184
|
-
| target_type | text | 类型 (private/group/channel) |
|
|
185
|
-
| adapter | text | 适配器名称 |
|
|
186
|
-
| endpoint | text | 机器人名称 |
|
|
187
|
-
|
|
188
|
-
### github_events
|
|
189
|
-
|
|
190
|
-
| 字段 | 类型 | 说明 |
|
|
191
|
-
|------|------|------|
|
|
192
|
-
| id | integer | 主键 |
|
|
193
|
-
| repo | text | 仓库名 |
|
|
194
|
-
| event_type | text | 事件类型 |
|
|
195
|
-
| payload | json | 事件载荷 |
|
|
196
|
-
|
|
197
|
-
### github_oauth_users
|
|
198
|
-
|
|
199
|
-
| 字段 | 类型 | 说明 |
|
|
200
|
-
|------|------|------|
|
|
201
|
-
| id | integer | 主键 |
|
|
202
|
-
| platform | text | 聊天平台 |
|
|
203
|
-
| platform_uid | text | 平台用户 ID |
|
|
204
|
-
| github_login | text | GitHub 用户名 |
|
|
205
|
-
| access_token | text | Device Flow 获得的 token |
|
|
206
|
-
| created_at | integer | 创建时间戳 |
|
|
207
|
-
|
|
208
|
-
## 架构说明
|
|
209
|
-
|
|
210
|
-
```
|
|
211
|
-
adapter-github/
|
|
212
|
-
├── src/
|
|
213
|
-
│ ├── index.ts # 插件入口:provide、useContext、模型表
|
|
214
|
-
│ ├── adapter.ts # GitHubAdapter
|
|
215
|
-
│ ├── endpoint.ts # GitHubEndpoint(Issue/PR 频道)
|
|
216
|
-
│ ├── gh-client.ts # GitHub REST(App JWT / Installation Token)
|
|
217
|
-
│ ├── register-github-mcp.ts # orchestrator.addMcp(server-github)
|
|
218
|
-
│ ├── agent-prompt.ts # 平台 prompt / deferred 工具筛选
|
|
219
|
-
│ └── types.ts # EndpointConfig、Webhook payload、Channel ID
|
|
220
|
-
├── package.json
|
|
221
|
-
└── README.md
|
|
222
|
-
```
|
|
223
|
-
|
|
224
|
-
- **无 `@zhin.js/host-router` 时**:REST 工具与轮询仍可用,但无法注册 Webhook
|
|
225
|
-
- **有 `@zhin.js/host-router` 时**:注册 Webhook;MCP 通过 `orchestrator.addMcp`(需 PAT 或 `ai.githubMcp.token`)
|
|
226
|
-
|
|
227
|
-
## 许可证
|
|
62
|
+
| 路径 | 职责 |
|
|
63
|
+
|------|------|
|
|
64
|
+
| `plugin.ts` | 插件元数据;有 DatabaseHost 时定义 `github_oauth_users` |
|
|
65
|
+
| `adapters/github.ts` | 薄 `defineAdapter` 入口(发现约定) |
|
|
66
|
+
| `src/endpoint.ts` | Endpoint 生命周期、出站、admit |
|
|
67
|
+
| `src/webhook.ts` | HMAC 验签与事件分发 |
|
|
68
|
+
| `src/oauth-users.ts` | OAuth 表 SSOT + token 查找 |
|
|
69
|
+
| `src/protocol.ts` | 协议纯函数(channel / payload) |
|
|
70
|
+
| `src/gh-client.ts` | GitHub API 客户端 |
|
|
71
|
+
|
|
72
|
+
- 入站:`httpHostToken` POST → `messageGatewayToken.receive`
|
|
73
|
+
- 出站:`send({ target, payload })`
|
|
74
|
+
|
|
75
|
+
## License
|
|
228
76
|
|
|
229
77
|
MIT
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Convention entry: discover `adapters/github.ts` → defineAdapter.
|
|
3
|
+
* Implementation lives under `src/` (endpoint / webhook / oauth / protocol).
|
|
4
|
+
*/
|
|
5
|
+
import { defineAdapter, type AdapterContext } from '@zhin.js/adapter';
|
|
6
|
+
import { messageGatewayToken } from '@zhin.js/core/runtime';
|
|
7
|
+
import { httpHostToken } from '@zhin.js/host-http';
|
|
8
|
+
import {
|
|
9
|
+
databaseHostToken,
|
|
10
|
+
type DatabaseHost,
|
|
11
|
+
} from '@zhin.js/plugin-runtime';
|
|
12
|
+
import { GithubEndpoint } from '../src/endpoint.js';
|
|
13
|
+
import {
|
|
14
|
+
resolveGithubConfig,
|
|
15
|
+
type GithubAdapterConfig,
|
|
16
|
+
} from '../src/protocol.js';
|
|
17
|
+
|
|
18
|
+
export { GithubEndpoint } from '../src/endpoint.js';
|
|
19
|
+
export type { GithubEndpointOptions } from '../src/endpoint.js';
|
|
20
|
+
|
|
21
|
+
function optionalDatabase(context: AdapterContext): DatabaseHost | undefined {
|
|
22
|
+
try {
|
|
23
|
+
return context.use(databaseHostToken);
|
|
24
|
+
} catch {
|
|
25
|
+
return undefined;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export default defineAdapter<GithubAdapterConfig>({
|
|
30
|
+
capabilities: ['inbound', 'outbound'],
|
|
31
|
+
create(context) {
|
|
32
|
+
const config = resolveGithubConfig(context.config);
|
|
33
|
+
const database = optionalDatabase(context);
|
|
34
|
+
if (config.webhookSecret) {
|
|
35
|
+
return new GithubEndpoint({
|
|
36
|
+
id: context.id,
|
|
37
|
+
gateway: context.use(messageGatewayToken),
|
|
38
|
+
http: context.use(httpHostToken),
|
|
39
|
+
database,
|
|
40
|
+
config,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
// API-only: Issue/PR send + agent tools without webhook.
|
|
44
|
+
return new GithubEndpoint({
|
|
45
|
+
id: context.id,
|
|
46
|
+
gateway: context.use(messageGatewayToken),
|
|
47
|
+
database,
|
|
48
|
+
config,
|
|
49
|
+
});
|
|
50
|
+
},
|
|
51
|
+
});
|
|
@@ -60,6 +60,10 @@ tools:
|
|
|
60
60
|
- github_subscribe
|
|
61
61
|
- github_unsubscribe
|
|
62
62
|
- github_subscriptions
|
|
63
|
+
- github_prepare_workspace
|
|
64
|
+
- github_patch_file
|
|
65
|
+
- github_push_branch
|
|
66
|
+
- github_create_pr
|
|
63
67
|
always: false
|
|
64
68
|
requires:
|
|
65
69
|
bins:
|
|
@@ -72,7 +76,8 @@ requires:
|
|
|
72
76
|
|
|
73
77
|
本技能提供三种操作方式:
|
|
74
78
|
- **适配器内置工具**(`github_*`):用户交互类操作,具备账号绑定、Device Flow 授权、频道级订阅等适配器专有逻辑
|
|
75
|
-
- **
|
|
79
|
+
- **Bot 写仓库工具**(`github_prepare_workspace` / `github_patch_file` / `github_push_branch` / `github_create_pr`):Installation Token,UI 显示 **Bot** 身份;push/开 PR 需 HITL
|
|
80
|
+
- **MCP server-github**(`mcp_github_*`,可选):`ai.githubMcp.*` 配置已随 Plugin Runtime 迁移移除;如需 MCP 工具,按 `mcp/<name>.ts` 约定自行装配(PAT 为**人身份**,勿用于 Bot 写仓库)
|
|
76
81
|
- **bash + gh CLI**:仓库自动化操作,灵活覆盖 GitHub API 全场景
|
|
77
82
|
|
|
78
83
|
## 一、适配器内置工具
|
|
@@ -94,7 +99,18 @@ requires:
|
|
|
94
99
|
|------|------|
|
|
95
100
|
| `github_star` | Star 或取消 Star 一个仓库。优先使用用户绑定的 GitHub 账号,未绑定则降级为 Endpoint 默认账号 |
|
|
96
101
|
|
|
97
|
-
###
|
|
102
|
+
### Bot 开发工作流(App 身份)
|
|
103
|
+
|
|
104
|
+
| 工具 | 说明 |
|
|
105
|
+
|------|------|
|
|
106
|
+
| `github_prepare_workspace` | Clone/fetch 托管工作区并 checkout Issue/PR 对应分支 |
|
|
107
|
+
| `github_patch_file` | Contents API 单文件更新(小改) |
|
|
108
|
+
| `github_push_branch` | git commit + push(**需 HITL**) |
|
|
109
|
+
| `github_create_pr` | 创建 PR(**需 HITL**;Issue 线程常用) |
|
|
110
|
+
|
|
111
|
+
Issue 线程:新分支 → 开发 → push → 开 PR。PR 线程:push 到现有 head 分支。
|
|
112
|
+
|
|
113
|
+
### MCP(server-github,可选 PAT)
|
|
98
114
|
|
|
99
115
|
| 工具 | 说明 |
|
|
100
116
|
|------|------|
|
|
@@ -112,9 +128,10 @@ requires:
|
|
|
112
128
|
### 内置工具执行规则
|
|
113
129
|
|
|
114
130
|
1. `github_star` 优先使用用户绑定的 GitHub 账号,未绑定则降级为 Endpoint 默认账号
|
|
115
|
-
2.
|
|
116
|
-
3.
|
|
117
|
-
4.
|
|
131
|
+
2. Bot 写仓库用 `github_*` 工具,不用 `mcp_github_*` 写操作
|
|
132
|
+
3. MCP(`mcp_github_*`)仅在你按 `mcp/<name>.ts` 约定装配后可用(旧 `ai.githubMcp.enabled` 已移除),PAT 为人身份
|
|
133
|
+
4. 当用户想操作自己的 GitHub 账号进行 Star 时,先引导用户使用 `github_bind` 绑定
|
|
134
|
+
5. Webhook 订阅关联到当前聊天通道,仅在该通道接收事件通知
|
|
118
135
|
|
|
119
136
|
---
|
|
120
137
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubBind } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool({
|
|
6
|
+
description: '绑定你的 GitHub 账号 — 使用 Device Flow 授权,无需输入密码',
|
|
7
|
+
inputSchema: z.object({}),
|
|
8
|
+
tags: ['github'],
|
|
9
|
+
async execute() {
|
|
10
|
+
return executeGithubBind({});
|
|
11
|
+
},
|
|
12
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubCreatePr } from '../../src/github-bot-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo?: string; title: string; body?: string; head?: string; base?: string }>({
|
|
6
|
+
description: '以 GitHub App Bot 身份创建 Pull Request(需 HITL 确认;Issue 场景常用)',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().optional().describe('owner/repo'),
|
|
9
|
+
title: z.string().describe('PR 标题'),
|
|
10
|
+
body: z.string().optional().describe('PR 正文'),
|
|
11
|
+
head: z.string().optional().describe('head 分支,缺省为工作区分支'),
|
|
12
|
+
base: z.string().optional().describe('base 分支,缺省为仓库默认分支'),
|
|
13
|
+
}),
|
|
14
|
+
tags: ['github'],
|
|
15
|
+
approval: 'always',
|
|
16
|
+
async execute(input) {
|
|
17
|
+
return executeGithubCreatePr(input);
|
|
18
|
+
},
|
|
19
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubInstall } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool({
|
|
6
|
+
description: '获取安装 GitHub App 的链接 — 安装后 Endpoint 可以访问你的仓库,你也可以使用更多功能',
|
|
7
|
+
inputSchema: z.object({}),
|
|
8
|
+
tags: ['github'],
|
|
9
|
+
async execute() {
|
|
10
|
+
return executeGithubInstall();
|
|
11
|
+
},
|
|
12
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubPatchFile } from '../../src/github-bot-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo?: string; path: string; content: string; message: string; branch?: string }>({
|
|
6
|
+
description: '通过 Contents API 单文件更新(小改;Bot Installation Token 身份)',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().optional().describe('owner/repo'),
|
|
9
|
+
path: z.string().describe('仓库内文件路径'),
|
|
10
|
+
content: z.string().describe('新文件内容'),
|
|
11
|
+
message: z.string().describe('commit message'),
|
|
12
|
+
branch: z.string().optional().describe('目标分支,缺省从 Issue/PR 上下文推断'),
|
|
13
|
+
}),
|
|
14
|
+
tags: ['github'],
|
|
15
|
+
async execute(input) {
|
|
16
|
+
return executeGithubPatchFile(input);
|
|
17
|
+
},
|
|
18
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubPrepareWorkspace } from '../../src/github-bot-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo?: string }>({
|
|
6
|
+
description: 'Clone/fetch 托管工作区并 checkout 到 Issue/PR 对应分支(GitHub App Bot 身份)',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().optional().describe('owner/repo,缺省从当前 Issue/PR 频道推断'),
|
|
9
|
+
}),
|
|
10
|
+
tags: ['github'],
|
|
11
|
+
async execute(input) {
|
|
12
|
+
return executeGithubPrepareWorkspace(input);
|
|
13
|
+
},
|
|
14
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubPushBranch } from '../../src/github-bot-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo?: string; branch?: string; message: string }>({
|
|
6
|
+
description: '在托管工作区 git commit 并 push 到远程分支(需 HITL 确认;Bot 身份)',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().optional().describe('owner/repo'),
|
|
9
|
+
branch: z.string().optional().describe('分支名,缺省从上下文推断'),
|
|
10
|
+
message: z.string().describe('commit message'),
|
|
11
|
+
}),
|
|
12
|
+
tags: ['github'],
|
|
13
|
+
approval: 'always',
|
|
14
|
+
async execute(input) {
|
|
15
|
+
return executeGithubPushBranch(input);
|
|
16
|
+
},
|
|
17
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubStar } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ action: 'star' | 'unstar' | 'check'; repo: string }>({
|
|
6
|
+
description: 'Star 或取消 Star 一个 GitHub 仓库(使用你绑定的 GitHub 账号,未绑定则用 Endpoint 默认账号)',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
action: z.enum(['star', 'unstar', 'check']),
|
|
9
|
+
repo: z.string().min(1),
|
|
10
|
+
}),
|
|
11
|
+
tags: ['github'],
|
|
12
|
+
async execute(input) {
|
|
13
|
+
return executeGithubStar(input);
|
|
14
|
+
},
|
|
15
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubSubscribe } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo: string; events?: string }>({
|
|
6
|
+
description: '订阅 GitHub 仓库的 Webhook 事件,事件将推送到当前聊天通道',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().min(1),
|
|
9
|
+
events: z.string().optional(),
|
|
10
|
+
}),
|
|
11
|
+
platforms: ['github'],
|
|
12
|
+
tags: ['github'],
|
|
13
|
+
async execute(input) {
|
|
14
|
+
return executeGithubSubscribe(input);
|
|
15
|
+
},
|
|
16
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubSubscriptions } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool({
|
|
6
|
+
description: '查看当前聊天通道的 GitHub 仓库订阅列表',
|
|
7
|
+
inputSchema: z.object({}),
|
|
8
|
+
platforms: ['github'],
|
|
9
|
+
tags: ['github'],
|
|
10
|
+
async execute() {
|
|
11
|
+
return executeGithubSubscriptions({});
|
|
12
|
+
},
|
|
13
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubUnbind } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool({
|
|
6
|
+
description: '解除你绑定的 GitHub 账号',
|
|
7
|
+
inputSchema: z.object({}),
|
|
8
|
+
tags: ['github'],
|
|
9
|
+
async execute() {
|
|
10
|
+
return executeGithubUnbind({});
|
|
11
|
+
},
|
|
12
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubUnsubscribe } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool<{ repo: string }>({
|
|
6
|
+
description: '取消订阅 GitHub 仓库的 Webhook 事件',
|
|
7
|
+
inputSchema: z.object({
|
|
8
|
+
repo: z.string().min(1),
|
|
9
|
+
}),
|
|
10
|
+
platforms: ['github'],
|
|
11
|
+
tags: ['github'],
|
|
12
|
+
async execute(input) {
|
|
13
|
+
return executeGithubUnsubscribe(input);
|
|
14
|
+
},
|
|
15
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defineAgentTool } from '@zhin.js/agent/tools';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { executeGithubWhoami } from '../../src/github-tool-handlers.js';
|
|
4
|
+
|
|
5
|
+
export default defineAgentTool({
|
|
6
|
+
description: '查看你绑定的 GitHub 账号信息',
|
|
7
|
+
inputSchema: z.object({}),
|
|
8
|
+
tags: ['github'],
|
|
9
|
+
async execute() {
|
|
10
|
+
return executeGithubWhoami({});
|
|
11
|
+
},
|
|
12
|
+
});
|
package/lib/agent-prompt.d.ts
CHANGED
package/lib/agent-prompt.js
CHANGED
|
@@ -6,8 +6,8 @@ function selectGithubDeferredTools(query, goal, deferredCatalog, maxTools) {
|
|
|
6
6
|
if (bash)
|
|
7
7
|
pinned.push(bash);
|
|
8
8
|
const preferNames = [
|
|
9
|
-
...pool.filter(t => t.name.startsWith('mcp_github_')).map(t => t.name),
|
|
10
9
|
...pool.filter(t => t.name.startsWith('github_')).map(t => t.name),
|
|
10
|
+
...pool.filter(t => t.name.startsWith('mcp_github_')).map(t => t.name),
|
|
11
11
|
];
|
|
12
12
|
for (const name of preferNames) {
|
|
13
13
|
if (pinned.length >= maxTools)
|
|
@@ -32,15 +32,17 @@ function isGithubDelegatedTask(query, goal) {
|
|
|
32
32
|
return /github|gh_|mcp_github|\bissue\b|pull\s*request|\bpr\b/i.test(text);
|
|
33
33
|
}
|
|
34
34
|
const ORCHESTRATOR_GITHUB = [
|
|
35
|
-
'On GitHub: use run_deferred_task with tool_query "github_"
|
|
36
|
-
'Discuss issues/PRs in chat context; do not call github_*
|
|
37
|
-
'
|
|
35
|
+
'On GitHub: use run_deferred_task with tool_query "github_".',
|
|
36
|
+
'Discuss issues/PRs in chat context; do not call github_* tools on this orchestrator.',
|
|
37
|
+
'Bot write operations use github_* tools (Installation Token), not mcp_github_*.',
|
|
38
38
|
].join('\n');
|
|
39
39
|
const WORKER_GITHUB = [
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
40
|
+
'Use github_prepare_workspace before multi-file edits in a repo.',
|
|
41
|
+
'Small single-file change: github_patch_file (Contents API).',
|
|
42
|
+
'Multi-file / tests: workspace + bash, then github_push_branch (requires approval) and github_create_pr for Issues.',
|
|
43
|
+
'Issue thread: new branch + new PR. PR thread: push to existing PR head branch.',
|
|
44
|
+
'Do NOT use mcp_github_* for writes — PAT acts as human, not Bot.',
|
|
45
|
+
'Summarize outcomes (PR link, branch) for the orchestrator.',
|
|
44
46
|
].map(line => `- ${line}`).join('\n');
|
|
45
47
|
export function createGithubAgentPromptContributor() {
|
|
46
48
|
return {
|
|
@@ -80,4 +82,3 @@ export function createGithubAgentPromptContributor() {
|
|
|
80
82
|
},
|
|
81
83
|
};
|
|
82
84
|
}
|
|
83
|
-
//# sourceMappingURL=agent-prompt.js.map
|