{
  "schemaVersion": "1.0",
  "item": {
    "slug": "spreadsheet",
    "name": "Spreadsheet",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ivangdavila/spreadsheet",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/spreadsheet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/spreadsheet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=spreadsheet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "csv.md",
      "excel.md",
      "google-sheets.md",
      "memory-template.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": "spreadsheet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T06:09:22.607Z",
      "expiresAt": "2026-05-07T06:09:22.607Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=spreadsheet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=spreadsheet",
        "contentDisposition": "attachment; filename=\"spreadsheet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "spreadsheet"
      },
      "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/spreadsheet"
    },
    "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/spreadsheet",
    "agentPageUrl": "https://openagent3.xyz/skills/spreadsheet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/spreadsheet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/spreadsheet/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": "When to Use",
        "body": "User needs spreadsheet operations: reading data, writing cells, analyzing tables, generating reports, or tracking structured information across Google Sheets, Excel, or CSV files."
      },
      {
        "title": "Architecture",
        "body": "Memory lives in ~/spreadsheet/. See memory-template.md for setup.\n\n~/spreadsheet/\n  memory.md           # Preferences, recent sheets, format rules\n  projects/           # Per-project schemas and configs\n    {name}.md         # Sheet IDs, columns, formulas\n  templates/          # Reusable structures\n  exports/            # Generated files"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileMemory setupmemory-template.mdGoogle Sheets APIgoogle-sheets.mdExcel operationsexcel.mdCSV handlingcsv.md"
      },
      {
        "title": "Scope",
        "body": "This skill ONLY:\n\nReads/writes spreadsheets user explicitly requests\nStores schemas and preferences in ~/spreadsheet/\nProcesses files user provides\n\nThis skill NEVER:\n\nAccesses sheets without user request\nStores passwords, API keys, or sensitive financial data\nModifies files outside ~/spreadsheet/ or user paths"
      },
      {
        "title": "Data Storage",
        "body": "All data stored in ~/spreadsheet/. Create on first use:\n\nmkdir -p ~/spreadsheet/{projects,templates,exports}"
      },
      {
        "title": "Self-Modification",
        "body": "This skill NEVER modifies its own SKILL.md.\nAll user data stored in ~/spreadsheet/ only."
      },
      {
        "title": "1. Schema First",
        "body": "On first access to any sheet:\n\nDocument columns (name, type, sample)\nSave to projects/{name}.md\nReference schema in future ops"
      },
      {
        "title": "2. Format Preservation",
        "body": "SituationActionUpdating cellsPreserve existing formatWriting numbersMatch user's locale (1,000.00 vs 1.000,00)Writing datesUse user's preferred formatWriting formulasNever overwrite unless asked"
      },
      {
        "title": "3. Large Data Strategy",
        "body": "Row CountApproach<1000Load fully1000-10000Sample + targeted queries>10000Paginate, warn before loading"
      },
      {
        "title": "4. Integration Priority",
        "body": "Google Sheets - if API configured\nExcel (.xlsx) - local files, use openpyxl\nCSV - universal fallback"
      },
      {
        "title": "5. Memory Updates",
        "body": "EventActionNew sheet accessedAdd ID + schema to memoryUser corrects formatSave preferenceColumn renamedUpdate project schema"
      },
      {
        "title": "Common Traps",
        "body": "Truncating without warning - Always confirm before loading >1000 rows\nLosing formulas - Use data_only=False in openpyxl, read formulas separately\nSchema drift - Re-verify if last access >7 days\nRate limits - Batch Google Sheets requests, max 100/100s\nEncoding - Default UTF-8, check for BOM on European files\nEmpty cells - Google API omits them; pandas fills with NaN"
      }
    ],
    "body": "When to Use\n\nUser needs spreadsheet operations: reading data, writing cells, analyzing tables, generating reports, or tracking structured information across Google Sheets, Excel, or CSV files.\n\nArchitecture\n\nMemory lives in ~/spreadsheet/. See memory-template.md for setup.\n\n~/spreadsheet/\n  memory.md           # Preferences, recent sheets, format rules\n  projects/           # Per-project schemas and configs\n    {name}.md         # Sheet IDs, columns, formulas\n  templates/          # Reusable structures\n  exports/            # Generated files\n\nQuick Reference\nTopic\tFile\nMemory setup\tmemory-template.md\nGoogle Sheets API\tgoogle-sheets.md\nExcel operations\texcel.md\nCSV handling\tcsv.md\nScope\n\nThis skill ONLY:\n\nReads/writes spreadsheets user explicitly requests\nStores schemas and preferences in ~/spreadsheet/\nProcesses files user provides\n\nThis skill NEVER:\n\nAccesses sheets without user request\nStores passwords, API keys, or sensitive financial data\nModifies files outside ~/spreadsheet/ or user paths\nData Storage\n\nAll data stored in ~/spreadsheet/. Create on first use:\n\nmkdir -p ~/spreadsheet/{projects,templates,exports}\n\nSelf-Modification\n\nThis skill NEVER modifies its own SKILL.md. All user data stored in ~/spreadsheet/ only.\n\nCore Rules\n1. Schema First\n\nOn first access to any sheet:\n\nDocument columns (name, type, sample)\nSave to projects/{name}.md\nReference schema in future ops\n2. Format Preservation\nSituation\tAction\nUpdating cells\tPreserve existing format\nWriting numbers\tMatch user's locale (1,000.00 vs 1.000,00)\nWriting dates\tUse user's preferred format\nWriting formulas\tNever overwrite unless asked\n3. Large Data Strategy\nRow Count\tApproach\n<1000\tLoad fully\n1000-10000\tSample + targeted queries\n>10000\tPaginate, warn before loading\n4. Integration Priority\nGoogle Sheets - if API configured\nExcel (.xlsx) - local files, use openpyxl\nCSV - universal fallback\n5. Memory Updates\nEvent\tAction\nNew sheet accessed\tAdd ID + schema to memory\nUser corrects format\tSave preference\nColumn renamed\tUpdate project schema\nCommon Traps\nTruncating without warning - Always confirm before loading >1000 rows\nLosing formulas - Use data_only=False in openpyxl, read formulas separately\nSchema drift - Re-verify if last access >7 days\nRate limits - Batch Google Sheets requests, max 100/100s\nEncoding - Default UTF-8, check for BOM on European files\nEmpty cells - Google API omits them; pandas fills with NaN"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/spreadsheet",
    "publisherUrl": "https://clawhub.ai/ivangdavila/spreadsheet",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/spreadsheet",
    "downloadUrl": "https://openagent3.xyz/downloads/spreadsheet",
    "agentUrl": "https://openagent3.xyz/skills/spreadsheet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/spreadsheet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/spreadsheet/agent.md"
  }
}