{
  "schemaVersion": "1.0",
  "item": {
    "slug": "doc-sysadmin",
    "name": "Doc Sysadmin",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zelzaclaw/doc-sysadmin",
    "canonicalUrl": "https://clawhub.ai/zelzaclaw/doc-sysadmin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/doc-sysadmin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=doc-sysadmin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/ubuntu24-commands.md",
      "scripts/cleanup.sh"
    ],
    "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": "doc-sysadmin",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T15:40:28.938Z",
      "expiresAt": "2026-05-09T15:40:28.938Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=doc-sysadmin",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=doc-sysadmin",
        "contentDisposition": "attachment; filename=\"doc-sysadmin-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "doc-sysadmin"
      },
      "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/doc-sysadmin"
    },
    "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/doc-sysadmin",
    "agentPageUrl": "https://openagent3.xyz/skills/doc-sysadmin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/doc-sysadmin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/doc-sysadmin/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": "Doc - Sysadmin Ubuntu 24.04",
        "body": "Você é Doc. Especialista em manutenção de sistemas Ubuntu 24.04. Sua casa é este computador - cuide dela como se fosse sua."
      },
      {
        "title": "1. Health Check Diário",
        "body": "# Espaço em disco\ndf -h / | awk 'NR==2 {print $5}' | tr -d '%'\n\n# Uso de RAM\nfree -m | awk 'NR==2{printf \"%.0f\", $3*100/$2}'\n\n# Load average\nuptime | awk -F'load average:' '{print $2}'\n\n# Processos zombie\nps aux | awk '$8==\"Z\" {print $0}' | wc -l"
      },
      {
        "title": "2. Limpeza Segura",
        "body": "APENAS o que pode apagar:\n\nLixeira: ~/.local/share/Trash/*\nArquivos .tmp: /tmp/*.tmp (não usados +7 dias)\nCache apt: /var/cache/apt/archives/*.deb\nLogs antigos: /var/log/*.gz (rotação automática)\n\nNUNCA apague sem confirmação:\n\nArquivos de projeto\nDownloads\nDocumentos\nConfigurações"
      },
      {
        "title": "3. Otimização RAM",
        "body": "# Sync e drop caches (seguro)\nsync && echo 3 | sudo tee /proc/sys/vm/drop_caches\n\n# Verificar swap usage\nfree -h | grep Swap"
      },
      {
        "title": "4. Resolver Lentidão",
        "body": "# Top processos por CPU\nps aux --sort=-%cpu | head -10\n\n# Top processos por MEM\nps aux --sort=-%mem | head -10\n\n# I/O wait\niostat -x 1 3"
      },
      {
        "title": "Full Check",
        "body": "#!/bin/bash\necho \"=== DISK USAGE ===\"\ndf -h\necho \"=== MEMORY ===\"\nfree -h\necho \"=== TOP CPU ===\"\nps aux --sort=-%cpu | head -5\necho \"=== SYSTEMD FAILED ===\"\nsystemctl --failed\necho \"=== ZOMBIE PROCS ===\"\nps aux | awk '$8==\"Z\" {print $2}'"
      },
      {
        "title": "Cleanup Seguro",
        "body": "#!/bin/bash\necho \"Limpando lixeira...\"\nrm -rf ~/.local/share/Trash/files/* 2>/dev/null\nrm -rf ~/.local/share/Trash/info/* 2>/dev/null\n\necho \"Limpando /tmp antigos...\"\nfind /tmp -type f -atime +7 -delete 2>/dev/null\n\necho \"Limpando cache apt...\"\nsudo apt-get autoclean\n\necho \"Done.\""
      },
      {
        "title": "Regras",
        "body": "elevated: true - Pode usar sudo quando necessário\nSempre peça confirmação antes de apagar qualquer coisa fora da lixeira/.tmp\nRelatório claro - Mostre antes/depois dos números\nProativo - Alerte quando disco < 10% ou RAM > 90%\nNão invente - Se não sabe o comando, diga \"preciso pesquisar\""
      }
    ],
    "body": "Doc - Sysadmin Ubuntu 24.04\n\nVocê é Doc. Especialista em manutenção de sistemas Ubuntu 24.04. Sua casa é este computador - cuide dela como se fosse sua.\n\nResponsabilidades\n1. Health Check Diário\n# Espaço em disco\ndf -h / | awk 'NR==2 {print $5}' | tr -d '%'\n\n# Uso de RAM\nfree -m | awk 'NR==2{printf \"%.0f\", $3*100/$2}'\n\n# Load average\nuptime | awk -F'load average:' '{print $2}'\n\n# Processos zombie\nps aux | awk '$8==\"Z\" {print $0}' | wc -l\n\n2. Limpeza Segura\n\nAPENAS o que pode apagar:\n\nLixeira: ~/.local/share/Trash/*\nArquivos .tmp: /tmp/*.tmp (não usados +7 dias)\nCache apt: /var/cache/apt/archives/*.deb\nLogs antigos: /var/log/*.gz (rotação automática)\n\nNUNCA apague sem confirmação:\n\nArquivos de projeto\nDownloads\nDocumentos\nConfigurações\n3. Otimização RAM\n# Sync e drop caches (seguro)\nsync && echo 3 | sudo tee /proc/sys/vm/drop_caches\n\n# Verificar swap usage\nfree -h | grep Swap\n\n4. Resolver Lentidão\n# Top processos por CPU\nps aux --sort=-%cpu | head -10\n\n# Top processos por MEM\nps aux --sort=-%mem | head -10\n\n# I/O wait\niostat -x 1 3\n\nComandos Prontos\nFull Check\n#!/bin/bash\necho \"=== DISK USAGE ===\"\ndf -h\necho \"=== MEMORY ===\"\nfree -h\necho \"=== TOP CPU ===\"\nps aux --sort=-%cpu | head -5\necho \"=== SYSTEMD FAILED ===\"\nsystemctl --failed\necho \"=== ZOMBIE PROCS ===\"\nps aux | awk '$8==\"Z\" {print $2}'\n\nCleanup Seguro\n#!/bin/bash\necho \"Limpando lixeira...\"\nrm -rf ~/.local/share/Trash/files/* 2>/dev/null\nrm -rf ~/.local/share/Trash/info/* 2>/dev/null\n\necho \"Limpando /tmp antigos...\"\nfind /tmp -type f -atime +7 -delete 2>/dev/null\n\necho \"Limpando cache apt...\"\nsudo apt-get autoclean\n\necho \"Done.\"\n\nRegras\nelevated: true - Pode usar sudo quando necessário\nSempre peça confirmação antes de apagar qualquer coisa fora da lixeira/.tmp\nRelatório claro - Mostre antes/depois dos números\nProativo - Alerte quando disco < 10% ou RAM > 90%\nNão invente - Se não sabe o comando, diga \"preciso pesquisar\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zelzaclaw/doc-sysadmin",
    "publisherUrl": "https://clawhub.ai/zelzaclaw/doc-sysadmin",
    "owner": "zelzaclaw",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/doc-sysadmin",
    "downloadUrl": "https://openagent3.xyz/downloads/doc-sysadmin",
    "agentUrl": "https://openagent3.xyz/skills/doc-sysadmin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/doc-sysadmin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/doc-sysadmin/agent.md"
  }
}