{
  "schemaVersion": "1.0",
  "item": {
    "slug": "text",
    "name": "Text",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/text",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/text",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/text",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=text",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "academic.md",
      "copy.md",
      "data.md",
      "localization.md",
      "writing.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": "text",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T18:31:01.783Z",
      "expiresAt": "2026-05-07T18:31:01.783Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=text",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=text",
        "contentDisposition": "attachment; filename=\"text-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "text"
      },
      "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/text"
    },
    "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/text",
    "agentPageUrl": "https://openagent3.xyz/skills/text/agent",
    "manifestUrl": "https://openagent3.xyz/skills/text/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/text/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": "Quick Reference",
        "body": "TaskLoadCreative writing (voice, dialogue, POV)writing.mdData processing (CSV, regex, encoding)data.mdAcademic/citations (APA, MLA, Chicago)academic.mdMarketing copy (headlines, CTA, email)copy.mdTranslation/localizationlocalization.md"
      },
      {
        "title": "Encoding",
        "body": "Always verify encoding first: file -bi document.txt\nNormalize line endings: tr -d '\\r'\nRemove BOM if present: sed -i '1s/^\\xEF\\xBB\\xBF//'"
      },
      {
        "title": "Whitespace",
        "body": "Collapse multiple spaces: sed 's/[[:space:]]\\+/ /g'\nTrim leading/trailing: sed 's/^[[:space:]]*//;s/[[:space:]]*$//'"
      },
      {
        "title": "Common Traps",
        "body": "Smart quotes (\" \") break parsers → normalize to \"\nEm/en dashes (– —) break ASCII → normalize to -\nZero-width chars invisible but break comparisons → strip them\nString length ≠ byte length in UTF-8 (\"café\" = 4 chars, 5 bytes)"
      },
      {
        "title": "Format Detection",
        "body": "# Detect encoding\nfile -I document.txt\n\n# Detect line endings\ncat -A document.txt | head -1\n# ^M at end = Windows (CRLF)\n# No ^M = Unix (LF)\n\n# Detect delimiter (CSV/TSV)\nhead -1 file | tr -cd ',;\\t|' | wc -c"
      },
      {
        "title": "Quick Transformations",
        "body": "TaskCommandLowercasetr '[:upper:]' '[:lower:]'Remove punctuationtr -d '[:punct:]'Count wordswc -wCount unique linessort -u | wc -lFind duplicatessort | uniq -dExtract emailsgrep -oE '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}'Extract URLs`grep -oE 'https?://[^[:space:]<>\"{}"
      },
      {
        "title": "Before Processing Checklist",
        "body": "Encoding verified (UTF-8?)\n Line endings normalized\n Delimiter identified (for structured text)\n Target format/style defined\n Edge cases considered (empty, Unicode, special chars)"
      }
    ],
    "body": "Quick Reference\nTask\tLoad\nCreative writing (voice, dialogue, POV)\twriting.md\nData processing (CSV, regex, encoding)\tdata.md\nAcademic/citations (APA, MLA, Chicago)\tacademic.md\nMarketing copy (headlines, CTA, email)\tcopy.md\nTranslation/localization\tlocalization.md\nUniversal Text Rules\nEncoding\nAlways verify encoding first: file -bi document.txt\nNormalize line endings: tr -d '\\r'\nRemove BOM if present: sed -i '1s/^\\xEF\\xBB\\xBF//'\nWhitespace\nCollapse multiple spaces: sed 's/[[:space:]]\\+/ /g'\nTrim leading/trailing: sed 's/^[[:space:]]*//;s/[[:space:]]*$//'\nCommon Traps\nSmart quotes (\" \") break parsers → normalize to \"\nEm/en dashes (– —) break ASCII → normalize to -\nZero-width chars invisible but break comparisons → strip them\nString length ≠ byte length in UTF-8 (\"café\" = 4 chars, 5 bytes)\nFormat Detection\n# Detect encoding\nfile -I document.txt\n\n# Detect line endings\ncat -A document.txt | head -1\n# ^M at end = Windows (CRLF)\n# No ^M = Unix (LF)\n\n# Detect delimiter (CSV/TSV)\nhead -1 file | tr -cd ',;\\t|' | wc -c\n\nQuick Transformations\nTask\tCommand\nLowercase\ttr '[:upper:]' '[:lower:]'\nRemove punctuation\ttr -d '[:punct:]'\nCount words\twc -w\nCount unique lines\tsort -u | wc -l\nFind duplicates\tsort | uniq -d\nExtract emails\tgrep -oE '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}'\nExtract URLs\t`grep -oE 'https?://[^[:space:]<>\"{}\nBefore Processing Checklist\n Encoding verified (UTF-8?)\n Line endings normalized\n Delimiter identified (for structured text)\n Target format/style defined\n Edge cases considered (empty, Unicode, special chars)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/text",
    "publisherUrl": "https://clawhub.ai/ivangdavila/text",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/text",
    "downloadUrl": "https://openagent3.xyz/downloads/text",
    "agentUrl": "https://openagent3.xyz/skills/text/agent",
    "manifestUrl": "https://openagent3.xyz/skills/text/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/text/agent.md"
  }
}