{
  "schemaVersion": "1.0",
  "item": {
    "slug": "jq-json-processor",
    "name": "Jq Json Processor",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Arnarsson/jq-json-processor",
    "canonicalUrl": "https://clawhub.ai/Arnarsson/jq-json-processor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/jq-json-processor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jq-json-processor",
    "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/jq-json-processor"
    },
    "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/jq-json-processor",
    "agentPageUrl": "https://openagent3.xyz/skills/jq-json-processor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jq-json-processor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jq-json-processor/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": "jq JSON Processor",
        "body": "Process, filter, and transform JSON data with jq."
      },
      {
        "title": "Basic filtering",
        "body": "# Extract a field\necho '{\"name\":\"Alice\",\"age\":30}' | jq '.name'\n# Output: \"Alice\"\n\n# Multiple fields\necho '{\"name\":\"Alice\",\"age\":30}' | jq '{name: .name, age: .age}'\n\n# Array indexing\necho '[1,2,3,4,5]' | jq '.[2]'\n# Output: 3"
      },
      {
        "title": "Working with arrays",
        "body": "# Map over array\necho '[{\"name\":\"Alice\"},{\"name\":\"Bob\"}]' | jq '.[].name'\n# Output: \"Alice\" \"Bob\"\n\n# Filter array\necho '[1,2,3,4,5]' | jq 'map(select(. > 2))'\n# Output: [3,4,5]\n\n# Length\necho '[1,2,3]' | jq 'length'\n# Output: 3"
      },
      {
        "title": "Common operations",
        "body": "# Pretty print JSON\ncat file.json | jq '.'\n\n# Compact output\ncat file.json | jq -c '.'\n\n# Raw output (no quotes)\necho '{\"name\":\"Alice\"}' | jq -r '.name'\n# Output: Alice\n\n# Sort keys\necho '{\"z\":1,\"a\":2}' | jq -S '.'"
      },
      {
        "title": "Advanced filtering",
        "body": "# Select with conditions\njq '[.[] | select(.age > 25)]' people.json\n\n# Group by\njq 'group_by(.category)' items.json\n\n# Reduce\necho '[1,2,3,4,5]' | jq 'reduce .[] as $item (0; . + $item)'\n# Output: 15"
      },
      {
        "title": "Working with files",
        "body": "# Read from file\njq '.users[0].name' users.json\n\n# Multiple files\njq -s '.[0] * .[1]' file1.json file2.json\n\n# Modify and save\njq '.version = \"2.0\"' package.json > package.json.tmp && mv package.json.tmp package.json"
      },
      {
        "title": "Common Use Cases",
        "body": "Extract specific fields from API response:\n\ncurl -s https://api.github.com/users/octocat | jq '{name: .name, repos: .public_repos, followers: .followers}'\n\nConvert CSV-like data:\n\njq -r '.[] | [.name, .email, .age] | @csv' users.json\n\nDebug API responses:\n\ncurl -s https://api.example.com/data | jq '.'"
      },
      {
        "title": "Tips",
        "body": "Use -r for raw string output (removes quotes)\nUse -c for compact output (single line)\nUse -S to sort object keys\nUse --arg name value to pass variables\nPipe multiple jq operations: jq '.a' | jq '.b'"
      },
      {
        "title": "Documentation",
        "body": "Full manual: https://jqlang.github.io/jq/manual/\nInteractive tutorial: https://jqplay.org/"
      }
    ],
    "body": "jq JSON Processor\n\nProcess, filter, and transform JSON data with jq.\n\nQuick Examples\nBasic filtering\n# Extract a field\necho '{\"name\":\"Alice\",\"age\":30}' | jq '.name'\n# Output: \"Alice\"\n\n# Multiple fields\necho '{\"name\":\"Alice\",\"age\":30}' | jq '{name: .name, age: .age}'\n\n# Array indexing\necho '[1,2,3,4,5]' | jq '.[2]'\n# Output: 3\n\nWorking with arrays\n# Map over array\necho '[{\"name\":\"Alice\"},{\"name\":\"Bob\"}]' | jq '.[].name'\n# Output: \"Alice\" \"Bob\"\n\n# Filter array\necho '[1,2,3,4,5]' | jq 'map(select(. > 2))'\n# Output: [3,4,5]\n\n# Length\necho '[1,2,3]' | jq 'length'\n# Output: 3\n\nCommon operations\n# Pretty print JSON\ncat file.json | jq '.'\n\n# Compact output\ncat file.json | jq -c '.'\n\n# Raw output (no quotes)\necho '{\"name\":\"Alice\"}' | jq -r '.name'\n# Output: Alice\n\n# Sort keys\necho '{\"z\":1,\"a\":2}' | jq -S '.'\n\nAdvanced filtering\n# Select with conditions\njq '[.[] | select(.age > 25)]' people.json\n\n# Group by\njq 'group_by(.category)' items.json\n\n# Reduce\necho '[1,2,3,4,5]' | jq 'reduce .[] as $item (0; . + $item)'\n# Output: 15\n\nWorking with files\n# Read from file\njq '.users[0].name' users.json\n\n# Multiple files\njq -s '.[0] * .[1]' file1.json file2.json\n\n# Modify and save\njq '.version = \"2.0\"' package.json > package.json.tmp && mv package.json.tmp package.json\n\nCommon Use Cases\n\nExtract specific fields from API response:\n\ncurl -s https://api.github.com/users/octocat | jq '{name: .name, repos: .public_repos, followers: .followers}'\n\n\nConvert CSV-like data:\n\njq -r '.[] | [.name, .email, .age] | @csv' users.json\n\n\nDebug API responses:\n\ncurl -s https://api.example.com/data | jq '.'\n\nTips\nUse -r for raw string output (removes quotes)\nUse -c for compact output (single line)\nUse -S to sort object keys\nUse --arg name value to pass variables\nPipe multiple jq operations: jq '.a' | jq '.b'\nDocumentation\n\nFull manual: https://jqlang.github.io/jq/manual/ Interactive tutorial: https://jqplay.org/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Arnarsson/jq-json-processor",
    "publisherUrl": "https://clawhub.ai/Arnarsson/jq-json-processor",
    "owner": "Arnarsson",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/jq-json-processor",
    "downloadUrl": "https://openagent3.xyz/downloads/jq-json-processor",
    "agentUrl": "https://openagent3.xyz/skills/jq-json-processor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jq-json-processor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jq-json-processor/agent.md"
  }
}