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
+3
View File
@@ -0,0 +1,3 @@
import { clayPopulateTool } from '@/tools/clay/populate'
export { clayPopulateTool }
+102
View File
@@ -0,0 +1,102 @@
import type { ClayPopulateParams, ClayPopulateResponse } from '@/tools/clay/types'
import type { ToolConfig } from '@/tools/types'
export const clayPopulateTool: ToolConfig<ClayPopulateParams, ClayPopulateResponse> = {
id: 'clay_populate',
name: 'Clay Populate',
description:
'Populate Clay with data from a JSON file. Enables direct communication and notifications with timestamp tracking and channel confirmation.',
version: '1.0.0',
params: {
webhookURL: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'The webhook URL to populate',
},
data: {
type: 'json',
required: true,
visibility: 'user-or-llm',
description: 'The data to populate',
},
authToken: {
type: 'string',
required: false,
visibility: 'user-only',
description:
'Optional auth token for Clay webhook authentication (most webhooks do not require this)',
},
},
request: {
url: (params: ClayPopulateParams) => params.webhookURL,
method: 'POST',
headers: (params: ClayPopulateParams) => {
const headers: Record<string, string> = {
'Content-Type': 'application/json',
}
if (params.authToken && params.authToken.trim() !== '') {
headers['x-clay-webhook-auth'] = params.authToken
}
return headers
},
body: (params: ClayPopulateParams) => ({
data: params.data,
}),
},
transformResponse: async (response: Response) => {
const contentType = response.headers.get('content-type')
const timestamp = new Date().toISOString()
// Extract response headers
const headers: Record<string, string> = {}
response.headers.forEach((value, key) => {
headers[key] = value
})
// Parse response body
let responseData
if (contentType?.includes('application/json')) {
responseData = await response.json()
} else {
responseData = await response.text()
}
return {
success: true,
output: {
data: contentType?.includes('application/json') ? responseData : { message: responseData },
metadata: {
status: response.status,
statusText: response.statusText,
headers: headers,
timestamp: timestamp,
contentType: contentType || 'unknown',
},
},
}
},
outputs: {
data: {
type: 'json',
description: 'Response data from Clay webhook',
},
metadata: {
type: 'object',
description: 'Webhook response metadata',
properties: {
status: { type: 'number', description: 'HTTP status code' },
statusText: { type: 'string', description: 'HTTP status text' },
headers: { type: 'object', description: 'Response headers from Clay' },
timestamp: { type: 'string', description: 'ISO timestamp when webhook was received' },
contentType: { type: 'string', description: 'Content type of the response' },
},
},
},
}
+20
View File
@@ -0,0 +1,20 @@
import type { ToolResponse } from '@/tools/types'
export interface ClayPopulateParams {
webhookURL: string
data: JSON
authToken?: string
}
export interface ClayPopulateResponse extends ToolResponse {
output: {
data: any
metadata: {
status: number
statusText: string
headers: Record<string, string>
timestamp: string
contentType: string
}
}
}