Files
simstudioai--sim/apps/sim/tools/github/list_issue_comments.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

178 lines
5.1 KiB
TypeScript

import { truncate } from '@sim/utils/string'
import type { CommentsListResponse, ListIssueCommentsParams } from '@/tools/github/types'
import { COMMENT_OUTPUT_PROPERTIES, USER_OUTPUT } from '@/tools/github/types'
import type { ToolConfig } from '@/tools/types'
export const listIssueCommentsTool: ToolConfig<ListIssueCommentsParams, CommentsListResponse> = {
id: 'github_list_issue_comments',
name: 'GitHub Issue Comments Lister',
description: 'List all comments on a GitHub issue',
version: '1.0.0',
params: {
owner: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Repository owner',
},
repo: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Repository name',
},
issue_number: {
type: 'number',
required: true,
visibility: 'user-or-llm',
description: 'Issue number',
},
since: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Only show comments updated after this ISO 8601 timestamp',
},
per_page: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Number of results per page (max 100)',
default: 30,
},
page: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Page number',
default: 1,
},
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'GitHub API token',
},
},
request: {
url: (params) => {
const baseUrl = `https://api.github.com/repos/${params.owner}/${params.repo}/issues/${params.issue_number}/comments`
const queryParams = new URLSearchParams()
if (params.since) queryParams.append('since', params.since)
if (params.per_page) queryParams.append('per_page', Number(params.per_page).toString())
if (params.page) queryParams.append('page', Number(params.page).toString())
const query = queryParams.toString()
return query ? `${baseUrl}?${query}` : baseUrl
},
method: 'GET',
headers: (params) => ({
Accept: 'application/vnd.github+json',
Authorization: `Bearer ${params.apiKey}`,
'X-GitHub-Api-Version': '2022-11-28',
}),
},
transformResponse: async (response) => {
const data = await response.json()
const content = `Found ${data.length} comment${data.length !== 1 ? 's' : ''} on issue #${response.url.split('/').slice(-2, -1)[0]}${
data.length > 0
? `\n\nRecent comments:\n${data
.slice(0, 5)
.map(
(c: any) =>
`- ${c.user.login} (${new Date(c.created_at).toLocaleDateString()}): "${truncate(c.body, 80)}"`
)
.join('\n')}`
: ''
}`
return {
success: true,
output: {
content,
metadata: {
comments: data.map((comment: any) => ({
id: comment.id,
body: comment.body,
user: { login: comment.user.login },
created_at: comment.created_at,
html_url: comment.html_url,
})),
total_count: data.length,
},
},
}
},
outputs: {
content: { type: 'string', description: 'Human-readable comments summary' },
metadata: {
type: 'object',
description: 'Comments list metadata',
properties: {
comments: {
type: 'array',
description: 'Array of comment objects',
items: {
type: 'object',
properties: {
id: { type: 'number', description: 'Comment ID' },
body: { type: 'string', description: 'Comment body' },
user: {
type: 'object',
description: 'User who created the comment',
properties: {
login: { type: 'string', description: 'User login' },
},
},
created_at: { type: 'string', description: 'Creation timestamp' },
html_url: { type: 'string', description: 'GitHub web URL' },
},
},
},
total_count: { type: 'number', description: 'Total number of comments' },
},
},
},
}
export const listIssueCommentsV2Tool: ToolConfig<ListIssueCommentsParams, any> = {
id: 'github_list_issue_comments_v2',
name: listIssueCommentsTool.name,
description: listIssueCommentsTool.description,
version: '2.0.0',
params: listIssueCommentsTool.params,
request: listIssueCommentsTool.request,
transformResponse: async (response: Response) => {
const comments = await response.json()
return {
success: true,
output: {
items: comments ?? [],
count: comments?.length ?? 0,
},
}
},
outputs: {
items: {
type: 'array',
description: 'Array of comment objects',
items: {
type: 'object',
properties: {
...COMMENT_OUTPUT_PROPERTIES,
user: USER_OUTPUT,
},
},
},
count: { type: 'number', description: 'Number of comments returned' },
},
}