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

218 lines
5.8 KiB
TypeScript

import { getPostHogAppBaseUrl } from '@/tools/posthog/utils'
import type { ToolConfig } from '@/tools/types'
interface PostHogCreateAnnotationParams {
apiKey: string
projectId: string
region: string
host?: string
content: string
date_marker: string
scope?: string
dashboard_item?: string
dashboard_id?: string
}
interface PostHogCreateAnnotationResponse {
success: boolean
output: {
id: number
content: string
date_marker: string
created_at: string
updated_at: string
created_by: Record<string, any> | null
dashboard_item: number | null
dashboard_id: number | null
insight_short_id: string | null
insight_name: string | null
scope: string
deleted: boolean
}
}
export const createAnnotationTool: ToolConfig<
PostHogCreateAnnotationParams,
PostHogCreateAnnotationResponse
> = {
id: 'posthog_create_annotation',
name: 'PostHog Create Annotation',
description:
'Create a new annotation in PostHog. Mark important events on your graphs with date and description.',
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.',
},
content: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Content/text of the annotation',
},
date_marker: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description:
'ISO timestamp marking when the annotation applies (e.g., "2024-01-15T10:00:00Z")',
},
scope: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'Scope of the annotation: "project", "organization", "dashboard", or "dashboard_item" (default: "project")',
},
dashboard_item: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'ID of the dashboard tile (insight) to attach this annotation to (used when scope is "dashboard_item")',
},
dashboard_id: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'ID of the dashboard to attach this annotation to (used when scope is "dashboard")',
},
},
request: {
url: (params) => {
const baseUrl = getPostHogAppBaseUrl(params.region as 'us' | 'eu' | undefined, params.host)
return `${baseUrl}/api/projects/${params.projectId}/annotations/`
},
method: 'POST',
headers: (params) => ({
'Content-Type': 'application/json',
Authorization: `Bearer ${params.apiKey}`,
}),
body: (params) => {
const body: Record<string, any> = {
content: params.content,
date_marker: params.date_marker,
}
if (params.scope) {
body.scope = params.scope
}
if (params.dashboard_item) {
body.dashboard_item = Number(params.dashboard_item)
}
if (params.dashboard_id) {
body.dashboard_id = Number(params.dashboard_id)
}
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
return {
success: true,
output: {
id: data.id,
content: data.content || '',
date_marker: data.date_marker,
created_at: data.created_at,
updated_at: data.updated_at,
created_by: data.created_by || null,
dashboard_item: data.dashboard_item || null,
dashboard_id: data.dashboard_id || null,
insight_short_id: data.insight_short_id || null,
insight_name: data.insight_name || null,
scope: data.scope || '',
deleted: data.deleted || false,
},
}
},
outputs: {
id: {
type: 'number',
description: 'Unique identifier for the created annotation',
},
content: {
type: 'string',
description: 'Content/text of the annotation',
},
date_marker: {
type: 'string',
description: 'ISO timestamp marking when the annotation applies',
},
created_at: {
type: 'string',
description: 'ISO timestamp when annotation was created',
},
updated_at: {
type: 'string',
description: 'ISO timestamp when annotation was last updated',
},
created_by: {
type: 'object',
description: 'User who created the annotation',
optional: true,
},
dashboard_item: {
type: 'number',
description: 'ID of dashboard item this annotation is attached to',
optional: true,
},
dashboard_id: {
type: 'number',
description: 'ID of the dashboard this annotation is attached to',
optional: true,
},
insight_short_id: {
type: 'string',
description: 'Short ID of the insight this annotation is attached to',
optional: true,
},
insight_name: {
type: 'string',
description: 'Name of the insight this annotation is attached to',
optional: true,
},
scope: {
type: 'string',
description: 'Scope of the annotation (project, organization, dashboard, or dashboard_item)',
},
deleted: {
type: 'boolean',
description: 'Whether the annotation is deleted',
},
},
}