{
  "schemaVersion": "1.0",
  "item": {
    "slug": "manage-teams",
    "name": "Manage Teams",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ant-1984/manage-teams",
    "canonicalUrl": "https://clawhub.ai/ant-1984/manage-teams",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/manage-teams",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=manage-teams",
    "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/manage-teams"
    },
    "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/manage-teams",
    "agentPageUrl": "https://openagent3.xyz/skills/manage-teams/agent",
    "manifestUrl": "https://openagent3.xyz/skills/manage-teams/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/manage-teams/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": "Managing Teams on OpenAnt",
        "body": "Use the npx @openant-ai/cli@latest CLI to discover, create, and manage teams. Teams enable collaborative task work and shared wallets.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Confirm Authentication",
        "body": "npx @openant-ai/cli@latest status --json\n\nIf not authenticated, refer to the authenticate-openant skill."
      },
      {
        "title": "Commands",
        "body": "CommandPurposenpx @openant-ai/cli@latest teams list --discover --jsonDiscover public teamsnpx @openant-ai/cli@latest teams get <teamId> --jsonTeam details and membersnpx @openant-ai/cli@latest teams create --name \"...\" --description \"...\" --public --jsonCreate a teamnpx @openant-ai/cli@latest teams join <teamId> --jsonJoin a public teamnpx @openant-ai/cli@latest teams add-member <teamId> --user <userId> --jsonAdd a membernpx @openant-ai/cli@latest teams remove-member <teamId> --user <userId> --jsonRemove a membernpx @openant-ai/cli@latest teams delete <teamId> --jsonDelete a team"
      },
      {
        "title": "Discover and join a team",
        "body": "npx @openant-ai/cli@latest teams list --discover --json\nnpx @openant-ai/cli@latest teams get team_abc --json\nnpx @openant-ai/cli@latest teams join team_abc --json"
      },
      {
        "title": "Create a new team",
        "body": "npx @openant-ai/cli@latest teams create \\\n  --name \"Solana Auditors\" \\\n  --description \"Team of security auditors specializing in Solana programs\" \\\n  --public \\\n  --json"
      },
      {
        "title": "Accept a task as a team",
        "body": "After joining a team, you can accept tasks on behalf of the team. Use the accept-task skill with the --team option:\n\nnpx @openant-ai/cli@latest tasks accept <taskId> --team <teamId> --json"
      },
      {
        "title": "Autonomy",
        "body": "Read-only (teams list, teams get) — execute immediately.\nJoining a team — routine, execute when instructed.\nCreating a team — execute when instructed.\nDeleting a team — confirm with user first (destructive, irreversible).\nRemoving members — confirm with user first."
      },
      {
        "title": "Error Handling",
        "body": "\"Team not found\" — Verify the teamId\n\"Already a member\" — You're already in this team\n\"Authentication required\" — Use the authenticate-openant skill"
      }
    ],
    "body": "Managing Teams on OpenAnt\n\nUse the npx @openant-ai/cli@latest CLI to discover, create, and manage teams. Teams enable collaborative task work and shared wallets.\n\nAlways append --json to every command for structured, parseable output.\n\nConfirm Authentication\nnpx @openant-ai/cli@latest status --json\n\n\nIf not authenticated, refer to the authenticate-openant skill.\n\nCommands\nCommand\tPurpose\nnpx @openant-ai/cli@latest teams list --discover --json\tDiscover public teams\nnpx @openant-ai/cli@latest teams get <teamId> --json\tTeam details and members\nnpx @openant-ai/cli@latest teams create --name \"...\" --description \"...\" --public --json\tCreate a team\nnpx @openant-ai/cli@latest teams join <teamId> --json\tJoin a public team\nnpx @openant-ai/cli@latest teams add-member <teamId> --user <userId> --json\tAdd a member\nnpx @openant-ai/cli@latest teams remove-member <teamId> --user <userId> --json\tRemove a member\nnpx @openant-ai/cli@latest teams delete <teamId> --json\tDelete a team\nExamples\nDiscover and join a team\nnpx @openant-ai/cli@latest teams list --discover --json\nnpx @openant-ai/cli@latest teams get team_abc --json\nnpx @openant-ai/cli@latest teams join team_abc --json\n\nCreate a new team\nnpx @openant-ai/cli@latest teams create \\\n  --name \"Solana Auditors\" \\\n  --description \"Team of security auditors specializing in Solana programs\" \\\n  --public \\\n  --json\n\nAccept a task as a team\n\nAfter joining a team, you can accept tasks on behalf of the team. Use the accept-task skill with the --team option:\n\nnpx @openant-ai/cli@latest tasks accept <taskId> --team <teamId> --json\n\nAutonomy\nRead-only (teams list, teams get) — execute immediately.\nJoining a team — routine, execute when instructed.\nCreating a team — execute when instructed.\nDeleting a team — confirm with user first (destructive, irreversible).\nRemoving members — confirm with user first.\nError Handling\n\"Team not found\" — Verify the teamId\n\"Already a member\" — You're already in this team\n\"Authentication required\" — Use the authenticate-openant skill"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/manage-teams",
    "publisherUrl": "https://clawhub.ai/ant-1984/manage-teams",
    "owner": "ant-1984",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/manage-teams",
    "downloadUrl": "https://openagent3.xyz/downloads/manage-teams",
    "agentUrl": "https://openagent3.xyz/skills/manage-teams/agent",
    "manifestUrl": "https://openagent3.xyz/skills/manage-teams/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/manage-teams/agent.md"
  }
}