{
  "schemaVersion": "1.0",
  "item": {
    "slug": "toml",
    "name": "TOML",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/toml",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/toml",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/toml",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toml",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "toml",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T16:19:53.933Z",
      "expiresAt": "2026-05-16T16:19:53.933Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toml",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toml",
        "contentDisposition": "attachment; filename=\"toml-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "toml"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/toml"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/toml",
    "agentPageUrl": "https://openagent3.xyz/skills/toml/agent",
    "manifestUrl": "https://openagent3.xyz/skills/toml/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/toml/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Strings",
        "body": "Basic strings \"...\" support escapes: \\n, \\t, \\\\, \\\"\nLiteral strings '...' are raw—no escape sequences, backslash is literal\nMultiline basic \"\"\"...\"\"\" allows newlines; leading newline after \"\"\" is trimmed\nMultiline literal '''...''' for raw blocks; no escape processing"
      },
      {
        "title": "Keys",
        "body": "Bare keys: alphanumeric, dash, underscore only—key-name_1 valid\nQuoted keys for special chars: \"key with spaces\" or 'key.with.dots'\nDotted keys a.b.c = 1 equivalent to nested tables—defines [a.b] implicitly\nKeys are case-sensitive—Key and key are different"
      },
      {
        "title": "Tables",
        "body": "[table] defines table; all following key-values belong to it until next header\n[a.b.c] creates nested structure—parent tables created implicitly\nDotted keys under [table] extend it: [fruit] then apple.color = \"red\" works\nDefining table after dotted key created it is error—order matters"
      },
      {
        "title": "Arrays of Tables",
        "body": "[[array]] appends new table to array each time it appears\n[[products]] twice creates products[0] and products[1]\nMix [array.nested] after [[array]] to add to most recent array element\nCannot redefine static table as array or vice versa"
      },
      {
        "title": "Inline Tables",
        "body": "point = { x = 1, y = 2 } for compact single-line tables\nInline tables cannot span lines (until TOML 1.1)\nCannot add keys to inline table after definition—immutable once closed\nNested inline tables allowed but reduce readability"
      },
      {
        "title": "Types",
        "body": "Integers: decimal, hex 0xDEAD, octal 0o755, binary 0b1010\nUnderscores for readability: 1_000_000 is valid\nFloats: 3.14, 5e-10, inf, nan (case-sensitive)\nBooleans: true/false only—lowercase, no yes/no/on/off"
      },
      {
        "title": "Dates & Times",
        "body": "RFC 3339 format: 2024-01-15T14:30:00Z or with offset +05:30\nLocal datetime: 2024-01-15T14:30:00 (no timezone)\nLocal date: 2024-01-15; Local time: 14:30:00\nMilliseconds supported: 14:30:00.123"
      },
      {
        "title": "Common Pitfalls",
        "body": "No null type—omit key entirely for optional values\nArrays must be homogeneous (TOML 1.0)—TOML 1.1 allows mixed types\nTrailing commas not allowed in arrays or inline tables\nComment # only outside strings—no inline comment after value on same line works, but avoid ambiguity"
      }
    ],
    "body": "Strings\nBasic strings \"...\" support escapes: \\n, \\t, \\\\, \\\"\nLiteral strings '...' are raw—no escape sequences, backslash is literal\nMultiline basic \"\"\"...\"\"\" allows newlines; leading newline after \"\"\" is trimmed\nMultiline literal '''...''' for raw blocks; no escape processing\nKeys\nBare keys: alphanumeric, dash, underscore only—key-name_1 valid\nQuoted keys for special chars: \"key with spaces\" or 'key.with.dots'\nDotted keys a.b.c = 1 equivalent to nested tables—defines [a.b] implicitly\nKeys are case-sensitive—Key and key are different\nTables\n[table] defines table; all following key-values belong to it until next header\n[a.b.c] creates nested structure—parent tables created implicitly\nDotted keys under [table] extend it: [fruit] then apple.color = \"red\" works\nDefining table after dotted key created it is error—order matters\nArrays of Tables\n[[array]] appends new table to array each time it appears\n[[products]] twice creates products[0] and products[1]\nMix [array.nested] after [[array]] to add to most recent array element\nCannot redefine static table as array or vice versa\nInline Tables\npoint = { x = 1, y = 2 } for compact single-line tables\nInline tables cannot span lines (until TOML 1.1)\nCannot add keys to inline table after definition—immutable once closed\nNested inline tables allowed but reduce readability\nTypes\nIntegers: decimal, hex 0xDEAD, octal 0o755, binary 0b1010\nUnderscores for readability: 1_000_000 is valid\nFloats: 3.14, 5e-10, inf, nan (case-sensitive)\nBooleans: true/false only—lowercase, no yes/no/on/off\nDates & Times\nRFC 3339 format: 2024-01-15T14:30:00Z or with offset +05:30\nLocal datetime: 2024-01-15T14:30:00 (no timezone)\nLocal date: 2024-01-15; Local time: 14:30:00\nMilliseconds supported: 14:30:00.123\nCommon Pitfalls\nNo null type—omit key entirely for optional values\nArrays must be homogeneous (TOML 1.0)—TOML 1.1 allows mixed types\nTrailing commas not allowed in arrays or inline tables\nComment # only outside strings—no inline comment after value on same line works, but avoid ambiguity"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/toml",
    "publisherUrl": "https://clawhub.ai/ivangdavila/toml",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/toml",
    "downloadUrl": "https://openagent3.xyz/downloads/toml",
    "agentUrl": "https://openagent3.xyz/skills/toml/agent",
    "manifestUrl": "https://openagent3.xyz/skills/toml/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/toml/agent.md"
  }
}