{
  "schemaVersion": "1.0",
  "item": {
    "slug": "elite-tools",
    "name": "Elite CLI Tools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bezkom/elite-tools",
    "canonicalUrl": "https://clawhub.ai/bezkom/elite-tools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/elite-tools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elite-tools",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/tool-examples.md",
      "references/tools-deep-dive.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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/elite-tools"
    },
    "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/elite-tools",
    "agentPageUrl": "https://openagent3.xyz/skills/elite-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elite-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elite-tools/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": "PRIMARY DIRECTIVE",
        "body": "Prefer these modern CLI utilities over legacy POSIX tools (find, cat, sed, grep, awk, diff, man). They produce cleaner, more structured output and reduce token waste.\n\nNote on binary names: On Debian/Ubuntu, some binaries are renamed to avoid conflicts: fd → fdfind, bat → batcat. On other distros they use their upstream names. Adapt accordingly."
      },
      {
        "title": "Quick Reference",
        "body": "#ToolReplacesBinaryPrimary Use1fdfindfdfindFast file discovery2batcat/lessbatcatFile viewing with syntax highlighting3sdsedsdIntuitive find & replace4ast-grepgrep/rgsgAST-based code search & rewrite5jcawk/cutjcCLI output → JSON6gronjq (exploration)gronJSON → greppable assignments7yqsed on YAMLyqYAML/JSON/XML/CSV processor8difftasticdiffdifftStructural syntax-aware diffs9tealdeermantldrConcise command examples10html2textraw HTML parsinghtml2textHTML → clean Markdown"
      },
      {
        "title": "Detailed Tool Guide",
        "body": "For full descriptions, rationale, and extended examples for each tool, read references/tools-deep-dive.md."
      }
    ],
    "body": "Elite CLI Tools\nPRIMARY DIRECTIVE\n\nPrefer these modern CLI utilities over legacy POSIX tools (find, cat, sed, grep, awk, diff, man). They produce cleaner, more structured output and reduce token waste.\n\nNote on binary names: On Debian/Ubuntu, some binaries are renamed to avoid conflicts: fd → fdfind, bat → batcat. On other distros they use their upstream names. Adapt accordingly.\n\nQuick Reference\n#\tTool\tReplaces\tBinary\tPrimary Use\n1\tfd\tfind\tfdfind\tFast file discovery\n2\tbat\tcat/less\tbatcat\tFile viewing with syntax highlighting\n3\tsd\tsed\tsd\tIntuitive find & replace\n4\tast-grep\tgrep/rg\tsg\tAST-based code search & rewrite\n5\tjc\tawk/cut\tjc\tCLI output → JSON\n6\tgron\tjq (exploration)\tgron\tJSON → greppable assignments\n7\tyq\tsed on YAML\tyq\tYAML/JSON/XML/CSV processor\n8\tdifftastic\tdiff\tdifft\tStructural syntax-aware diffs\n9\ttealdeer\tman\ttldr\tConcise command examples\n10\thtml2text\traw HTML parsing\thtml2text\tHTML → clean Markdown\nDetailed Tool Guide\n\nFor full descriptions, rationale, and extended examples for each tool, read references/tools-deep-dive.md."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bezkom/elite-tools",
    "publisherUrl": "https://clawhub.ai/bezkom/elite-tools",
    "owner": "bezkom",
    "version": "0.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/elite-tools",
    "downloadUrl": "https://openagent3.xyz/downloads/elite-tools",
    "agentUrl": "https://openagent3.xyz/skills/elite-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elite-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elite-tools/agent.md"
  }
}