{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arc-sentinel",
    "name": "Arc Sentinel",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/arc-claw-bot/arc-sentinel",
    "canonicalUrl": "https://clawhub.ai/arc-claw-bot/arc-sentinel",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arc-sentinel",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-sentinel",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "credential-tracker.json",
      "package.json",
      "scripts/full-audit.sh",
      "scripts/git-hygiene.sh",
      "scripts/permission-auditor.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/arc-sentinel"
    },
    "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/arc-sentinel",
    "agentPageUrl": "https://openagent3.xyz/skills/arc-sentinel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-sentinel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-sentinel/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": "Arc Sentinel",
        "body": "Security monitoring toolkit for OpenClaw agents. Runs automated checks against your infrastructure and reports issues."
      },
      {
        "title": "Configuration",
        "body": "Before first use, create sentinel.conf in the skill directory:\n\ncp sentinel.conf.example sentinel.conf\n\nEdit sentinel.conf with your values:\n\nDOMAINS — Space-separated list of domains to check SSL certificates\nGITHUB_USER — GitHub username for repo audits\nKNOWN_REPOS — Space-separated list of expected repo names (unexpected repos trigger warnings)\nMONITOR_EMAIL — Email address for HaveIBeenPwned breach checks\nHIBP_API_KEY — Optional; HIBP v3 API key ($3.50/mo) for automated breach lookups\n\nAlso customize credential-tracker.json with your own credentials and rotation policies. A template is provided."
      },
      {
        "title": "Full scan",
        "body": "cd <skill-dir>\nbash sentinel.sh"
      },
      {
        "title": "Output",
        "body": "Formatted report to stdout with color-coded severity\nJSON report saved to reports/YYYY-MM-DD.json\nExit codes: 0 = all clear, 1 = warnings, 2 = critical"
      },
      {
        "title": "1. SSL Certificate Expiry",
        "body": "Check certificate expiry for configured domains. Warns at <30 days, critical at <14 days."
      },
      {
        "title": "2. GitHub Security",
        "body": "List repos and check Dependabot/vulnerability alert status\nReview recent account activity for anomalies\nFlag unexpected repositories"
      },
      {
        "title": "3. Breach Monitoring (HaveIBeenPwned)",
        "body": "Query HIBP API for breached accounts (requires API key)\nFalls back to manual check URL if no key is set"
      },
      {
        "title": "4. Credential Rotation Tracking",
        "body": "Read credential-tracker.json and flag credentials that are overdue, approaching expiry, or never rotated. Supports policies: quarterly (90d), 6_months (180d), annual (365d), auto."
      },
      {
        "title": "Additional Scripts",
        "body": "ScriptPurposescripts/secret-scanner.shScan repos/files for leaked secrets and API keysscripts/git-hygiene.shAudit git history for security issuesscripts/token-watchdog.shMonitor token validity and expiryscripts/permission-auditor.shAudit file and access permissionsscripts/skill-auditor.shAudit installed skills for securityscripts/full-audit.shRun all scripts in sequence"
      },
      {
        "title": "Agent Usage",
        "body": "During heartbeats or on request:\n\nRun bash sentinel.sh from the skill directory\nReview output for WARN or CRITICAL items\nReport findings to the human if anything needs attention\nUpdate credential-tracker.json when credentials are rotated"
      },
      {
        "title": "Cron Setup",
        "body": "# Weekly Monday 9am\n0 9 * * 1 cd /path/to/arc-sentinel && bash sentinel.sh >> reports/cron.log 2>&1"
      },
      {
        "title": "Requirements",
        "body": "openssl (SSL checks)\ngh CLI authenticated (GitHub checks)\ncurl (HIBP)\npython3 (JSON processing)"
      }
    ],
    "body": "Arc Sentinel\n\nSecurity monitoring toolkit for OpenClaw agents. Runs automated checks against your infrastructure and reports issues.\n\nConfiguration\n\nBefore first use, create sentinel.conf in the skill directory:\n\ncp sentinel.conf.example sentinel.conf\n\n\nEdit sentinel.conf with your values:\n\nDOMAINS — Space-separated list of domains to check SSL certificates\nGITHUB_USER — GitHub username for repo audits\nKNOWN_REPOS — Space-separated list of expected repo names (unexpected repos trigger warnings)\nMONITOR_EMAIL — Email address for HaveIBeenPwned breach checks\nHIBP_API_KEY — Optional; HIBP v3 API key ($3.50/mo) for automated breach lookups\n\nAlso customize credential-tracker.json with your own credentials and rotation policies. A template is provided.\n\nQuick Start\nFull scan\ncd <skill-dir>\nbash sentinel.sh\n\nOutput\nFormatted report to stdout with color-coded severity\nJSON report saved to reports/YYYY-MM-DD.json\nExit codes: 0 = all clear, 1 = warnings, 2 = critical\nChecks\n1. SSL Certificate Expiry\n\nCheck certificate expiry for configured domains. Warns at <30 days, critical at <14 days.\n\n2. GitHub Security\nList repos and check Dependabot/vulnerability alert status\nReview recent account activity for anomalies\nFlag unexpected repositories\n3. Breach Monitoring (HaveIBeenPwned)\nQuery HIBP API for breached accounts (requires API key)\nFalls back to manual check URL if no key is set\n4. Credential Rotation Tracking\n\nRead credential-tracker.json and flag credentials that are overdue, approaching expiry, or never rotated. Supports policies: quarterly (90d), 6_months (180d), annual (365d), auto.\n\nAdditional Scripts\nScript\tPurpose\nscripts/secret-scanner.sh\tScan repos/files for leaked secrets and API keys\nscripts/git-hygiene.sh\tAudit git history for security issues\nscripts/token-watchdog.sh\tMonitor token validity and expiry\nscripts/permission-auditor.sh\tAudit file and access permissions\nscripts/skill-auditor.sh\tAudit installed skills for security\nscripts/full-audit.sh\tRun all scripts in sequence\nAgent Usage\n\nDuring heartbeats or on request:\n\nRun bash sentinel.sh from the skill directory\nReview output for WARN or CRITICAL items\nReport findings to the human if anything needs attention\nUpdate credential-tracker.json when credentials are rotated\nCron Setup\n# Weekly Monday 9am\n0 9 * * 1 cd /path/to/arc-sentinel && bash sentinel.sh >> reports/cron.log 2>&1\n\nRequirements\nopenssl (SSL checks)\ngh CLI authenticated (GitHub checks)\ncurl (HIBP)\npython3 (JSON processing)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/arc-claw-bot/arc-sentinel",
    "publisherUrl": "https://clawhub.ai/arc-claw-bot/arc-sentinel",
    "owner": "arc-claw-bot",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arc-sentinel",
    "downloadUrl": "https://openagent3.xyz/downloads/arc-sentinel",
    "agentUrl": "https://openagent3.xyz/skills/arc-sentinel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-sentinel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-sentinel/agent.md"
  }
}