chore: import upstream snapshot with attribution
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

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
+144
View File
@@ -0,0 +1,144 @@
import type { LabelsResponse, RemoveLabelParams } from '@/tools/github/types'
import type { ToolConfig } from '@/tools/types'
export const removeLabelTool: ToolConfig<RemoveLabelParams, LabelsResponse> = {
id: 'github_remove_label',
name: 'GitHub Remove Label',
description: 'Remove a label from an issue in a GitHub repository',
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',
},
name: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Label name to remove',
},
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}/labels/${encodeURIComponent(params.name)}`,
method: 'DELETE',
headers: (params) => ({
Accept: 'application/vnd.github.v3+json',
Authorization: `Bearer ${params.apiKey}`,
'X-GitHub-Api-Version': '2022-11-28',
}),
},
transformResponse: async (response, params) => {
if (!params) {
return {
success: false,
error: 'Missing parameters',
output: {
content: '',
metadata: {
labels: [],
issue_number: 0,
html_url: '',
},
},
}
}
const labelsData = await response.json()
const labels = labelsData.map((label: any) => label.name)
const content = `Label "${params.name}" removed from issue #${params.issue_number}
${labels.length > 0 ? `Remaining labels: ${labels.join(', ')}` : 'No labels remaining on this issue'}`
return {
success: true,
output: {
content,
metadata: {
labels,
issue_number: params.issue_number,
html_url: `https://github.com/${params.owner}/${params.repo}/issues/${params.issue_number}`,
},
},
}
},
outputs: {
content: { type: 'string', description: 'Human-readable label removal confirmation' },
metadata: {
type: 'object',
description: 'Remaining labels metadata',
properties: {
labels: { type: 'array', description: 'Labels remaining on the issue after removal' },
issue_number: { type: 'number', description: 'Issue number' },
html_url: { type: 'string', description: 'GitHub issue URL' },
},
},
},
}
export const removeLabelV2Tool: ToolConfig = {
id: 'github_remove_label_v2',
name: removeLabelTool.name,
description: removeLabelTool.description,
version: '2.0.0',
params: removeLabelTool.params,
request: removeLabelTool.request,
oauth: removeLabelTool.oauth,
transformResponse: async (response: Response) => {
if (response.status === 200) {
const labels = await response.json()
return {
success: true,
output: {
items: labels.map((label: any) => ({
...label,
description: label.description ?? null,
})),
count: labels.length,
},
}
}
return { success: true, output: { items: [], count: 0 } }
},
outputs: {
items: {
type: 'array',
description: 'Remaining labels on the issue',
items: {
type: 'object',
properties: {
id: { type: 'number', description: 'Label ID' },
name: { type: 'string', description: 'Label name' },
color: { type: 'string', description: 'Label color' },
description: { type: 'string', description: 'Label description', optional: true },
},
},
},
count: { type: 'number', description: 'Number of remaining labels' },
},
}