typeclaw 0.3.0 → 0.4.0

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.
Files changed (101) hide show
  1. package/README.md +20 -15
  2. package/auth.schema.json +113 -0
  3. package/package.json +2 -1
  4. package/scripts/dump-system-prompt.ts +401 -0
  5. package/secrets.schema.json +113 -0
  6. package/src/agent/index.ts +149 -30
  7. package/src/agent/provider-error.ts +44 -0
  8. package/src/agent/session-meta.ts +43 -0
  9. package/src/agent/session-origin.ts +3 -2
  10. package/src/agent/subagents.ts +8 -0
  11. package/src/agent/system-prompt.ts +70 -35
  12. package/src/bundled-plugins/security/index.ts +3 -2
  13. package/src/channels/adapters/github/auth-app.ts +120 -0
  14. package/src/channels/adapters/github/auth-pat.ts +50 -0
  15. package/src/channels/adapters/github/auth.ts +33 -0
  16. package/src/channels/adapters/github/channel-resolver.ts +30 -0
  17. package/src/channels/adapters/github/dedup.ts +26 -0
  18. package/src/channels/adapters/github/event-allowlist.ts +8 -0
  19. package/src/channels/adapters/github/fetch-attachment.ts +5 -0
  20. package/src/channels/adapters/github/history.ts +63 -0
  21. package/src/channels/adapters/github/inbound.ts +286 -0
  22. package/src/channels/adapters/github/index.ts +286 -0
  23. package/src/channels/adapters/github/managed-path.ts +54 -0
  24. package/src/channels/adapters/github/membership.ts +35 -0
  25. package/src/channels/adapters/github/outbound.ts +145 -0
  26. package/src/channels/adapters/github/webhook-register.ts +349 -0
  27. package/src/channels/manager.ts +94 -9
  28. package/src/channels/router.ts +28 -2
  29. package/src/channels/schema.ts +31 -1
  30. package/src/channels/tunnel-bridge.ts +51 -0
  31. package/src/cli/builtins.ts +28 -0
  32. package/src/cli/channel.ts +511 -25
  33. package/src/cli/container-command-client.ts +244 -0
  34. package/src/cli/cron.ts +173 -0
  35. package/src/cli/host-command-runner.ts +150 -0
  36. package/src/cli/index.ts +42 -1
  37. package/src/cli/init.ts +256 -27
  38. package/src/cli/model.ts +4 -2
  39. package/src/cli/plugin-command-help.ts +49 -0
  40. package/src/cli/plugin-commands-dispatch.ts +112 -0
  41. package/src/cli/plugin-commands.ts +118 -0
  42. package/src/cli/tui.ts +10 -2
  43. package/src/cli/tunnel.ts +533 -0
  44. package/src/cli/ui.ts +8 -3
  45. package/src/cli/usage.ts +30 -2
  46. package/src/config/config.ts +90 -4
  47. package/src/config/reloadable.ts +22 -4
  48. package/src/container/start.ts +30 -3
  49. package/src/cron/bridge.ts +136 -0
  50. package/src/cron/consumer.ts +62 -6
  51. package/src/cron/index.ts +19 -2
  52. package/src/cron/list.ts +105 -0
  53. package/src/cron/scheduler.ts +12 -3
  54. package/src/cron/schema.ts +11 -3
  55. package/src/doctor/checks.ts +0 -50
  56. package/src/init/dockerfile.ts +59 -13
  57. package/src/init/ensure-deps.ts +15 -4
  58. package/src/init/github-webhook-install.ts +109 -0
  59. package/src/init/index.ts +505 -9
  60. package/src/init/run-bun-install.ts +17 -3
  61. package/src/init/run-owner-claim.ts +11 -2
  62. package/src/permissions/builtins.ts +6 -1
  63. package/src/permissions/match-rule.ts +24 -2
  64. package/src/permissions/resolve.ts +1 -0
  65. package/src/plugin/define.ts +42 -1
  66. package/src/plugin/index.ts +18 -3
  67. package/src/plugin/manager.ts +2 -0
  68. package/src/plugin/registry.ts +85 -3
  69. package/src/plugin/types.ts +138 -1
  70. package/src/plugin/zod-introspect.ts +100 -0
  71. package/src/role-claim/match-rule.ts +2 -1
  72. package/src/run/index.ts +119 -4
  73. package/src/secrets/index.ts +1 -1
  74. package/src/secrets/schema.ts +21 -0
  75. package/src/server/command-runner.ts +476 -0
  76. package/src/server/index.ts +393 -15
  77. package/src/shared/index.ts +8 -0
  78. package/src/shared/protocol.ts +80 -1
  79. package/src/skills/typeclaw-channel-github/SKILL.md +24 -0
  80. package/src/skills/typeclaw-config/SKILL.md +27 -26
  81. package/src/skills/typeclaw-cron/SKILL.md +234 -3
  82. package/src/skills/typeclaw-monorepo/SKILL.md +2 -2
  83. package/src/skills/typeclaw-permissions/SKILL.md +5 -4
  84. package/src/skills/typeclaw-plugins/SKILL.md +251 -5
  85. package/src/skills/typeclaw-tunnels/SKILL.md +111 -0
  86. package/src/test-helpers/wait-for.ts +50 -0
  87. package/src/tui/index.ts +35 -4
  88. package/src/tunnels/__fixtures__/cloudflared-quick-stderr.txt +11 -0
  89. package/src/tunnels/events.ts +14 -0
  90. package/src/tunnels/index.ts +12 -0
  91. package/src/tunnels/log-ring.ts +54 -0
  92. package/src/tunnels/manager.ts +139 -0
  93. package/src/tunnels/providers/cloudflare-quick.ts +189 -0
  94. package/src/tunnels/providers/external.ts +53 -0
  95. package/src/tunnels/quick-url-parser.ts +5 -0
  96. package/src/tunnels/types.ts +43 -0
  97. package/src/usage/aggregate.ts +30 -1
  98. package/src/usage/index.ts +3 -2
  99. package/src/usage/report.ts +103 -3
  100. package/src/usage/scan.ts +59 -4
  101. package/typeclaw.schema.json +254 -1
@@ -0,0 +1,286 @@
1
+ import type { ChannelRouter } from '@/channels/router'
2
+ import type { ChannelAdapterConfig, GithubAdapterConfig } from '@/channels/schema'
3
+ import { resolveSecret } from '@/secrets/resolve'
4
+ import type { GithubSecretsBlock } from '@/secrets/schema'
5
+
6
+ import { buildAuthStrategy } from './auth'
7
+ import { createGithubChannelNameResolver } from './channel-resolver'
8
+ import { createDeliveryDedup } from './dedup'
9
+ import { createGithubFetchAttachmentCallback } from './fetch-attachment'
10
+ import { createGithubHistoryCallback } from './history'
11
+ import { createGithubWebhookHandler } from './inbound'
12
+ import { applyManagedPath, buildManagedPath, resolveAgentId } from './managed-path'
13
+ import { createGithubMembershipResolver } from './membership'
14
+ import { createGithubOutboundCallback } from './outbound'
15
+ import { deregisterGithubWebhooks, registerGithubWebhooks, type WebhookRegistrationResult } from './webhook-register'
16
+
17
+ export type GithubAdapterLogger = {
18
+ info: (m: string) => void
19
+ warn: (m: string) => void
20
+ error: (m: string) => void
21
+ }
22
+
23
+ export type GithubAdapterOptions = {
24
+ router: ChannelRouter
25
+ configRef: () => ChannelAdapterConfig & GithubAdapterConfig
26
+ secrets: GithubSecretsBlock
27
+ agentDir: string
28
+ logger?: GithubAdapterLogger
29
+ fetchImpl?: typeof fetch
30
+ httpListenImpl?: (port: number, handler: (req: Request) => Promise<Response>) => { stop: () => Promise<void> }
31
+ tunnelUrl?: () => string | null
32
+ // Whether a channel-bound tunnel exists in typeclaw.json#tunnels[] for the
33
+ // github channel. Used to distinguish "no tunnel configured (operator opted
34
+ // out)" from "tunnel configured but not producing a URL (something is
35
+ // wrong)" so the skip-registration log can be precise and actionable.
36
+ // Optional so tests that don't exercise the tunnel-status path can omit it.
37
+ tunnelConfiguredForChannel?: () => boolean
38
+ }
39
+
40
+ export type GithubAdapter = {
41
+ start: () => Promise<void>
42
+ stop: () => Promise<void>
43
+ isConnected: () => boolean
44
+ }
45
+
46
+ const consoleLogger: GithubAdapterLogger = {
47
+ info: (m) => console.log(m),
48
+ warn: (m) => console.warn(m),
49
+ error: (m) => console.error(m),
50
+ }
51
+
52
+ export function createGithubAdapter(options: GithubAdapterOptions): GithubAdapter {
53
+ const logger = options.logger ?? consoleLogger
54
+ const fetchImpl = options.fetchImpl ?? fetch
55
+ const auth = buildAuthStrategy({ auth: options.secrets.auth, fetchImpl })
56
+ const webhookSecret = resolveSecret(options.secrets.webhookSecret, undefined, process.env)
57
+ if (webhookSecret === undefined || webhookSecret.trim() === '') throw new Error('GitHub webhookSecret is missing')
58
+
59
+ let server: { stop: () => Promise<void> } | null = null
60
+ let selfId: string | null = null
61
+ let selfLogin: string | null = null
62
+ let started = false
63
+ let managedHooks: ReadonlyArray<{ repo: string; hookId: number }> = []
64
+ const workspaceByChat = new Map<string, string>()
65
+
66
+ const rememberWorkspace = (workspace: string, chat: string): void => {
67
+ workspaceByChat.set(chat, workspace)
68
+ }
69
+
70
+ const tokenFn = async () => {
71
+ const t = await auth.token()
72
+ process.env.GH_TOKEN = t
73
+ return t
74
+ }
75
+ const outbound = createGithubOutboundCallback({ token: tokenFn, logger, fetchImpl })
76
+ const history = createGithubHistoryCallback({
77
+ token: tokenFn,
78
+ fetchImpl,
79
+ workspaceForChat: (chat) => workspaceByChat.get(chat) ?? null,
80
+ })
81
+ const membership = createGithubMembershipResolver({ token: tokenFn, fetchImpl })
82
+ const channelNameResolver = createGithubChannelNameResolver({ token: tokenFn, fetchImpl })
83
+ const fetchAttachment = createGithubFetchAttachmentCallback()
84
+ // No-op typing callback: GitHub has no typing indicator API.
85
+ const typing = async (): Promise<void> => {}
86
+ const dedup = createDeliveryDedup()
87
+ const handler = createGithubWebhookHandler({
88
+ webhookSecret,
89
+ dedup,
90
+ allowlist: () => options.configRef().eventAllowlist,
91
+ selfId: () => selfId,
92
+ selfLogin: () => selfLogin,
93
+ logger,
94
+ route: (message) => {
95
+ rememberWorkspace(message.workspace, message.chat)
96
+ // Ack-first: wrap in Promise.resolve so a synchronous throw inside
97
+ // router.route() cannot prevent the 200 response from being returned.
98
+ void Promise.resolve()
99
+ .then(() => options.router.route(message))
100
+ .catch((err: unknown) => {
101
+ logger.error(`[github] route failed: ${err instanceof Error ? err.message : String(err)}`)
102
+ })
103
+ },
104
+ })
105
+
106
+ return {
107
+ async start(): Promise<void> {
108
+ if (started) return
109
+ const self = await auth.getSelf()
110
+ selfId = String(self.id)
111
+ selfLogin = self.login
112
+ // Register all callbacks before binding the HTTP listener so the router
113
+ // is fully wired before any webhook can arrive.
114
+ options.router.registerOutbound('github', outbound)
115
+ options.router.registerTyping('github', typing)
116
+ options.router.registerHistory('github', history)
117
+ options.router.registerMembership('github', membership)
118
+ options.router.registerChannelNameResolver('github', channelNameResolver)
119
+ options.router.registerFetchAttachment('github', fetchAttachment)
120
+ try {
121
+ server = (options.httpListenImpl ?? listenWithBun)(options.configRef().webhookPort, handler)
122
+ } catch (err) {
123
+ // Listener failed — roll back all registrations so stop() is a no-op
124
+ // and the manager can report the failure cleanly.
125
+ options.router.unregisterOutbound('github', outbound)
126
+ options.router.unregisterTyping('github', typing)
127
+ options.router.unregisterHistory('github', history)
128
+ options.router.unregisterMembership('github', membership)
129
+ options.router.unregisterChannelNameResolver('github', channelNameResolver)
130
+ options.router.unregisterFetchAttachment('github', fetchAttachment)
131
+ await auth.dispose()
132
+ delete process.env.GH_TOKEN
133
+ selfId = null
134
+ selfLogin = null
135
+ throw err
136
+ }
137
+ // Seed GH_TOKEN so `gh` CLI calls in the container are pre-authenticated.
138
+ // tokenFn keeps it current on every adapter API call; App tokens refresh
139
+ // automatically when within 5 minutes of expiry.
140
+ process.env.GH_TOKEN = await auth.token()
141
+ started = true
142
+ logger.info(`[github] webhook listening on port ${options.configRef().webhookPort} as @${self.login}`)
143
+ // Repository webhook registration is best-effort: failures are logged
144
+ // per-repo, the adapter stays up. A misconfigured PAT or App that
145
+ // can't manage hooks must not prevent the adapter from accepting
146
+ // events for repos whose hooks are already registered.
147
+ const cfg = options.configRef()
148
+ const repos = cfg.repos ?? []
149
+ const tunnelUrl = options.tunnelUrl?.() ?? null
150
+ if (cfg.webhookUrl !== undefined && tunnelUrl !== null) {
151
+ logger.warn('[github] webhookUrl configured; ignoring tunnel URL for webhook registration')
152
+ }
153
+ const rawUrl = cfg.webhookUrl ?? tunnelUrl
154
+ const managedPath = buildManagedPath(
155
+ resolveAgentId({ containerName: process.env.TYPECLAW_CONTAINER_NAME, agentDir: options.agentDir }),
156
+ )
157
+ const effectiveUrl = rawUrl === null ? null : applyManagedPath(rawUrl, managedPath)
158
+ if (effectiveUrl === null) {
159
+ logSkippedRegistration(logger, {
160
+ tunnelConfigured: options.tunnelConfiguredForChannel?.() ?? false,
161
+ reposCount: repos.length,
162
+ })
163
+ } else if (repos.length > 0) {
164
+ const legacyProviderHostSuffix = detectLegacyProviderHostSuffix(effectiveUrl)
165
+ const registration = await registerGithubWebhooks({
166
+ token: tokenFn,
167
+ webhookUrl: effectiveUrl,
168
+ webhookSecret,
169
+ repos,
170
+ events: cfg.eventAllowlist,
171
+ managedPath,
172
+ ...(legacyProviderHostSuffix !== undefined ? { legacyProviderHostSuffix } : {}),
173
+ fetchImpl,
174
+ })
175
+ managedHooks = registration.repos.flatMap((r) =>
176
+ r.action === 'created' || r.action === 'updated' ? [{ repo: r.repo, hookId: r.hookId }] : [],
177
+ )
178
+ logRegistrationOutcome(logger, registration)
179
+ }
180
+ },
181
+ async stop(): Promise<void> {
182
+ if (!started) return
183
+ started = false
184
+ options.router.unregisterOutbound('github', outbound)
185
+ options.router.unregisterTyping('github', typing)
186
+ options.router.unregisterHistory('github', history)
187
+ options.router.unregisterMembership('github', membership)
188
+ options.router.unregisterChannelNameResolver('github', channelNameResolver)
189
+ options.router.unregisterFetchAttachment('github', fetchAttachment)
190
+ await server?.stop()
191
+ // Detach hooks AFTER closing the listener so any in-flight deliveries
192
+ // from GitHub no longer hit a live receiver while we're tearing down.
193
+ // The token call uses the still-live `auth` strategy; dispose() runs
194
+ // last to clear the cached App-installation token.
195
+ if (managedHooks.length > 0) {
196
+ const deregistration = await deregisterGithubWebhooks({
197
+ token: tokenFn,
198
+ hooks: managedHooks,
199
+ fetchImpl,
200
+ })
201
+ logDeregistrationOutcome(logger, deregistration)
202
+ managedHooks = []
203
+ }
204
+ await auth.dispose()
205
+ delete process.env.GH_TOKEN
206
+ server = null
207
+ selfId = null
208
+ selfLogin = null
209
+ },
210
+ isConnected(): boolean {
211
+ return started && selfLogin !== null
212
+ },
213
+ }
214
+ }
215
+
216
+ function listenWithBun(port: number, handler: (req: Request) => Promise<Response>): { stop: () => Promise<void> } {
217
+ const server = Bun.serve({ port, fetch: handler })
218
+ return { stop: async () => server.stop() }
219
+ }
220
+
221
+ function logSkippedRegistration(
222
+ logger: GithubAdapterLogger,
223
+ context: { tunnelConfigured: boolean; reposCount: number },
224
+ ): void {
225
+ if (context.reposCount === 0) {
226
+ logger.info('[github] no repos[] configured; webhook registration skipped')
227
+ return
228
+ }
229
+ if (context.tunnelConfigured) {
230
+ logger.warn(
231
+ '[github] webhook registration SKIPPED: a tunnel is configured for this channel but produced no URL yet. ' +
232
+ "Check `typeclaw tunnel status` for the tunnel's health (cloudflared binary missing, " +
233
+ 'auth failure, network issue). Webhook delivery will not work until the tunnel produces a public URL.',
234
+ )
235
+ return
236
+ }
237
+ logger.warn(
238
+ '[github] webhook registration SKIPPED: no `channels.github.webhookUrl` set and no `tunnels[]` entry ' +
239
+ 'binds a public URL to this channel. Add an entry to `tunnels[]` (e.g. `provider: "cloudflare-quick"`) ' +
240
+ 'or set `channels.github.webhookUrl` to a public URL to enable webhook delivery.',
241
+ )
242
+ }
243
+
244
+ // Known tunnel-provider host suffixes whose hostnames rotate per container.
245
+ // A pre-marker hook on one of these is unambiguously a typeclaw orphan from
246
+ // this agent's prior runs (cloudflare-quick is per-container, the host
247
+ // changes every restart, so a stale unmarked *.trycloudflare.com hook
248
+ // pointing at a now-dead host cannot belong to any live service).
249
+ // Extending: add the host suffix here AND verify that hooks on the new
250
+ // provider always look unmarked (no operator-supplied path) before the
251
+ // marker was introduced.
252
+ const LEGACY_TUNNEL_PROVIDER_HOSTS: readonly string[] = ['.trycloudflare.com']
253
+
254
+ function detectLegacyProviderHostSuffix(url: string): string | undefined {
255
+ let parsed: URL
256
+ try {
257
+ parsed = new URL(url)
258
+ } catch {
259
+ return undefined
260
+ }
261
+ for (const suffix of LEGACY_TUNNEL_PROVIDER_HOSTS) {
262
+ if (parsed.host.endsWith(suffix)) return suffix
263
+ }
264
+ return undefined
265
+ }
266
+
267
+ function logRegistrationOutcome(logger: GithubAdapterLogger, result: WebhookRegistrationResult): void {
268
+ for (const r of result.repos) {
269
+ if (r.action === 'created') logger.info(`[github] registered webhook ${r.hookId} on ${r.repo}`)
270
+ else if (r.action === 'updated') {
271
+ const tail = r.stalePruned > 0 ? ` (pruned ${r.stalePruned} stale)` : ''
272
+ logger.info(`[github] updated webhook ${r.hookId} on ${r.repo}${tail}`)
273
+ } else logger.warn(`[github] webhook register failed for ${r.repo}: ${r.error}`)
274
+ }
275
+ }
276
+
277
+ function logDeregistrationOutcome(
278
+ logger: GithubAdapterLogger,
279
+ result: Awaited<ReturnType<typeof deregisterGithubWebhooks>>,
280
+ ): void {
281
+ for (const h of result.hooks) {
282
+ if (h.action === 'deleted') logger.info(`[github] detached webhook ${h.hookId} from ${h.repo}`)
283
+ else if (h.action === 'missing') logger.info(`[github] webhook ${h.hookId} on ${h.repo} already gone`)
284
+ else logger.warn(`[github] webhook detach failed for ${h.repo}#${h.hookId}: ${h.error ?? 'unknown error'}`)
285
+ }
286
+ }
@@ -0,0 +1,54 @@
1
+ import { basename, resolve } from 'node:path'
2
+
3
+ // `v1` is a schema version for the marker layout. Bumping it lets a future
4
+ // change (e.g. embedding a per-repo nonce, switching to a different ownership
5
+ // scheme) coexist with hooks created under earlier versions instead of
6
+ // stranding them. `findManagedHooks` only treats the current version as ours;
7
+ // a v2 rollout would need a one-shot pass that adopts v1 hooks before
8
+ // retiring them.
9
+ const MARKER_PREFIX = '/typeclaw/v1/github/'
10
+
11
+ export function buildManagedPath(agentId: string): string {
12
+ const safe = sanitizeAgentId(agentId)
13
+ return `${MARKER_PREFIX}${safe}`
14
+ }
15
+
16
+ // `containerName` (TYPECLAW_CONTAINER_NAME) is the load-bearing identifier
17
+ // inside the container; falls back to the agent folder basename for host-side
18
+ // callers (e.g. eager webhook install at `typeclaw channel add github` time)
19
+ // that don't have the env var set yet. Both resolve to the same string in
20
+ // practice — see `containerNameFromCwd` in src/container/shared.ts.
21
+ export function resolveAgentId(options: { containerName?: string; agentDir: string }): string {
22
+ const fromEnv = options.containerName?.trim()
23
+ if (fromEnv && fromEnv.length > 0) return fromEnv
24
+ return basename(resolve(options.agentDir))
25
+ }
26
+
27
+ // Append the marker path to a URL that's missing one. The cloudflare-quick
28
+ // tunnel hands us `https://<random>.trycloudflare.com` with no path; we want
29
+ // the marker visible in the resulting webhook URL so a future run of THIS
30
+ // agent can recognize the hook as ours after the hostname rotates.
31
+ //
32
+ // If the URL already has a non-trivial path (user-set webhookUrl), it's
33
+ // returned verbatim. We treat that as "operator owns this URL" — appending
34
+ // our marker would silently change a user-configured webhook URL.
35
+ export function applyManagedPath(rawUrl: string, managedPath: string): string {
36
+ let parsed: URL
37
+ try {
38
+ parsed = new URL(rawUrl)
39
+ } catch {
40
+ return rawUrl
41
+ }
42
+ if (parsed.pathname !== '' && parsed.pathname !== '/') return rawUrl
43
+ parsed.pathname = managedPath
44
+ return parsed.toString()
45
+ }
46
+
47
+ // `containerNameFromCwd` (src/container/shared.ts) clamps to [a-z0-9_.-];
48
+ // applying the same conservative shape here keeps URL paths well-formed even
49
+ // if a caller passes us an unsanitized identifier from somewhere else.
50
+ function sanitizeAgentId(raw: string): string {
51
+ const trimmed = raw.trim().toLowerCase()
52
+ const cleaned = trimmed.replace(/[^a-z0-9_.-]+/g, '-').replace(/^-+|-+$/g, '')
53
+ return cleaned === '' ? 'agent' : cleaned
54
+ }
@@ -0,0 +1,35 @@
1
+ import type { MembershipResolver, MembershipResolverResult } from '@/channels/membership'
2
+
3
+ import { GITHUB_API_BASE, githubJsonHeaders } from './auth-pat'
4
+ import { parseRepo } from './outbound'
5
+
6
+ export function createGithubMembershipResolver(options: {
7
+ token: () => Promise<string>
8
+ fetchImpl?: typeof fetch
9
+ }): MembershipResolver {
10
+ const fetchImpl = options.fetchImpl ?? fetch
11
+ return async (key): Promise<MembershipResolverResult> => {
12
+ if (key.adapter !== 'github') return { kind: 'permanent' }
13
+ const repo = parseRepo(key.workspace)
14
+ if (repo === null) return { kind: 'permanent' }
15
+ try {
16
+ const response = await fetchImpl(
17
+ `${GITHUB_API_BASE}/repos/${repo.owner}/${repo.name}/collaborators?per_page=100`,
18
+ {
19
+ headers: githubJsonHeaders(await options.token()),
20
+ },
21
+ )
22
+ if (!response.ok) return response.status >= 500 ? { kind: 'transient' } : { kind: 'permanent' }
23
+ const users = (await response.json()) as Array<{ type?: string }>
24
+ let bots = 0
25
+ let humans = 0
26
+ for (const user of users) {
27
+ if (user.type === 'Bot') bots++
28
+ else humans++
29
+ }
30
+ return { humans, bots, fetchedAt: Date.now(), truncated: users.length >= 100 }
31
+ } catch {
32
+ return { kind: 'transient' }
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,145 @@
1
+ import type { OutboundCallback, OutboundMessage, SendResult } from '@/channels/types'
2
+
3
+ import { GITHUB_API_BASE, githubJsonHeaders } from './auth-pat'
4
+
5
+ export type GithubOutboundLogger = { info: (m: string) => void; warn: (m: string) => void; error: (m: string) => void }
6
+
7
+ export function createGithubOutboundCallback(deps: {
8
+ token: () => Promise<string>
9
+ logger: GithubOutboundLogger
10
+ fetchImpl?: typeof fetch
11
+ }): OutboundCallback {
12
+ const fetchImpl = deps.fetchImpl ?? fetch
13
+ return async (msg: OutboundMessage): Promise<SendResult> => {
14
+ if (msg.adapter !== 'github') return { ok: false, error: `unknown adapter: ${msg.adapter}` }
15
+ if ((msg.attachments ?? []).length > 0) return { ok: false, error: 'github-bot-does-not-support-attachments' }
16
+ const body = msg.text ?? ''
17
+ if (body === '') return { ok: false, error: 'message has neither text nor attachments' }
18
+
19
+ const repo = parseRepo(msg.workspace)
20
+ if (repo === null) return { ok: false, error: `invalid GitHub workspace: ${msg.workspace}` }
21
+ const target = parseChat(msg.chat)
22
+ if (target === null) return { ok: false, error: `invalid GitHub chat: ${msg.chat}` }
23
+
24
+ if (target.kind === 'discussion') {
25
+ return await postDiscussionComment({ ...deps, fetchImpl, repo, discussionNumber: target.number, body })
26
+ }
27
+
28
+ const endpoint =
29
+ target.kind === 'pr' && msg.thread !== null && msg.thread !== undefined && msg.thread !== ''
30
+ ? `${GITHUB_API_BASE}/repos/${repo.owner}/${repo.name}/pulls/${target.number}/comments/${encodeURIComponent(msg.thread)}/replies`
31
+ : `${GITHUB_API_BASE}/repos/${repo.owner}/${repo.name}/issues/${target.number}/comments`
32
+ return await postJson(fetchImpl, await deps.token(), endpoint, { body })
33
+ }
34
+ }
35
+
36
+ async function postDiscussionComment(options: {
37
+ token: () => Promise<string>
38
+ fetchImpl: typeof fetch
39
+ repo: RepoRef
40
+ discussionNumber: number
41
+ body: string
42
+ }): Promise<SendResult> {
43
+ const discussionId = await fetchDiscussionId(options)
44
+ if (!discussionId.ok) return discussionId
45
+ const mutation = `mutation($discussionId:ID!,$body:String!){addDiscussionComment(input:{discussionId:$discussionId,body:$body}){comment{id}}}`
46
+ return await postGraphql(options.fetchImpl, await options.token(), mutation, {
47
+ discussionId: discussionId.id,
48
+ body: options.body,
49
+ })
50
+ }
51
+
52
+ async function fetchDiscussionId(options: {
53
+ token: () => Promise<string>
54
+ fetchImpl: typeof fetch
55
+ repo: RepoRef
56
+ discussionNumber: number
57
+ }): Promise<{ ok: true; id: string } | { ok: false; error: string }> {
58
+ const query = `query($owner:String!,$name:String!,$number:Int!){repository(owner:$owner,name:$name){discussion(number:$number){id}}}`
59
+ const result = await graphql<{ repository?: { discussion?: { id?: string } | null } }>(
60
+ options.fetchImpl,
61
+ await options.token(),
62
+ query,
63
+ {
64
+ owner: options.repo.owner,
65
+ name: options.repo.name,
66
+ number: options.discussionNumber,
67
+ },
68
+ )
69
+ if (!result.ok) return result
70
+ const id = result.data.repository?.discussion?.id
71
+ return typeof id === 'string' && id !== '' ? { ok: true, id } : { ok: false, error: 'discussion not found' }
72
+ }
73
+
74
+ async function postGraphql(
75
+ fetchImpl: typeof fetch,
76
+ token: string,
77
+ query: string,
78
+ variables: Record<string, unknown>,
79
+ ): Promise<SendResult> {
80
+ const result = await graphql(fetchImpl, token, query, variables)
81
+ return result.ok ? { ok: true } : { ok: false, error: result.error }
82
+ }
83
+
84
+ async function graphql<T>(
85
+ fetchImpl: typeof fetch,
86
+ token: string,
87
+ query: string,
88
+ variables: Record<string, unknown>,
89
+ ): Promise<{ ok: true; data: T } | { ok: false; error: string }> {
90
+ try {
91
+ const response = await fetchImpl(`${GITHUB_API_BASE}/graphql`, {
92
+ method: 'POST',
93
+ headers: githubJsonHeaders(token),
94
+ body: JSON.stringify({ query, variables }),
95
+ })
96
+ const raw = (await response.json()) as { data?: T; errors?: Array<{ message?: string }> }
97
+ if (!response.ok || raw.errors !== undefined) {
98
+ return {
99
+ ok: false,
100
+ error: raw.errors?.map((e) => e.message ?? 'unknown').join('; ') ?? `HTTP ${response.status}`,
101
+ }
102
+ }
103
+ if (raw.data === undefined) return { ok: false, error: 'GraphQL response missing data' }
104
+ return { ok: true, data: raw.data }
105
+ } catch (err) {
106
+ return { ok: false, error: describe(err) }
107
+ }
108
+ }
109
+
110
+ async function postJson(fetchImpl: typeof fetch, token: string, url: string, payload: unknown): Promise<SendResult> {
111
+ try {
112
+ const response = await fetchImpl(url, {
113
+ method: 'POST',
114
+ headers: githubJsonHeaders(token),
115
+ body: JSON.stringify(payload),
116
+ })
117
+ if (response.ok) return { ok: true }
118
+ const text = await response.text().catch(() => '')
119
+ return { ok: false, error: `GitHub API ${response.status}${text !== '' ? `: ${text}` : ''}` }
120
+ } catch (err) {
121
+ return { ok: false, error: describe(err) }
122
+ }
123
+ }
124
+
125
+ type RepoRef = { owner: string; name: string }
126
+ type ChatRef = { kind: 'issue' | 'pr' | 'discussion'; number: number }
127
+
128
+ export function parseRepo(workspace: string): RepoRef | null {
129
+ const [owner, name, extra] = workspace.split('/')
130
+ if (!owner || !name || extra !== undefined) return null
131
+ return { owner, name }
132
+ }
133
+
134
+ export function parseChat(chat: string): ChatRef | null {
135
+ const [kind, rawNumber] = chat.split(':')
136
+ const number = Number(rawNumber)
137
+ if ((kind !== 'issue' && kind !== 'pr' && kind !== 'discussion') || !Number.isInteger(number) || number <= 0) {
138
+ return null
139
+ }
140
+ return { kind, number }
141
+ }
142
+
143
+ function describe(err: unknown): string {
144
+ return err instanceof Error ? err.message : String(err)
145
+ }