{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fd-find",
    "name": "Fd Find",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Arnarsson/fd-find",
    "canonicalUrl": "https://clawhub.ai/Arnarsson/fd-find",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fd-find",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fd-find",
    "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-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/fd-find"
    },
    "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/fd-find",
    "agentPageUrl": "https://openagent3.xyz/skills/fd-find/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fd-find/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fd-find/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": "fd - Fast File Finder",
        "body": "User-friendly alternative to find with smart defaults."
      },
      {
        "title": "Basic search",
        "body": "# Find files by name\nfd pattern\n\n# Find in specific directory\nfd pattern /path/to/dir\n\n# Case-insensitive\nfd -i pattern"
      },
      {
        "title": "Common patterns",
        "body": "# Find all Python files\nfd -e py\n\n# Find multiple extensions\nfd -e py -e js -e ts\n\n# Find directories only\nfd -t d pattern\n\n# Find files only\nfd -t f pattern\n\n# Find symlinks\nfd -t l"
      },
      {
        "title": "Filtering",
        "body": "# Exclude patterns\nfd pattern -E \"node_modules\" -E \"*.min.js\"\n\n# Include hidden files\nfd -H pattern\n\n# Include ignored files (.gitignore)\nfd -I pattern\n\n# Search all (hidden + ignored)\nfd -H -I pattern\n\n# Maximum depth\nfd pattern -d 3"
      },
      {
        "title": "Execution",
        "body": "# Execute command on results\nfd -e jpg -x convert {} {.}.png\n\n# Parallel execution\nfd -e md -x wc -l\n\n# Use with xargs\nfd -e log -0 | xargs -0 rm"
      },
      {
        "title": "Regex patterns",
        "body": "# Full regex search\nfd '^test.*\\.js$'\n\n# Match full path\nfd --full-path 'src/.*/test'\n\n# Glob pattern\nfd -g \"*.{js,ts}\""
      },
      {
        "title": "Time-based filtering",
        "body": "# Modified within last day\nfd --changed-within 1d\n\n# Modified before specific date\nfd --changed-before 2024-01-01\n\n# Created recently\nfd --changed-within 1h"
      },
      {
        "title": "Size filtering",
        "body": "# Files larger than 10MB\nfd --size +10m\n\n# Files smaller than 1KB\nfd --size -1k\n\n# Specific size range\nfd --size +100k --size -10m"
      },
      {
        "title": "Output formatting",
        "body": "# Absolute paths\nfd --absolute-path\n\n# List format (like ls -l)\nfd --list-details\n\n# Null separator (for xargs)\nfd -0 pattern\n\n# Color always/never/auto\nfd --color always pattern"
      },
      {
        "title": "Common Use Cases",
        "body": "Find and delete old files:\n\nfd --changed-before 30d -t f -x rm {}\n\nFind large files:\n\nfd --size +100m --list-details\n\nCopy all PDFs to directory:\n\nfd -e pdf -x cp {} /target/dir/\n\nCount lines in all Python files:\n\nfd -e py -x wc -l | awk '{sum+=$1} END {print sum}'\n\nFind broken symlinks:\n\nfd -t l -x test -e {} \\; -print\n\nSearch in specific time window:\n\nfd --changed-within 2d --changed-before 1d"
      },
      {
        "title": "Integration with other tools",
        "body": "With ripgrep:\n\nfd -e js | xargs rg \"pattern\"\n\nWith fzf (fuzzy finder):\n\nvim $(fd -t f | fzf)\n\nWith bat (cat alternative):\n\nfd -e md | xargs bat"
      },
      {
        "title": "Performance Tips",
        "body": "fd is typically much faster than find\nRespects .gitignore by default (disable with -I)\nUses parallel traversal automatically\nSmart case: lowercase = case-insensitive, any uppercase = case-sensitive"
      },
      {
        "title": "Tips",
        "body": "Use -t for type filtering (f=file, d=directory, l=symlink, x=executable)\n-e for extension is simpler than -g \"*.ext\"\n{} in -x commands represents the found path\n{.} strips the extension\n{/} gets basename, {//} gets directory"
      },
      {
        "title": "Documentation",
        "body": "GitHub: https://github.com/sharkdp/fd\nMan page: man fd"
      }
    ],
    "body": "fd - Fast File Finder\n\nUser-friendly alternative to find with smart defaults.\n\nQuick Start\nBasic search\n# Find files by name\nfd pattern\n\n# Find in specific directory\nfd pattern /path/to/dir\n\n# Case-insensitive\nfd -i pattern\n\nCommon patterns\n# Find all Python files\nfd -e py\n\n# Find multiple extensions\nfd -e py -e js -e ts\n\n# Find directories only\nfd -t d pattern\n\n# Find files only\nfd -t f pattern\n\n# Find symlinks\nfd -t l\n\nAdvanced Usage\nFiltering\n# Exclude patterns\nfd pattern -E \"node_modules\" -E \"*.min.js\"\n\n# Include hidden files\nfd -H pattern\n\n# Include ignored files (.gitignore)\nfd -I pattern\n\n# Search all (hidden + ignored)\nfd -H -I pattern\n\n# Maximum depth\nfd pattern -d 3\n\nExecution\n# Execute command on results\nfd -e jpg -x convert {} {.}.png\n\n# Parallel execution\nfd -e md -x wc -l\n\n# Use with xargs\nfd -e log -0 | xargs -0 rm\n\nRegex patterns\n# Full regex search\nfd '^test.*\\.js$'\n\n# Match full path\nfd --full-path 'src/.*/test'\n\n# Glob pattern\nfd -g \"*.{js,ts}\"\n\nTime-based filtering\n# Modified within last day\nfd --changed-within 1d\n\n# Modified before specific date\nfd --changed-before 2024-01-01\n\n# Created recently\nfd --changed-within 1h\n\nSize filtering\n# Files larger than 10MB\nfd --size +10m\n\n# Files smaller than 1KB\nfd --size -1k\n\n# Specific size range\nfd --size +100k --size -10m\n\nOutput formatting\n# Absolute paths\nfd --absolute-path\n\n# List format (like ls -l)\nfd --list-details\n\n# Null separator (for xargs)\nfd -0 pattern\n\n# Color always/never/auto\nfd --color always pattern\n\nCommon Use Cases\n\nFind and delete old files:\n\nfd --changed-before 30d -t f -x rm {}\n\n\nFind large files:\n\nfd --size +100m --list-details\n\n\nCopy all PDFs to directory:\n\nfd -e pdf -x cp {} /target/dir/\n\n\nCount lines in all Python files:\n\nfd -e py -x wc -l | awk '{sum+=$1} END {print sum}'\n\n\nFind broken symlinks:\n\nfd -t l -x test -e {} \\; -print\n\n\nSearch in specific time window:\n\nfd --changed-within 2d --changed-before 1d\n\nIntegration with other tools\n\nWith ripgrep:\n\nfd -e js | xargs rg \"pattern\"\n\n\nWith fzf (fuzzy finder):\n\nvim $(fd -t f | fzf)\n\n\nWith bat (cat alternative):\n\nfd -e md | xargs bat\n\nPerformance Tips\nfd is typically much faster than find\nRespects .gitignore by default (disable with -I)\nUses parallel traversal automatically\nSmart case: lowercase = case-insensitive, any uppercase = case-sensitive\nTips\nUse -t for type filtering (f=file, d=directory, l=symlink, x=executable)\n-e for extension is simpler than -g \"*.ext\"\n{} in -x commands represents the found path\n{.} strips the extension\n{/} gets basename, {//} gets directory\nDocumentation\n\nGitHub: https://github.com/sharkdp/fd Man page: man fd"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Arnarsson/fd-find",
    "publisherUrl": "https://clawhub.ai/Arnarsson/fd-find",
    "owner": "Arnarsson",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fd-find",
    "downloadUrl": "https://openagent3.xyz/downloads/fd-find",
    "agentUrl": "https://openagent3.xyz/skills/fd-find/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fd-find/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fd-find/agent.md"
  }
}