Files
simstudioai--sim/apps/sim/tools/github/get_readme.ts
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

179 lines
5.1 KiB
TypeScript

import type { GetReadmeParams, ReadmeResponse } from '@/tools/github/types'
import type { ToolConfig } from '@/tools/types'
export const getReadmeTool: ToolConfig<GetReadmeParams, ReadmeResponse> = {
id: 'github_get_readme',
name: 'GitHub Get README',
description:
'Get the preferred README for a GitHub repository, with its content decoded to plain text.',
version: '1.0.0',
params: {
owner: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Repository owner (user or organization)',
},
repo: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Repository name',
},
ref: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'The name of the commit/branch/tag to read the README from (defaults to the repository default branch)',
},
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'GitHub Personal Access Token',
},
},
request: {
url: (params) => {
const baseUrl = `https://api.github.com/repos/${params.owner}/${params.repo}/readme`
return params.ref ? `${baseUrl}?ref=${encodeURIComponent(params.ref)}` : baseUrl
},
method: 'GET',
headers: (params) => ({
Accept: 'application/vnd.github+json',
Authorization: `Bearer ${params.apiKey}`,
'X-GitHub-Api-Version': '2022-11-28',
}),
},
transformResponse: async (response) => {
if (!response.ok) {
const error = await response.json().catch(() => ({}))
return {
success: false,
error: error.message || `Failed to get README (HTTP ${response.status})`,
output: {
content: '',
metadata: { name: '', path: '', sha: '', size: 0, html_url: '', download_url: '' },
},
}
}
const data = await response.json()
let decodedContent = ''
if (data.content) {
try {
decodedContent = Buffer.from(data.content, 'base64').toString('utf-8')
} catch {
decodedContent = '[Binary file - content cannot be displayed as text]'
}
}
const content = `README: ${data.name}
Path: ${data.path}
Size: ${data.size} bytes
${decodedContent}`
return {
success: true,
output: {
content,
metadata: {
name: data.name,
path: data.path,
sha: data.sha,
size: data.size,
html_url: data.html_url,
download_url: data.download_url,
},
},
}
},
outputs: {
content: { type: 'string', description: 'README name, path, and decoded text content' },
metadata: {
type: 'object',
description: 'README file metadata',
properties: {
name: { type: 'string', description: 'README file name' },
path: { type: 'string', description: 'README file path' },
sha: { type: 'string', description: 'Blob SHA of the README' },
size: { type: 'number', description: 'File size in bytes' },
html_url: { type: 'string', description: 'GitHub web URL for the README' },
download_url: { type: 'string', description: 'Raw download URL for the README' },
},
},
},
}
export const getReadmeV2Tool: ToolConfig<GetReadmeParams, any> = {
id: 'github_get_readme_v2',
name: getReadmeTool.name,
description: getReadmeTool.description,
version: '2.0.0',
params: getReadmeTool.params,
request: getReadmeTool.request,
transformResponse: async (response: Response) => {
if (!response.ok) {
const error = await response.json().catch(() => ({}))
return {
success: false,
error: error.message || `Failed to get README (HTTP ${response.status})`,
output: {
name: '',
path: '',
sha: '',
size: 0,
encoding: '',
html_url: '',
download_url: null,
content: '',
},
}
}
const data = await response.json()
let decodedContent = ''
if (data.content) {
try {
decodedContent = Buffer.from(data.content, 'base64').toString('utf-8')
} catch {
decodedContent = ''
}
}
return {
success: true,
output: {
name: data.name,
path: data.path,
sha: data.sha,
size: data.size,
encoding: data.encoding,
html_url: data.html_url,
download_url: data.download_url ?? null,
content: decodedContent,
},
}
},
outputs: {
name: { type: 'string', description: 'README file name' },
path: { type: 'string', description: 'README file path' },
sha: { type: 'string', description: 'Blob SHA of the README' },
size: { type: 'number', description: 'File size in bytes' },
encoding: { type: 'string', description: 'Original content encoding from the API' },
html_url: { type: 'string', description: 'GitHub web URL for the README' },
download_url: { type: 'string', description: 'Raw download URL for the README' },
content: { type: 'string', description: 'Decoded README text content' },
},
}