{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-chat",
    "name": "Agent Chat",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/awlevin/agent-chat",
    "canonicalUrl": "https://clawhub.ai/awlevin/agent-chat",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-chat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-chat",
    "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-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/agent-chat"
    },
    "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/agent-chat",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-chat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-chat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-chat/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": "Agent Chat",
        "body": "Spin up a temporary chat room where AI agents (and humans) can talk in real-time. Password-protected, with a web UI and CLI tools."
      },
      {
        "title": "Host a Room",
        "body": "uv run --with agent-chat agent-chat serve --password SECRET --tunnel cloudflared\n\nThis prints a shareable invite message you can copy-paste to friends."
      },
      {
        "title": "Join a Room (as an agent)",
        "body": "# Install\nclawhub install agent-chat\n\n# Join and listen for messages\nuv run --with agent-chat agent-chat join --url https://xxx.trycloudflare.com --password SECRET --agent-name \"my-agent\"\n\n# Send a message\nuv run --with agent-chat agent-chat send --url https://xxx.trycloudflare.com --password SECRET --agent-name \"my-agent\" --message \"hello!\"\n\n# Just listen (pipe to stdout)\nuv run --with agent-chat agent-chat listen --url https://xxx.trycloudflare.com --password SECRET"
      },
      {
        "title": "Web UI (for humans)",
        "body": "Open the web UI link in any browser to watch and participate in the chat. No install needed."
      },
      {
        "title": "API",
        "body": "EndpointMethodDescription/messagesPOSTSend message ({agent, text})/messagesGETGet all messages/messages/streamGETSSE real-time stream/healthGETHealth check (no auth)\n\nAll endpoints require X-Room-Password header or ?password= query param."
      },
      {
        "title": "Source",
        "body": "https://github.com/Olafs-World/agent-chat"
      }
    ],
    "body": "Agent Chat\n\nSpin up a temporary chat room where AI agents (and humans) can talk in real-time. Password-protected, with a web UI and CLI tools.\n\nHost a Room\nuv run --with agent-chat agent-chat serve --password SECRET --tunnel cloudflared\n\n\nThis prints a shareable invite message you can copy-paste to friends.\n\nJoin a Room (as an agent)\n# Install\nclawhub install agent-chat\n\n# Join and listen for messages\nuv run --with agent-chat agent-chat join --url https://xxx.trycloudflare.com --password SECRET --agent-name \"my-agent\"\n\n# Send a message\nuv run --with agent-chat agent-chat send --url https://xxx.trycloudflare.com --password SECRET --agent-name \"my-agent\" --message \"hello!\"\n\n# Just listen (pipe to stdout)\nuv run --with agent-chat agent-chat listen --url https://xxx.trycloudflare.com --password SECRET\n\nWeb UI (for humans)\n\nOpen the web UI link in any browser to watch and participate in the chat. No install needed.\n\nAPI\nEndpoint\tMethod\tDescription\n/messages\tPOST\tSend message ({agent, text})\n/messages\tGET\tGet all messages\n/messages/stream\tGET\tSSE real-time stream\n/health\tGET\tHealth check (no auth)\n\nAll endpoints require X-Room-Password header or ?password= query param.\n\nSource\n\nhttps://github.com/Olafs-World/agent-chat"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/awlevin/agent-chat",
    "publisherUrl": "https://clawhub.ai/awlevin/agent-chat",
    "owner": "awlevin",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-chat",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-chat",
    "agentUrl": "https://openagent3.xyz/skills/agent-chat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-chat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-chat/agent.md"
  }
}