d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
134 lines
3.6 KiB
TypeScript
134 lines
3.6 KiB
TypeScript
import { truncate } from '@sim/utils/string'
|
|
import type { CreateIssueCommentParams, IssueCommentResponse } from '@/tools/github/types'
|
|
import { COMMENT_OUTPUT_PROPERTIES, USER_OUTPUT } from '@/tools/github/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const issueCommentTool: ToolConfig<CreateIssueCommentParams, IssueCommentResponse> = {
|
|
id: 'github_issue_comment',
|
|
name: 'GitHub Issue Comment Creator',
|
|
description: 'Create a comment 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',
|
|
},
|
|
body: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Comment content',
|
|
},
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'GitHub API token',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) =>
|
|
`https://api.github.com/repos/${params.owner}/${params.repo}/issues/${params.issue_number}/comments`,
|
|
method: 'POST',
|
|
headers: (params) => ({
|
|
Accept: 'application/vnd.github+json',
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
'X-GitHub-Api-Version': '2022-11-28',
|
|
}),
|
|
body: (params) => ({
|
|
body: params.body,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await response.json()
|
|
|
|
const content = `Comment created on issue #${data.issue_url.split('/').pop()}: "${truncate(data.body, 100)}"`
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content,
|
|
metadata: {
|
|
id: data.id,
|
|
html_url: data.html_url,
|
|
body: data.body,
|
|
created_at: data.created_at,
|
|
updated_at: data.updated_at,
|
|
user: {
|
|
login: data.user.login,
|
|
id: data.user.id,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
content: { type: 'string', description: 'Human-readable comment confirmation' },
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Comment metadata',
|
|
properties: {
|
|
id: { type: 'number', description: 'Comment ID' },
|
|
html_url: { type: 'string', description: 'GitHub web URL' },
|
|
body: { type: 'string', description: 'Comment body' },
|
|
created_at: { type: 'string', description: 'Creation timestamp' },
|
|
updated_at: { type: 'string', description: 'Last update timestamp' },
|
|
user: {
|
|
type: 'object',
|
|
description: 'User who created the comment',
|
|
properties: {
|
|
login: { type: 'string', description: 'User login' },
|
|
id: { type: 'number', description: 'User ID' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export const issueCommentV2Tool: ToolConfig = {
|
|
id: 'github_issue_comment_v2',
|
|
name: issueCommentTool.name,
|
|
description: issueCommentTool.description,
|
|
version: '2.0.0',
|
|
params: issueCommentTool.params,
|
|
request: issueCommentTool.request,
|
|
oauth: issueCommentTool.oauth,
|
|
transformResponse: async (response: Response) => {
|
|
const comment = await response.json()
|
|
return {
|
|
success: true,
|
|
output: {
|
|
id: comment.id,
|
|
body: comment.body,
|
|
html_url: comment.html_url,
|
|
user: comment.user,
|
|
created_at: comment.created_at,
|
|
updated_at: comment.updated_at,
|
|
},
|
|
}
|
|
},
|
|
outputs: {
|
|
...COMMENT_OUTPUT_PROPERTIES,
|
|
user: USER_OUTPUT,
|
|
},
|
|
}
|