{
  "schemaVersion": "1.0",
  "item": {
    "slug": "consensus-deployment-guard",
    "name": "consensus-deployment-guard",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kaicianflone/consensus-deployment-guard",
    "canonicalUrl": "https://clawhub.ai/kaicianflone/consensus-deployment-guard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/consensus-deployment-guard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=consensus-deployment-guard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SECURITY-ASSURANCE.md",
      "SKILL.md",
      "examples/input.json",
      "metadata.json",
      "package-lock.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/consensus-deployment-guard"
    },
    "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/consensus-deployment-guard",
    "agentPageUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "consensus-deployment-guard",
        "body": "consensus-deployment-guard is the final safety gate before deployment execution."
      },
      {
        "title": "What this skill does",
        "body": "validates deployment requests against a strict JSON schema (reject unknown fields)\nevaluates hard-block and rewrite policy flags for release risk patterns\nruns deterministic persona-weighted voting (or aggregates external votes)\nreturns one of: ALLOW | BLOCK | REQUIRE_REWRITE\nwrites decision artifacts for replay/audit"
      },
      {
        "title": "Decision policy shape",
        "body": "Hard-block examples:\n\nrequired tests not passing\nCI status failed\nrollback artifact missing when required\nincompatible schema migration\nerror budget already breached\n\nRewrite examples:\n\nproduction rollout not using canary when policy requires it\ninitial rollout percentage above policy limit\nproduction deploy missing explicit human confirmation gate\nCI still pending\nschema compatibility unknown"
      },
      {
        "title": "Runtime and safety model",
        "body": "runtime binaries: node, tsx\nnetwork behavior: none in guard decision logic\nenvironment config read by this package: CONSENSUS_STATE_FILE, CONSENSUS_STATE_ROOT\nfilesystem writes: consensus board/state artifacts under configured state path"
      },
      {
        "title": "Invoke contract",
        "body": "invoke(input, opts?) -> Promise<OutputJson | ErrorJson>\n\nModes:\n\nmode=\"persona\" (default): use local deterministic persona defaults for internal voting\nmode=\"external_agent\": consume external_votes[], aggregate deterministically, and enforce policy"
      },
      {
        "title": "Install",
        "body": "npm i consensus-deployment-guard"
      },
      {
        "title": "Quick start",
        "body": "node --import tsx run.js --input ./examples/input.json"
      },
      {
        "title": "Tests",
        "body": "npm test\n\nCoverage includes schema rejection, hard-block paths, rewrite paths, allow paths, idempotent retries, and external-agent aggregation behavior.\n\nSee also: SECURITY-ASSURANCE.md for threat model, runtime boundaries, and deployment hardening guidance."
      }
    ],
    "body": "consensus-deployment-guard\n\nconsensus-deployment-guard is the final safety gate before deployment execution.\n\nWhat this skill does\nvalidates deployment requests against a strict JSON schema (reject unknown fields)\nevaluates hard-block and rewrite policy flags for release risk patterns\nruns deterministic persona-weighted voting (or aggregates external votes)\nreturns one of: ALLOW | BLOCK | REQUIRE_REWRITE\nwrites decision artifacts for replay/audit\nDecision policy shape\n\nHard-block examples:\n\nrequired tests not passing\nCI status failed\nrollback artifact missing when required\nincompatible schema migration\nerror budget already breached\n\nRewrite examples:\n\nproduction rollout not using canary when policy requires it\ninitial rollout percentage above policy limit\nproduction deploy missing explicit human confirmation gate\nCI still pending\nschema compatibility unknown\nRuntime and safety model\nruntime binaries: node, tsx\nnetwork behavior: none in guard decision logic\nenvironment config read by this package: CONSENSUS_STATE_FILE, CONSENSUS_STATE_ROOT\nfilesystem writes: consensus board/state artifacts under configured state path\nInvoke contract\ninvoke(input, opts?) -> Promise<OutputJson | ErrorJson>\n\nModes:\n\nmode=\"persona\" (default): use local deterministic persona defaults for internal voting\nmode=\"external_agent\": consume external_votes[], aggregate deterministically, and enforce policy\nInstall\nnpm i consensus-deployment-guard\n\nQuick start\nnode --import tsx run.js --input ./examples/input.json\n\nTests\nnpm test\n\n\nCoverage includes schema rejection, hard-block paths, rewrite paths, allow paths, idempotent retries, and external-agent aggregation behavior.\n\nSee also: SECURITY-ASSURANCE.md for threat model, runtime boundaries, and deployment hardening guidance."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kaicianflone/consensus-deployment-guard",
    "publisherUrl": "https://clawhub.ai/kaicianflone/consensus-deployment-guard",
    "owner": "kaicianflone",
    "version": "0.1.10",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/consensus-deployment-guard",
    "downloadUrl": "https://openagent3.xyz/downloads/consensus-deployment-guard",
    "agentUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/consensus-deployment-guard/agent.md"
  }
}