{
  "schemaVersion": "1.0",
  "item": {
    "slug": "feishu-sheets-skill",
    "name": "Feishu Sheets Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/wesley138cn/feishu-sheets-skill",
    "canonicalUrl": "https://clawhub.ai/wesley138cn/feishu-sheets-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/feishu-sheets-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feishu-sheets-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-reference.md",
      "scripts/feishu_sheets.py"
    ],
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/feishu-sheets-skill"
    },
    "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/feishu-sheets-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/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": "Feishu Sheets Tool",
        "body": "Single tool feishu_sheets with action parameter for all spreadsheet operations."
      },
      {
        "title": "Token Extraction",
        "body": "From URL https://xxx.feishu.cn/sheets/shtABC123 → spreadsheet_token = shtABC123"
      },
      {
        "title": "Create Spreadsheet",
        "body": "{ \"action\": \"create\", \"title\": \"New Spreadsheet\" }\n\nOptional folder:\n\n{ \"action\": \"create\", \"title\": \"New Spreadsheet\", \"folder_token\": \"fldcnXXX\" }\n\nReturns: spreadsheet_token, url, title"
      },
      {
        "title": "Write Values",
        "body": "{\n  \"action\": \"write\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"range\": \"A1:C3\",\n  \"values\": [[\"Name\", \"Age\", \"City\"], [\"Alice\", 25, \"Beijing\"], [\"Bob\", 30, \"Shanghai\"]]\n}"
      },
      {
        "title": "Read Values",
        "body": "{\n  \"action\": \"read\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"range\": \"A1:C10\"\n}"
      },
      {
        "title": "Append Values",
        "body": "{\n  \"action\": \"append\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"values\": [[\"Charlie\", 28, \"Shenzhen\"]]\n}"
      },
      {
        "title": "Insert Rows/Columns",
        "body": "{\n  \"action\": \"insert_dimension\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"dimension\": \"ROWS\",\n  \"start_index\": 5,\n  \"end_index\": 7\n}"
      },
      {
        "title": "Delete Rows/Columns",
        "body": "{\n  \"action\": \"delete_dimension\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"dimension\": \"ROWS\",\n  \"start_index\": 5,\n  \"end_index\": 7\n}"
      },
      {
        "title": "Get Spreadsheet Info",
        "body": "{ \"action\": \"get_info\", \"spreadsheet_token\": \"shtABC123\" }\n\nReturns: metadata including all sheet_ids and titles"
      },
      {
        "title": "Add Worksheet",
        "body": "{\n  \"action\": \"add_sheet\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"title\": \"Sheet2\"\n}"
      },
      {
        "title": "Delete Worksheet",
        "body": "{\n  \"action\": \"delete_sheet\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\"\n}"
      },
      {
        "title": "Range Format",
        "body": "Cell: A1, B5\nRange: A1:C10, B2:D5\nEntire column: A:A, B:D\nEntire row: 1:1, 3:5\nWith sheet_id: 0bxxxx!A1:C10"
      },
      {
        "title": "Sheet ID",
        "body": "From URL: https://xxx.feishu.cn/sheets/shtABC123?sheet=0bxxxx\nFrom get_info action\nDefault first sheet often has simple id like 0bxxxx"
      },
      {
        "title": "Data Types",
        "body": "Values can be:\n\nString: \"Hello\"\nNumber: 123, 45.67\nFormula: {\"type\": \"formula\", \"text\": \"=SUM(A1:A10)\"}\nLink: {\"type\": \"url\", \"text\": \"Click here\", \"link\": \"https://...\"}"
      },
      {
        "title": "Configuration",
        "body": "channels:\n  feishu:\n    tools:\n      sheets: true  # default: true"
      },
      {
        "title": "Permissions Required",
        "body": "sheets:spreadsheet - Create and manage spreadsheets\nsheets:spreadsheet:readonly - Read spreadsheet data\ndrive:drive - Access cloud storage"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://open.feishu.cn/open-apis/sheets/v2/spreadsheets/\n\nSee references/api-reference.md for detailed API documentation."
      }
    ],
    "body": "Feishu Sheets Tool\n\nSingle tool feishu_sheets with action parameter for all spreadsheet operations.\n\nToken Extraction\n\nFrom URL https://xxx.feishu.cn/sheets/shtABC123 → spreadsheet_token = shtABC123\n\nActions\nCreate Spreadsheet\n{ \"action\": \"create\", \"title\": \"New Spreadsheet\" }\n\n\nOptional folder:\n\n{ \"action\": \"create\", \"title\": \"New Spreadsheet\", \"folder_token\": \"fldcnXXX\" }\n\n\nReturns: spreadsheet_token, url, title\n\nWrite Values\n{\n  \"action\": \"write\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"range\": \"A1:C3\",\n  \"values\": [[\"Name\", \"Age\", \"City\"], [\"Alice\", 25, \"Beijing\"], [\"Bob\", 30, \"Shanghai\"]]\n}\n\nRead Values\n{\n  \"action\": \"read\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"range\": \"A1:C10\"\n}\n\nAppend Values\n{\n  \"action\": \"append\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"values\": [[\"Charlie\", 28, \"Shenzhen\"]]\n}\n\nInsert Rows/Columns\n{\n  \"action\": \"insert_dimension\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"dimension\": \"ROWS\",\n  \"start_index\": 5,\n  \"end_index\": 7\n}\n\nDelete Rows/Columns\n{\n  \"action\": \"delete_dimension\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\",\n  \"dimension\": \"ROWS\",\n  \"start_index\": 5,\n  \"end_index\": 7\n}\n\nGet Spreadsheet Info\n{ \"action\": \"get_info\", \"spreadsheet_token\": \"shtABC123\" }\n\n\nReturns: metadata including all sheet_ids and titles\n\nAdd Worksheet\n{\n  \"action\": \"add_sheet\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"title\": \"Sheet2\"\n}\n\nDelete Worksheet\n{\n  \"action\": \"delete_sheet\",\n  \"spreadsheet_token\": \"shtABC123\",\n  \"sheet_id\": \"0bxxxx\"\n}\n\nRange Format\nCell: A1, B5\nRange: A1:C10, B2:D5\nEntire column: A:A, B:D\nEntire row: 1:1, 3:5\nWith sheet_id: 0bxxxx!A1:C10\nSheet ID\nFrom URL: https://xxx.feishu.cn/sheets/shtABC123?sheet=0bxxxx\nFrom get_info action\nDefault first sheet often has simple id like 0bxxxx\nData Types\n\nValues can be:\n\nString: \"Hello\"\nNumber: 123, 45.67\nFormula: {\"type\": \"formula\", \"text\": \"=SUM(A1:A10)\"}\nLink: {\"type\": \"url\", \"text\": \"Click here\", \"link\": \"https://...\"}\nConfiguration\nchannels:\n  feishu:\n    tools:\n      sheets: true  # default: true\n\nPermissions Required\nsheets:spreadsheet - Create and manage spreadsheets\nsheets:spreadsheet:readonly - Read spreadsheet data\ndrive:drive - Access cloud storage\nAPI Reference\n\nBase URL: https://open.feishu.cn/open-apis/sheets/v2/spreadsheets/\n\nSee references/api-reference.md for detailed API documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wesley138cn/feishu-sheets-skill",
    "publisherUrl": "https://clawhub.ai/wesley138cn/feishu-sheets-skill",
    "owner": "wesley138cn",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/feishu-sheets-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/feishu-sheets-skill",
    "agentUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/feishu-sheets-skill/agent.md"
  }
}