PostHog · Schema

LLMSkillFileEdit

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
path string Path of the bundled file to edit. Must match an existing file on the current skill version.
edits array Sequential find/replace operations to apply to this file's content.
View JSON Schema on GitHub

JSON Schema

posthog-llmskillfileedit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMSkillFileEdit",
  "title": "LLMSkillFileEdit",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path of the bundled file to edit. Must match an existing file on the current skill version.",
      "maxLength": 500
    },
    "edits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LLMSkillEditOperation"
      },
      "description": "Sequential find/replace operations to apply to this file's content."
    }
  },
  "required": [
    "edits",
    "path"
  ]
}