{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pls-agent-tools",
    "name": "PLS Agent Tools",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mattvalenta/pls-agent-tools",
    "canonicalUrl": "https://clawhub.ai/mattvalenta/pls-agent-tools",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pls-agent-tools",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pls-agent-tools",
    "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/pls-agent-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/pls-agent-tools",
    "agentPageUrl": "https://openagent3.xyz/skills/pls-agent-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-agent-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-agent-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": "Agent Tools - Universal Utility Belt",
        "body": "A collection of practical utilities for everyday agent operations."
      },
      {
        "title": "Safe File Manipulation",
        "body": "Always use trash instead of rm when possible:\n\ntrash /path/to/file  # Safer deletion (recoverable)"
      },
      {
        "title": "Bulk File Operations",
        "body": "# Rename files with pattern\nfor f in *.txt; do mv \"$f\" \"${f/.txt/.md}\"; done\n\n# Find and delete files older than 7 days\nfind . -name \"*.log\" -mtime +7 -exec trash {} \\;\n\n# Copy with progress\nrsync -av --progress src/ dest/"
      },
      {
        "title": "JSON Operations (jq)",
        "body": "# Pretty print\njq '.' file.json\n\n# Extract field\njq '.field' file.json\n\n# Update field\njq '.field = \"new_value\"' file.json > tmp && mv tmp file.json\n\n# Merge JSON files\njq -s 'add' file1.json file2.json"
      },
      {
        "title": "YAML Operations (yq)",
        "body": "# Read value\nyq '.key' file.yaml\n\n# Update value\nyq '.key = \"value\"' -i file.yaml\n\n# Convert YAML to JSON\nyq -o=json '.' file.yaml"
      },
      {
        "title": "Common Patterns",
        "body": "# Search and replace in files\nsed -i '' 's/old/new/g' file.txt\n\n# Extract matches\ngrep -oP 'pattern' file.txt\n\n# Count occurrences\ngrep -c 'pattern' file.txt\n\n# Remove duplicate lines\nsort file.txt | uniq > deduplicated.txt\n\n# Extract column\nawk '{print $2}' file.txt"
      },
      {
        "title": "Process Management",
        "body": "# Find process by name\nps aux | grep process_name\n\n# Kill by port\nlsof -ti:3000 | xargs kill -9\n\n# Monitor resource usage\nhtop"
      },
      {
        "title": "Network Operations",
        "body": "# Check port availability\nlsof -i :PORT\n\n# Download with retry\ncurl --retry 3 -O URL\n\n# Test endpoint\ncurl -X POST -H \"Content-Type: application/json\" -d '{\"key\":\"value\"}' URL"
      },
      {
        "title": "Encoding/Decoding",
        "body": "# Base64 encode/decode\necho \"text\" | base64\necho \"dGV4dAo=\" | base64 -d\n\n# URL encode/decode\npython3 -c \"import urllib.parse; print(urllib.parse.quote('text'))\"\npython3 -c \"import urllib.parse; print(urllib.parse.unquote('text%20here'))\"\n\n# JSON escape/unescape\njq -R . <<< 'string to escape'\njq -r . <<< '\"escaped string\"'"
      },
      {
        "title": "Date/Time Utilities",
        "body": "# Current timestamp\ndate +%s\n\n# ISO format\ndate -u +\"%Y-%m-%dT%H:%M:%SZ\"\n\n# Convert timestamp\ndate -r 1234567890\n\n# Timezone conversion\nTZ=\"America/Chicago\" date"
      },
      {
        "title": "Validation Helpers",
        "body": "# Validate JSON\njq empty file.json && echo \"Valid JSON\"\n\n# Validate YAML\npython3 -c \"import yaml; yaml.safe_load(open('file.yaml'))\" && echo \"Valid YAML\"\n\n# Check JSON schema\ncheck-jsonschema --schemafile schema.json document.json"
      },
      {
        "title": "Quick Reference",
        "body": "TaskCommandSafe deletetrash fileFind filesfind . -name \"*.ext\"Search in filesgrep -r \"pattern\" .Replace textsed -i '' 's/old/new/g'JSON prettyjq '.'YAML readyq '.key'Port checklsof -i :PORTBase64 decodebase64 -d"
      }
    ],
    "body": "Agent Tools - Universal Utility Belt\n\nA collection of practical utilities for everyday agent operations.\n\nFile Operations\nSafe File Manipulation\n\nAlways use trash instead of rm when possible:\n\ntrash /path/to/file  # Safer deletion (recoverable)\n\nBulk File Operations\n# Rename files with pattern\nfor f in *.txt; do mv \"$f\" \"${f/.txt/.md}\"; done\n\n# Find and delete files older than 7 days\nfind . -name \"*.log\" -mtime +7 -exec trash {} \\;\n\n# Copy with progress\nrsync -av --progress src/ dest/\n\nJSON/YAML Processing\nJSON Operations (jq)\n# Pretty print\njq '.' file.json\n\n# Extract field\njq '.field' file.json\n\n# Update field\njq '.field = \"new_value\"' file.json > tmp && mv tmp file.json\n\n# Merge JSON files\njq -s 'add' file1.json file2.json\n\nYAML Operations (yq)\n# Read value\nyq '.key' file.yaml\n\n# Update value\nyq '.key = \"value\"' -i file.yaml\n\n# Convert YAML to JSON\nyq -o=json '.' file.yaml\n\nText Processing\nCommon Patterns\n# Search and replace in files\nsed -i '' 's/old/new/g' file.txt\n\n# Extract matches\ngrep -oP 'pattern' file.txt\n\n# Count occurrences\ngrep -c 'pattern' file.txt\n\n# Remove duplicate lines\nsort file.txt | uniq > deduplicated.txt\n\n# Extract column\nawk '{print $2}' file.txt\n\nSystem Utilities\nProcess Management\n# Find process by name\nps aux | grep process_name\n\n# Kill by port\nlsof -ti:3000 | xargs kill -9\n\n# Monitor resource usage\nhtop\n\nNetwork Operations\n# Check port availability\nlsof -i :PORT\n\n# Download with retry\ncurl --retry 3 -O URL\n\n# Test endpoint\ncurl -X POST -H \"Content-Type: application/json\" -d '{\"key\":\"value\"}' URL\n\nEncoding/Decoding\n# Base64 encode/decode\necho \"text\" | base64\necho \"dGV4dAo=\" | base64 -d\n\n# URL encode/decode\npython3 -c \"import urllib.parse; print(urllib.parse.quote('text'))\"\npython3 -c \"import urllib.parse; print(urllib.parse.unquote('text%20here'))\"\n\n# JSON escape/unescape\njq -R . <<< 'string to escape'\njq -r . <<< '\"escaped string\"'\n\nDate/Time Utilities\n# Current timestamp\ndate +%s\n\n# ISO format\ndate -u +\"%Y-%m-%dT%H:%M:%SZ\"\n\n# Convert timestamp\ndate -r 1234567890\n\n# Timezone conversion\nTZ=\"America/Chicago\" date\n\nValidation Helpers\n# Validate JSON\njq empty file.json && echo \"Valid JSON\"\n\n# Validate YAML\npython3 -c \"import yaml; yaml.safe_load(open('file.yaml'))\" && echo \"Valid YAML\"\n\n# Check JSON schema\ncheck-jsonschema --schemafile schema.json document.json\n\nQuick Reference\nTask\tCommand\nSafe delete\ttrash file\nFind files\tfind . -name \"*.ext\"\nSearch in files\tgrep -r \"pattern\" .\nReplace text\tsed -i '' 's/old/new/g'\nJSON pretty\tjq '.'\nYAML read\tyq '.key'\nPort check\tlsof -i :PORT\nBase64 decode\tbase64 -d"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mattvalenta/pls-agent-tools",
    "publisherUrl": "https://clawhub.ai/mattvalenta/pls-agent-tools",
    "owner": "mattvalenta",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pls-agent-tools",
    "downloadUrl": "https://openagent3.xyz/downloads/pls-agent-tools",
    "agentUrl": "https://openagent3.xyz/skills/pls-agent-tools/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pls-agent-tools/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pls-agent-tools/agent.md"
  }
}