{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tally",
    "name": "Tally",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/yujesyoga/tally",
    "canonicalUrl": "https://clawhub.ai/yujesyoga/tally",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tally",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tally",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tally"
    },
    "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/tally",
    "agentPageUrl": "https://openagent3.xyz/skills/tally/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tally/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tally/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": "Tally Forms API",
        "body": "Create and edit Tally.so forms programmatically via their REST API."
      },
      {
        "title": "Authentication",
        "body": "TALLY_KEY=$(cat ~/.config/tally/api_key)"
      },
      {
        "title": "Endpoints",
        "body": "ActionMethodEndpointList formsGEThttps://api.tally.so/formsGet formGEThttps://api.tally.so/forms/{id}Update formPATCHhttps://api.tally.so/forms/{id}Get submissionsGEThttps://api.tally.so/forms/{id}/submissions"
      },
      {
        "title": "Block Structure",
        "body": "Tally forms are composed of blocks. Questions require multiple blocks grouped by groupUuid:\n\n{\n  \"uuid\": \"q1-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"Question text here\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q1-input\",\n  \"type\": \"INPUT_TEXT\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\"isRequired\": true}\n}\n\nKey: TITLE block + input block must share the same groupUuid."
      },
      {
        "title": "Structure",
        "body": "FORM_TITLE - Form title and submit button\nTEXT - Paragraph text\nHEADING_1, HEADING_2, HEADING_3 - Section headers\nTITLE - Question label (inside QUESTION group)\nDIVIDER - Separator line"
      },
      {
        "title": "Inputs",
        "body": "INPUT_TEXT - Short text\nINPUT_NUMBER - Number\nINPUT_EMAIL - Email\nINPUT_DATE - Date picker\nINPUT_PHONE_NUMBER - Phone\nTEXTAREA - Long text"
      },
      {
        "title": "Selection",
        "body": "MULTIPLE_CHOICE_OPTION - Single select (groupType: MULTIPLE_CHOICE)\nCHECKBOX - Multi select (groupType: CHECKBOXES)\nDROPDOWN_OPTION - Dropdown option"
      },
      {
        "title": "⚠️ Types that don't render well via API",
        "body": "RATING - Stars don't display\nLINEAR_SCALE - Scale doesn't display\n\nWorkaround: Use MULTIPLE_CHOICE_OPTION with star emojis."
      },
      {
        "title": "Form title",
        "body": "{\n  \"uuid\": \"title-001\",\n  \"type\": \"FORM_TITLE\",\n  \"groupUuid\": \"group-title\",\n  \"groupType\": \"FORM_TITLE\",\n  \"payload\": {\n    \"title\": \"My Survey\",\n    \"button\": {\"label\": \"Submit\"}\n  }\n}"
      },
      {
        "title": "Section header",
        "body": "{\n  \"uuid\": \"sec1-head\",\n  \"type\": \"HEADING_2\",\n  \"groupUuid\": \"group-sec1\",\n  \"groupType\": \"TEXT\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"📊 Section Title\", [[\"tag\", \"span\"]]]]\n  }\n}"
      },
      {
        "title": "Text input question",
        "body": "{\n  \"uuid\": \"q1-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"What is your name?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q1-input\",\n  \"type\": \"INPUT_TEXT\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\"isRequired\": true}\n}"
      },
      {
        "title": "Multiple choice (single answer)",
        "body": "{\n  \"uuid\": \"q2-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"How did you hear about us?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q2-opt1\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"Social media\"}\n},\n{\n  \"uuid\": \"q2-opt2\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 1, \"isFirst\": false, \"isLast\": true, \"text\": \"Friend referral\"}\n}"
      },
      {
        "title": "Checkboxes (multiple answers)",
        "body": "{\n  \"uuid\": \"q3-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"What features interest you?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q3-cb1\",\n  \"type\": \"CHECKBOX\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"CHECKBOXES\",\n  \"payload\": {\"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"Feature A\"}\n},\n{\n  \"uuid\": \"q3-cb2\",\n  \"type\": \"CHECKBOX\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"CHECKBOXES\",\n  \"payload\": {\"index\": 1, \"isFirst\": false, \"isLast\": true, \"text\": \"Feature B\"}\n}"
      },
      {
        "title": "Rating scale (workaround with stars)",
        "body": "{\n  \"uuid\": \"q4-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"How would you rate our service?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q4-opt1\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"⭐ Poor\"}\n},\n{\n  \"uuid\": \"q4-opt2\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 1, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐ Fair\"}\n},\n{\n  \"uuid\": \"q4-opt3\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 2, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐⭐ Good\"}\n},\n{\n  \"uuid\": \"q4-opt4\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 3, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐⭐⭐ Very good\"}\n},\n{\n  \"uuid\": \"q4-opt5\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 4, \"isFirst\": false, \"isLast\": true, \"text\": \"⭐⭐⭐⭐⭐ Excellent\"}\n}"
      },
      {
        "title": "Update Command",
        "body": "TALLY_KEY=$(cat ~/.config/tally/api_key)\n\n# Backup first\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -H \"Authorization: Bearer $TALLY_KEY\" > /tmp/backup.json\n\n# Update\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TALLY_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d @/tmp/form.json\n\n# Verify\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -H \"Authorization: Bearer $TALLY_KEY\" | jq '.blocks | length'"
      },
      {
        "title": "Best Practices",
        "body": "Always backup before modifying a form\nUse descriptive UUIDs (q1-title, q1-input, sec1-head)\nSection titles: Use lowercase with emoji prefix (📊 General feedback)\nFor ratings: Use MULTIPLE_CHOICE with ⭐ emojis instead of RATING type\nVerify after update: Check block count matches expected"
      }
    ],
    "body": "Tally Forms API\n\nCreate and edit Tally.so forms programmatically via their REST API.\n\nAuthentication\nTALLY_KEY=$(cat ~/.config/tally/api_key)\n\nEndpoints\nAction\tMethod\tEndpoint\nList forms\tGET\thttps://api.tally.so/forms\nGet form\tGET\thttps://api.tally.so/forms/{id}\nUpdate form\tPATCH\thttps://api.tally.so/forms/{id}\nGet submissions\tGET\thttps://api.tally.so/forms/{id}/submissions\nBlock Structure\n\nTally forms are composed of blocks. Questions require multiple blocks grouped by groupUuid:\n\n{\n  \"uuid\": \"q1-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"Question text here\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q1-input\",\n  \"type\": \"INPUT_TEXT\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\"isRequired\": true}\n}\n\n\nKey: TITLE block + input block must share the same groupUuid.\n\nBlock Types\nStructure\nFORM_TITLE - Form title and submit button\nTEXT - Paragraph text\nHEADING_1, HEADING_2, HEADING_3 - Section headers\nTITLE - Question label (inside QUESTION group)\nDIVIDER - Separator line\nInputs\nINPUT_TEXT - Short text\nINPUT_NUMBER - Number\nINPUT_EMAIL - Email\nINPUT_DATE - Date picker\nINPUT_PHONE_NUMBER - Phone\nTEXTAREA - Long text\nSelection\nMULTIPLE_CHOICE_OPTION - Single select (groupType: MULTIPLE_CHOICE)\nCHECKBOX - Multi select (groupType: CHECKBOXES)\nDROPDOWN_OPTION - Dropdown option\n⚠️ Types that don't render well via API\nRATING - Stars don't display\nLINEAR_SCALE - Scale doesn't display\n\nWorkaround: Use MULTIPLE_CHOICE_OPTION with star emojis.\n\nExamples\nForm title\n{\n  \"uuid\": \"title-001\",\n  \"type\": \"FORM_TITLE\",\n  \"groupUuid\": \"group-title\",\n  \"groupType\": \"FORM_TITLE\",\n  \"payload\": {\n    \"title\": \"My Survey\",\n    \"button\": {\"label\": \"Submit\"}\n  }\n}\n\nSection header\n{\n  \"uuid\": \"sec1-head\",\n  \"type\": \"HEADING_2\",\n  \"groupUuid\": \"group-sec1\",\n  \"groupType\": \"TEXT\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"📊 Section Title\", [[\"tag\", \"span\"]]]]\n  }\n}\n\nText input question\n{\n  \"uuid\": \"q1-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"What is your name?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q1-input\",\n  \"type\": \"INPUT_TEXT\",\n  \"groupUuid\": \"group-q1\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\"isRequired\": true}\n}\n\nMultiple choice (single answer)\n{\n  \"uuid\": \"q2-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"How did you hear about us?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q2-opt1\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"Social media\"}\n},\n{\n  \"uuid\": \"q2-opt2\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q2\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 1, \"isFirst\": false, \"isLast\": true, \"text\": \"Friend referral\"}\n}\n\nCheckboxes (multiple answers)\n{\n  \"uuid\": \"q3-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"What features interest you?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q3-cb1\",\n  \"type\": \"CHECKBOX\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"CHECKBOXES\",\n  \"payload\": {\"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"Feature A\"}\n},\n{\n  \"uuid\": \"q3-cb2\",\n  \"type\": \"CHECKBOX\",\n  \"groupUuid\": \"group-q3\",\n  \"groupType\": \"CHECKBOXES\",\n  \"payload\": {\"index\": 1, \"isFirst\": false, \"isLast\": true, \"text\": \"Feature B\"}\n}\n\nRating scale (workaround with stars)\n{\n  \"uuid\": \"q4-title\",\n  \"type\": \"TITLE\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"QUESTION\",\n  \"payload\": {\n    \"safeHTMLSchema\": [[\"How would you rate our service?\", [[\"tag\", \"span\"]]]]\n  }\n},\n{\n  \"uuid\": \"q4-opt1\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 0, \"isFirst\": true, \"isLast\": false, \"text\": \"⭐ Poor\"}\n},\n{\n  \"uuid\": \"q4-opt2\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 1, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐ Fair\"}\n},\n{\n  \"uuid\": \"q4-opt3\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 2, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐⭐ Good\"}\n},\n{\n  \"uuid\": \"q4-opt4\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 3, \"isFirst\": false, \"isLast\": false, \"text\": \"⭐⭐⭐⭐ Very good\"}\n},\n{\n  \"uuid\": \"q4-opt5\",\n  \"type\": \"MULTIPLE_CHOICE_OPTION\",\n  \"groupUuid\": \"group-q4\",\n  \"groupType\": \"MULTIPLE_CHOICE\",\n  \"payload\": {\"isRequired\": true, \"index\": 4, \"isFirst\": false, \"isLast\": true, \"text\": \"⭐⭐⭐⭐⭐ Excellent\"}\n}\n\nUpdate Command\nTALLY_KEY=$(cat ~/.config/tally/api_key)\n\n# Backup first\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -H \"Authorization: Bearer $TALLY_KEY\" > /tmp/backup.json\n\n# Update\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TALLY_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d @/tmp/form.json\n\n# Verify\ncurl -s \"https://api.tally.so/forms/{ID}\" \\\n  -H \"Authorization: Bearer $TALLY_KEY\" | jq '.blocks | length'\n\nBest Practices\nAlways backup before modifying a form\nUse descriptive UUIDs (q1-title, q1-input, sec1-head)\nSection titles: Use lowercase with emoji prefix (📊 General feedback)\nFor ratings: Use MULTIPLE_CHOICE with ⭐ emojis instead of RATING type\nVerify after update: Check block count matches expected"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/yujesyoga/tally",
    "publisherUrl": "https://clawhub.ai/yujesyoga/tally",
    "owner": "yujesyoga",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tally",
    "downloadUrl": "https://openagent3.xyz/downloads/tally",
    "agentUrl": "https://openagent3.xyz/skills/tally/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tally/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tally/agent.md"
  }
}