{
  "schemaVersion": "1.0",
  "item": {
    "slug": "group-activation",
    "name": "Group Activation",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/seanblanchfield/group-activation",
    "canonicalUrl": "https://clawhub.ai/seanblanchfield/group-activation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/group-activation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=group-activation",
    "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/group-activation"
    },
    "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/group-activation",
    "agentPageUrl": "https://openagent3.xyz/skills/group-activation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/group-activation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/group-activation/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": "Group Activation",
        "body": "When the owner tags you into a group on any messaging platform, follow this procedure."
      },
      {
        "title": "Prerequisites",
        "body": "channels.<platform>.groupPolicy, groupAllowFrom, and groups.*.requireMention are set so that only the owner can wake you in any group. Trigger phrases are defined in agents.list[main].groupChat.mentionPatterns. This applies to WhatsApp, Signal, Telegram, and other supported platforms."
      },
      {
        "title": "Procedure",
        "body": "Step 1 — Capture context\n\nFrom the inbound message metadata: platform (e.g. whatsapp, signal), group ID (the chat_id / from field), and duration (parse from the owner's message — default 30 minutes if unspecified).\n\nStep 2 — Open the gate\n\nPatch channels.<platform>.groups.<group_id>.requireMention to false in openclaw.json. The gateway file-watches the config and hot-reloads channel changes automatically — no restart needed.\n\nStep 3 — Respond naturally\n\nSay hi, introduce yourself briefly if it's a new group. Participate like a human in a group chat — use judgment about when to contribute. Do not respond to every message.\n\nStep 4 — Set a closing cron job\n\nCreate a one-shot cron job (kind: \"at\") for the parsed duration. When it fires: patch requireMention back to true for this group in openclaw.json, then send a brief goodbye to the group. The gateway hot-reloads and the gate closes — no owner action needed.\n\nStep 5 — Confirm\n\nTell the owner the window is open and when it closes: \"Joined! I'll be here for 60 minutes — going quiet at 4:19 PM.\""
      },
      {
        "title": "Controls",
        "body": "Extend: owner says @<agent> stay for another X mins → cancel existing cron, set a new one\nClose early: owner says @<agent> that's enough / close → patch requireMention: true immediately, cancel cron, say goodbye"
      },
      {
        "title": "Notes",
        "body": "Group ID is in inbound message metadata (chat_id / from field)\nConfig changes hot-reload — no gateway restart or Docker restart needed\nWhen closing, remove the specific group entry from groups or set requireMention: true to return to the wildcard default"
      }
    ],
    "body": "Group Activation\n\nWhen the owner tags you into a group on any messaging platform, follow this procedure.\n\nPrerequisites\n\nchannels.<platform>.groupPolicy, groupAllowFrom, and groups.*.requireMention are set so that only the owner can wake you in any group. Trigger phrases are defined in agents.list[main].groupChat.mentionPatterns. This applies to WhatsApp, Signal, Telegram, and other supported platforms.\n\nProcedure\n\nStep 1 — Capture context\n\nFrom the inbound message metadata: platform (e.g. whatsapp, signal), group ID (the chat_id / from field), and duration (parse from the owner's message — default 30 minutes if unspecified).\n\nStep 2 — Open the gate\n\nPatch channels.<platform>.groups.<group_id>.requireMention to false in openclaw.json. The gateway file-watches the config and hot-reloads channel changes automatically — no restart needed.\n\nStep 3 — Respond naturally\n\nSay hi, introduce yourself briefly if it's a new group. Participate like a human in a group chat — use judgment about when to contribute. Do not respond to every message.\n\nStep 4 — Set a closing cron job\n\nCreate a one-shot cron job (kind: \"at\") for the parsed duration. When it fires: patch requireMention back to true for this group in openclaw.json, then send a brief goodbye to the group. The gateway hot-reloads and the gate closes — no owner action needed.\n\nStep 5 — Confirm\n\nTell the owner the window is open and when it closes: \"Joined! I'll be here for 60 minutes — going quiet at 4:19 PM.\"\n\nControls\nExtend: owner says @<agent> stay for another X mins → cancel existing cron, set a new one\nClose early: owner says @<agent> that's enough / close → patch requireMention: true immediately, cancel cron, say goodbye\nNotes\nGroup ID is in inbound message metadata (chat_id / from field)\nConfig changes hot-reload — no gateway restart or Docker restart needed\nWhen closing, remove the specific group entry from groups or set requireMention: true to return to the wildcard default"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/seanblanchfield/group-activation",
    "publisherUrl": "https://clawhub.ai/seanblanchfield/group-activation",
    "owner": "seanblanchfield",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/group-activation",
    "downloadUrl": "https://openagent3.xyz/downloads/group-activation",
    "agentUrl": "https://openagent3.xyz/skills/group-activation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/group-activation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/group-activation/agent.md"
  }
}