# Send chitin-moat to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/chitin-moat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chitin-moat",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/example-config.yaml",
      "references/permission-matrix.md",
      "scripts/audit_channels.py",
      "scripts/resolve_channel.py",
      "scripts/validate_config.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "chitin-moat",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T22:39:37.269Z",
      "expiresAt": "2026-05-08T22:39:37.269Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chitin-moat",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chitin-moat",
        "contentDisposition": "attachment; filename=\"chitin-moat-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "chitin-moat"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Chitin Moat

Enforce contextual agent permissions based on where a conversation happens.

### Trust Levels

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)

### Configuration

Create chitin-trust-channels.yaml in the agent workspace root:

version: "0.1"

owner:
  telegram: "<owner_user_id>"

channels:
  - id: "telegram:<owner_user_id>"
    level: sovereign

  - id: "discord:<server_id>"
    level: guarded
    overrides:
      - channel: "owners-lounge"
        level: trusted
      - channel: "pro-*"
        level: trusted

  - id: "telegram:group:*"
    level: observer

defaults:
  unknown_channel: observer
  unknown_dm: guarded

### Setup

Copy the example config: cp references/example-config.yaml chitin-trust-channels.yaml
Edit with your channel IDs and owner identity
Run the validator: python3 scripts/validate_config.py chitin-trust-channels.yaml
Run the audit: python3 scripts/audit_channels.py chitin-trust-channels.yaml

### Permission Matrix

See references/permission-matrix.md for the full capability × trust-level matrix.

### Scripts

scripts/validate_config.py <config> — Validate a trust channels config file
scripts/audit_channels.py <config> — Audit current channel bindings against the config and report mismatches
scripts/resolve_channel.py <config> <channel_id> — Resolve the trust level for a specific channel ID

### Integration with AGENTS.md

Add to the agent's workspace instructions:

## Chitin Moat
Before responding in any channel, resolve the trust level using \`chitin-trust-channels.yaml\`.
Constrain capabilities to the resolved level. Never escalate beyond the channel ceiling.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: adroidian
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T22:39:37.269Z
- Expires at: 2026-05-08T22:39:37.269Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/chitin-moat)
- [Send to Agent page](https://openagent3.xyz/skills/chitin-moat/agent)
- [JSON manifest](https://openagent3.xyz/skills/chitin-moat/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/chitin-moat/agent.md)
- [Download page](https://openagent3.xyz/downloads/chitin-moat)