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
+183
View File
@@ -0,0 +1,183 @@
import { getPostHogAppBaseUrl } from '@/tools/posthog/utils'
import type { ToolConfig } from '@/tools/types'
interface PostHogCreateDashboardParams {
apiKey: string
projectId: string
region?: 'us' | 'eu'
host?: string
name: string
description?: string
pinned?: boolean
tags?: string
useTemplate?: string
}
interface PostHogCreateDashboardResponse {
success: boolean
output: {
id: number
name: string
description: string
pinned: boolean
created_at: string
tiles: Array<Record<string, any>>
filters: Record<string, any>
tags: string[]
}
}
export const createDashboardTool: ToolConfig<
PostHogCreateDashboardParams,
PostHogCreateDashboardResponse
> = {
id: 'posthog_create_dashboard',
name: 'PostHog Create Dashboard',
description:
'Create a new dashboard in PostHog. Optionally seed it from a built-in template, then attach insights to it afterward.',
version: '1.0.0',
errorExtractor: 'posthog-errors',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'PostHog Personal API Key',
},
projectId: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The PostHog project ID (e.g., "12345" or project UUID)',
},
region: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'PostHog cloud region: "us" or "eu" (default: "us")',
default: 'us',
},
host: {
type: 'string',
required: false,
visibility: 'user-only',
description:
'Self-hosted PostHog instance host (e.g., "posthog.mycompany.com"). Overrides the region setting when provided.',
},
name: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Name for the new dashboard',
},
description: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Description of the dashboard',
},
pinned: {
type: 'boolean',
required: false,
visibility: 'user-or-llm',
description: 'Whether to pin the dashboard to the sidebar',
},
tags: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated list of tags for the dashboard',
},
useTemplate: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'Name of a built-in PostHog dashboard template to seed this dashboard from (e.g., "Product analytics")',
},
},
request: {
url: (params) => {
const baseUrl = getPostHogAppBaseUrl(params.region, params.host)
return `${baseUrl}/api/projects/${params.projectId}/dashboards/`
},
method: 'POST',
headers: (params) => ({
'Content-Type': 'application/json',
Authorization: `Bearer ${params.apiKey}`,
}),
body: (params) => {
const body: Record<string, any> = {
name: params.name,
}
if (params.description) body.description = params.description
if (params.pinned !== undefined) body.pinned = params.pinned
if (params.useTemplate) body.use_template = params.useTemplate
if (params.tags) {
body.tags = params.tags
.split(',')
.map((tag: string) => tag.trim())
.filter((tag: string) => tag.length > 0)
}
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
return {
success: true,
output: {
id: data.id,
name: data.name || '',
description: data.description || '',
pinned: data.pinned || false,
created_at: data.created_at,
tiles: data.tiles || [],
filters: data.filters || {},
tags: data.tags || [],
},
}
},
outputs: {
id: {
type: 'number',
description: 'Unique identifier for the created dashboard',
},
name: {
type: 'string',
description: 'Name of the dashboard',
},
description: {
type: 'string',
description: 'Description of the dashboard',
},
pinned: {
type: 'boolean',
description: 'Whether the dashboard is pinned',
},
created_at: {
type: 'string',
description: 'ISO timestamp when dashboard was created',
},
tiles: {
type: 'array',
description: 'Tiles/widgets on the dashboard',
},
filters: {
type: 'object',
description: 'Global filters applied to the dashboard',
},
tags: {
type: 'array',
description: 'Tags associated with the dashboard',
},
},
}