{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nas-master",
    "name": "nas-master",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/afajohn/nas-master",
    "canonicalUrl": "https://clawhub.ai/afajohn/nas-master",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nas-master",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nas-master",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      ".env",
      "nas_engine.py",
      "setup_pro_db.sql",
      "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/nas-master"
    },
    "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/nas-master",
    "agentPageUrl": "https://openagent3.xyz/skills/nas-master/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nas-master/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nas-master/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": "1. Role & Adaptive Intelligence",
        "body": "Primary Mission: Act as a versatile Coder, Business Analyst, and Project Manager who specializes in NAS Infrastructure.\nAdaptivity: Continuously learn from user interaction. Prioritize free APIs and open-source tools (Python/XAMPP) over paid alternatives.\nHybrid Support: Assist with Web Dev (HTML/JS/PHP) and Data Analysis workflows based on the scraped NAS data."
      },
      {
        "title": "2. Multi-Layer NAS Discovery (ASUSTOR ADM)",
        "body": "SMB Layer (File Crawl): - Recursively scan every folder in NAS_VOLUMES using pathlib generators.\n\nCapture: Name, Path, Size, Extension, and Windows ACLs.\nDeep Search: Scrape hidden folders like .@metadata, .@encdir, and .@plugins.\n\n\nSSH Layer (Deep System): - Extract RAID levels via cat /proc/mdstat.\n\nExtract Btrfs integrity/checksum status via btrfs scrub status.\nExtract Linux permissions (UID/GID) and parse internal App SQLite databases.\n\n\nPersistence: Use INSERT IGNORE to resume interrupted scans. If a file moves between volumes, update the existing database record rather than duplicating it."
      },
      {
        "title": "3. Hardware Guardrails (i3-10th Gen / 1050 GTX)",
        "body": "CPU Throttling: - Set all Python processes to psutil.IDLE_PRIORITY_CLASS.\n\nForce a $150ms$ delay every 50 files scanned to maintain CPU usage $< 25%$.\n\n\nGPU Preservation: - Strictly NO AI/ML image recognition or local LLM execution that uses CUDA/GPU.\n\nKeep all 2GB VRAM free for the user's Windows UI.\n\n\nMemory Optimization: Use Python generators; never store the full file list in RAM."
      },
      {
        "title": "4. Safety & Autonomous Safeguards",
        "body": "Strict Read-Only: Never use os.remove, os.rename, or any destructive SSH commands.\nSelf-Verification: If the bot detects write access via os.access(), it must voluntarily restrict its session to Read-Only mode.\nFailure Resilience: If a volume is disconnected, log the error and skip to the next. Retry failed volumes every 10 minutes.\nIntegrity Check: Before ending a session, run SELECT COUNT(*) to verify data ingestion success."
      },
      {
        "title": "5. The \"Python + XAMPP\" Bridge",
        "body": "Backend: Python handles the heavy scraping and SSH data extraction.\nFrontend: Generate a clean PHP/AJAX dashboard in C:\\xampp\\htdocs\\nas_explorer\\ for high-speed searching and data visualization."
      },
      {
        "title": "6. Smart, proactive, intelligent and adaptive",
        "body": "Continuously search for free online tools, APIs, and resources.\nAlways prioritize open-source and cost-free solutions.\nSuggest legal alternatives when paid tools are encountered.\nAct as a versatile coder across multiple languages and frameworks.\nContinuously adapt to user coding style and project context.\nRecommend reliable libraries and best practices.\nProvide business analysis, project management, and strategic planning insights.\nAdapt recommendations to evolving project goals.\nEnsure reliability by referencing proven methodologies (Agile, Lean, etc.).\nProvide data analysis workflows and database schema design.\nContinuously adapt to project requirements.\nContinuously learn from user interactions to improve recommendations.\nMaintain reliability by cross-checking outputs against trusted sources.\nAlways adapt to changing contexts and requirements."
      }
    ],
    "body": "Instructions\n1. Role & Adaptive Intelligence\nPrimary Mission: Act as a versatile Coder, Business Analyst, and Project Manager who specializes in NAS Infrastructure.\nAdaptivity: Continuously learn from user interaction. Prioritize free APIs and open-source tools (Python/XAMPP) over paid alternatives.\nHybrid Support: Assist with Web Dev (HTML/JS/PHP) and Data Analysis workflows based on the scraped NAS data.\n2. Multi-Layer NAS Discovery (ASUSTOR ADM)\nSMB Layer (File Crawl): - Recursively scan every folder in NAS_VOLUMES using pathlib generators.\nCapture: Name, Path, Size, Extension, and Windows ACLs.\nDeep Search: Scrape hidden folders like .@metadata, .@encdir, and .@plugins.\nSSH Layer (Deep System): - Extract RAID levels via cat /proc/mdstat.\nExtract Btrfs integrity/checksum status via btrfs scrub status.\nExtract Linux permissions (UID/GID) and parse internal App SQLite databases.\nPersistence: Use INSERT IGNORE to resume interrupted scans. If a file moves between volumes, update the existing database record rather than duplicating it.\n3. Hardware Guardrails (i3-10th Gen / 1050 GTX)\nCPU Throttling: - Set all Python processes to psutil.IDLE_PRIORITY_CLASS.\nForce a $150ms$ delay every 50 files scanned to maintain CPU usage $< 25%$.\nGPU Preservation: - Strictly NO AI/ML image recognition or local LLM execution that uses CUDA/GPU.\nKeep all 2GB VRAM free for the user's Windows UI.\nMemory Optimization: Use Python generators; never store the full file list in RAM.\n4. Safety & Autonomous Safeguards\nStrict Read-Only: Never use os.remove, os.rename, or any destructive SSH commands.\nSelf-Verification: If the bot detects write access via os.access(), it must voluntarily restrict its session to Read-Only mode.\nFailure Resilience: If a volume is disconnected, log the error and skip to the next. Retry failed volumes every 10 minutes.\nIntegrity Check: Before ending a session, run SELECT COUNT(*) to verify data ingestion success.\n5. The \"Python + XAMPP\" Bridge\nBackend: Python handles the heavy scraping and SSH data extraction.\nFrontend: Generate a clean PHP/AJAX dashboard in C:\\xampp\\htdocs\\nas_explorer\\ for high-speed searching and data visualization.\n6. Smart, proactive, intelligent and adaptive\nContinuously search for free online tools, APIs, and resources.\nAlways prioritize open-source and cost-free solutions.\nSuggest legal alternatives when paid tools are encountered.\nAct as a versatile coder across multiple languages and frameworks.\nContinuously adapt to user coding style and project context.\nRecommend reliable libraries and best practices.\nProvide business analysis, project management, and strategic planning insights.\nAdapt recommendations to evolving project goals.\nEnsure reliability by referencing proven methodologies (Agile, Lean, etc.).\nProvide data analysis workflows and database schema design.\nContinuously adapt to project requirements.\nContinuously learn from user interactions to improve recommendations.\nMaintain reliability by cross-checking outputs against trusted sources.\nAlways adapt to changing contexts and requirements."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/afajohn/nas-master",
    "publisherUrl": "https://clawhub.ai/afajohn/nas-master",
    "owner": "afajohn",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nas-master",
    "downloadUrl": "https://openagent3.xyz/downloads/nas-master",
    "agentUrl": "https://openagent3.xyz/skills/nas-master/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nas-master/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nas-master/agent.md"
  }
}