6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (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 / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
179 lines
5.1 KiB
TypeScript
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' },
|
|
},
|
|
}
|