{
  "schemaVersion": "1.0",
  "item": {
    "slug": "chitin-moat",
    "name": "chitin-moat",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/adroidian/chitin-moat",
    "canonicalUrl": "https://clawhub.ai/adroidian/chitin-moat",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/chitin-moat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chitin-moat",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/example-config.yaml",
      "references/permission-matrix.md",
      "scripts/audit_channels.py",
      "scripts/resolve_channel.py",
      "scripts/validate_config.py"
    ],
    "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/chitin-moat"
    },
    "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/chitin-moat",
    "agentPageUrl": "https://openagent3.xyz/skills/chitin-moat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chitin-moat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chitin-moat/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": "Chitin Moat",
        "body": "Enforce contextual agent permissions based on where a conversation happens."
      },
      {
        "title": "Trust Levels",
        "body": "LevelNameCapabilities0sovereignFull autonomy (1:1 with verified owner)1trustedRead/write, scoped tools, no secrets (private known group)2guardedRespond on @mention only, no tools (semi-public)3observerReact only (public channels)4silentNo interaction (blocked surfaces)"
      },
      {
        "title": "Configuration",
        "body": "Create chitin-trust-channels.yaml in the agent workspace root:\n\nversion: \"0.1\"\n\nowner:\n  telegram: \"<owner_user_id>\"\n\nchannels:\n  - id: \"telegram:<owner_user_id>\"\n    level: sovereign\n\n  - id: \"discord:<server_id>\"\n    level: guarded\n    overrides:\n      - channel: \"owners-lounge\"\n        level: trusted\n      - channel: \"pro-*\"\n        level: trusted\n\n  - id: \"telegram:group:*\"\n    level: observer\n\ndefaults:\n  unknown_channel: observer\n  unknown_dm: guarded"
      },
      {
        "title": "Setup",
        "body": "Copy the example config: cp references/example-config.yaml chitin-trust-channels.yaml\nEdit with your channel IDs and owner identity\nRun the validator: python3 scripts/validate_config.py chitin-trust-channels.yaml\nRun the audit: python3 scripts/audit_channels.py chitin-trust-channels.yaml"
      },
      {
        "title": "Permission Matrix",
        "body": "See references/permission-matrix.md for the full capability × trust-level matrix."
      },
      {
        "title": "Scripts",
        "body": "scripts/validate_config.py <config> — Validate a trust channels config file\nscripts/audit_channels.py <config> — Audit current channel bindings against the config and report mismatches\nscripts/resolve_channel.py <config> <channel_id> — Resolve the trust level for a specific channel ID"
      },
      {
        "title": "Integration with AGENTS.md",
        "body": "Add to the agent's workspace instructions:\n\n## Chitin Moat\nBefore responding in any channel, resolve the trust level using `chitin-trust-channels.yaml`.\nConstrain capabilities to the resolved level. Never escalate beyond the channel ceiling."
      }
    ],
    "body": "Chitin Moat\n\nEnforce contextual agent permissions based on where a conversation happens.\n\nTrust Levels\nLevel\tName\tCapabilities\n0\tsovereign\tFull autonomy (1:1 with verified owner)\n1\ttrusted\tRead/write, scoped tools, no secrets (private known group)\n2\tguarded\tRespond on @mention only, no tools (semi-public)\n3\tobserver\tReact only (public channels)\n4\tsilent\tNo interaction (blocked surfaces)\nConfiguration\n\nCreate chitin-trust-channels.yaml in the agent workspace root:\n\nversion: \"0.1\"\n\nowner:\n  telegram: \"<owner_user_id>\"\n\nchannels:\n  - id: \"telegram:<owner_user_id>\"\n    level: sovereign\n\n  - id: \"discord:<server_id>\"\n    level: guarded\n    overrides:\n      - channel: \"owners-lounge\"\n        level: trusted\n      - channel: \"pro-*\"\n        level: trusted\n\n  - id: \"telegram:group:*\"\n    level: observer\n\ndefaults:\n  unknown_channel: observer\n  unknown_dm: guarded\n\nSetup\nCopy the example config: cp references/example-config.yaml chitin-trust-channels.yaml\nEdit with your channel IDs and owner identity\nRun the validator: python3 scripts/validate_config.py chitin-trust-channels.yaml\nRun the audit: python3 scripts/audit_channels.py chitin-trust-channels.yaml\nPermission Matrix\n\nSee references/permission-matrix.md for the full capability × trust-level matrix.\n\nScripts\nscripts/validate_config.py <config> — Validate a trust channels config file\nscripts/audit_channels.py <config> — Audit current channel bindings against the config and report mismatches\nscripts/resolve_channel.py <config> <channel_id> — Resolve the trust level for a specific channel ID\nIntegration with AGENTS.md\n\nAdd to the agent's workspace instructions:\n\n## Chitin Moat\nBefore responding in any channel, resolve the trust level using `chitin-trust-channels.yaml`.\nConstrain capabilities to the resolved level. Never escalate beyond the channel ceiling."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/adroidian/chitin-moat",
    "publisherUrl": "https://clawhub.ai/adroidian/chitin-moat",
    "owner": "adroidian",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/chitin-moat",
    "downloadUrl": "https://openagent3.xyz/downloads/chitin-moat",
    "agentUrl": "https://openagent3.xyz/skills/chitin-moat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chitin-moat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chitin-moat/agent.md"
  }
}