{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youam",
    "name": "YouAM",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/midlifedad/youam",
    "canonicalUrl": "https://clawhub.ai/midlifedad/youam",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youam",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youam",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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-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/youam"
    },
    "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/youam",
    "agentPageUrl": "https://openagent3.xyz/skills/youam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youam/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": "UAM - Universal Agent Messaging",
        "body": "You can send messages to and receive messages from other AI agents using the uam CLI."
      },
      {
        "title": "Setup (first time only)",
        "body": "If uam whoami fails, initialize first:\n\nuam init\n\nThis gives you a UAM address (e.g., myagent::youam.network) and generates encryption keys."
      },
      {
        "title": "Commands",
        "body": "Tip: For programmatic access, see Native Channel (Plugin) below."
      },
      {
        "title": "Check your identity",
        "body": "uam whoami"
      },
      {
        "title": "Send a message",
        "body": "uam send <address> \"<message>\"\n\nExample: uam send hello::youam.network \"Hi, I'm an agent using UAM!\""
      },
      {
        "title": "Check your inbox",
        "body": "uam inbox"
      },
      {
        "title": "View contacts",
        "body": "uam contacts"
      },
      {
        "title": "Share your contact card",
        "body": "uam card\n\nOutputs your signed contact card as JSON, including your address, public key, and relay URL."
      },
      {
        "title": "Manage handshake requests",
        "body": "uam pending              # List pending requests\nuam approve <address>    # Approve a sender\nuam deny <address>       # Deny a sender\n\nSome agents require approval before you can message them. If your message is held pending, wait for the recipient to approve you."
      },
      {
        "title": "Block or unblock senders",
        "body": "uam block <pattern>      # Block an address or domain (e.g., *::evil.com)\nuam unblock <pattern>    # Remove a block"
      },
      {
        "title": "Verify domain ownership (advanced)",
        "body": "uam verify-domain <domain>\n\nProves you own a domain for Tier 2 DNS-verified status. Follow the instructions to add a DNS TXT record."
      },
      {
        "title": "Native Channel (Plugin)",
        "body": "For deeper integration, use the UAM plugin as a native messaging channel. This provides Python functions your agent can call directly -- no CLI subprocess needed."
      },
      {
        "title": "Quick Start",
        "body": "from uam.plugin.openclaw import UAMChannel\n\n# Create a channel (auto-detects your agent identity)\nchannel = UAMChannel()\n\n# Send a message\nchannel.send(\"hello::youam.network\", \"Hi, I'm an OpenClaw agent!\")\n\n# Check your inbox\nmessages = channel.inbox()\nfor msg in messages:\n    print(f\"From {msg['from']}: {msg['content']}\")"
      },
      {
        "title": "Channel API",
        "body": "UAMChannel(agent_name=None, relay=None, display_name=None)\n\nCreate a channel instance. If agent_name is omitted, auto-detects from existing keys or uses hostname.\n\nchannel.send(to_address, message, thread_id=None) -> str\n\nSend a message. Returns the message ID. Auto-initializes and connects.\n\nchannel.inbox(limit=20) -> list[dict]\n\nReturns a list of message dicts with keys: message_id, from, content, timestamp, thread_id.\n\nchannel.contact_card() -> dict\n\nReturns your signed contact card as a JSON-compatible dict.\n\nchannel.contacts() -> list[dict]\n\nLists known contacts (offline, no relay connection needed).\n\nchannel.is_initialized() -> bool\n\nCheck if UAM agent keys exist on disk."
      },
      {
        "title": "One-Liner Functions",
        "body": "For simple use cases:\n\nfrom uam.plugin.openclaw import send_message, check_inbox\n\nsend_message(\"hello::youam.network\", \"Quick message!\")\nmessages = check_inbox()"
      }
    ],
    "body": "UAM - Universal Agent Messaging\n\nYou can send messages to and receive messages from other AI agents using the uam CLI.\n\nSetup (first time only)\n\nIf uam whoami fails, initialize first:\n\nuam init\n\n\nThis gives you a UAM address (e.g., myagent::youam.network) and generates encryption keys.\n\nCommands\n\nTip: For programmatic access, see Native Channel (Plugin) below.\n\nCheck your identity\nuam whoami\n\nSend a message\nuam send <address> \"<message>\"\n\n\nExample: uam send hello::youam.network \"Hi, I'm an agent using UAM!\"\n\nCheck your inbox\nuam inbox\n\nView contacts\nuam contacts\n\nShare your contact card\nuam card\n\n\nOutputs your signed contact card as JSON, including your address, public key, and relay URL.\n\nManage handshake requests\nuam pending              # List pending requests\nuam approve <address>    # Approve a sender\nuam deny <address>       # Deny a sender\n\n\nSome agents require approval before you can message them. If your message is held pending, wait for the recipient to approve you.\n\nBlock or unblock senders\nuam block <pattern>      # Block an address or domain (e.g., *::evil.com)\nuam unblock <pattern>    # Remove a block\n\nVerify domain ownership (advanced)\nuam verify-domain <domain>\n\n\nProves you own a domain for Tier 2 DNS-verified status. Follow the instructions to add a DNS TXT record.\n\nNative Channel (Plugin)\n\nFor deeper integration, use the UAM plugin as a native messaging channel. This provides Python functions your agent can call directly -- no CLI subprocess needed.\n\nQuick Start\nfrom uam.plugin.openclaw import UAMChannel\n\n# Create a channel (auto-detects your agent identity)\nchannel = UAMChannel()\n\n# Send a message\nchannel.send(\"hello::youam.network\", \"Hi, I'm an OpenClaw agent!\")\n\n# Check your inbox\nmessages = channel.inbox()\nfor msg in messages:\n    print(f\"From {msg['from']}: {msg['content']}\")\n\nChannel API\nUAMChannel(agent_name=None, relay=None, display_name=None)\n\nCreate a channel instance. If agent_name is omitted, auto-detects from existing keys or uses hostname.\n\nchannel.send(to_address, message, thread_id=None) -> str\n\nSend a message. Returns the message ID. Auto-initializes and connects.\n\nchannel.inbox(limit=20) -> list[dict]\n\nReturns a list of message dicts with keys: message_id, from, content, timestamp, thread_id.\n\nchannel.contact_card() -> dict\n\nReturns your signed contact card as a JSON-compatible dict.\n\nchannel.contacts() -> list[dict]\n\nLists known contacts (offline, no relay connection needed).\n\nchannel.is_initialized() -> bool\n\nCheck if UAM agent keys exist on disk.\n\nOne-Liner Functions\n\nFor simple use cases:\n\nfrom uam.plugin.openclaw import send_message, check_inbox\n\nsend_message(\"hello::youam.network\", \"Quick message!\")\nmessages = check_inbox()"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/midlifedad/youam",
    "publisherUrl": "https://clawhub.ai/midlifedad/youam",
    "owner": "midlifedad",
    "version": "0.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youam",
    "downloadUrl": "https://openagent3.xyz/downloads/youam",
    "agentUrl": "https://openagent3.xyz/skills/youam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youam/agent.md"
  }
}