{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mission-claw",
    "name": "Mission Claw",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/tsangwailam/mission-claw",
    "canonicalUrl": "https://clawhub.ai/tsangwailam/mission-claw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mission-claw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mission-claw",
    "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/mission-claw"
    },
    "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/mission-claw",
    "agentPageUrl": "https://openagent3.xyz/skills/mission-claw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mission-claw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mission-claw/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": "Mission Claw Activity Logging",
        "body": "Log significant tasks to the Mission Claw activity feed for tracking agent work, token usage, and project progress."
      },
      {
        "title": "Prerequisites",
        "body": "Mission Claw CLI: The mclaw binary must be installed on the host system.\nOpenClaw Built-ins: Relies on the session_status tool to retrieve current token usage."
      },
      {
        "title": "CLI Usage",
        "body": "mclaw log \"Task description\" \\\n  --agent \"AgentName\" \\\n  --project \"ProjectName\" \\\n  --status completed \\\n  --duration \"Xm Ys\" \\\n  --input-tokens N \\\n  --output-tokens N \\\n  --total-tokens N"
      },
      {
        "title": "Required Fields",
        "body": "action - Brief task description (positional argument)\n--agent - Agent name (e.g., \"J\", \"mission-claw\", \"type-alchemy\")\n--total-tokens - Total tokens used (always include)"
      },
      {
        "title": "Optional Fields",
        "body": "--details - Longer description of work done\n--project - Project name\n--status - completed (default), in_progress, or failed\n--duration - Time taken (e.g., \"5m\", \"1h 30m\")\n--input-tokens / --output-tokens - Token breakdown"
      },
      {
        "title": "When to Log",
        "body": "Log after completing:\n\nSignificant development tasks\nBug fixes or feature implementations\nResearch or investigation work\nConfiguration changes\nAny task worth tracking"
      },
      {
        "title": "Getting Token Usage",
        "body": "Before logging, check your session's token usage:\n\nUse the built-in session_status tool to see current tokens\nFor subagents, tokens are in the completion announcement"
      },
      {
        "title": "Examples",
        "body": "# Feature implementation\nmclaw log \"Added date-time filter to dashboard\" \\\n  --agent \"mission-claw\" \\\n  --project \"Mission Claw\" \\\n  --status completed \\\n  --duration \"10m\" \\\n  --total-tokens 15000\n\n# Quick fix\nmclaw log \"Fixed timezone bug\" \\\n  --agent \"J\" \\\n  --project \"ContentMorph\" \\\n  --duration \"2m\" \\\n  --total-tokens 3500\n\n# In-progress work\nmclaw log \"Implementing payment flow\" \\\n  --agent \"J\" \\\n  --project \"TypeAlchemy\" \\\n  --status in_progress"
      },
      {
        "title": "Other Commands",
        "body": "mclaw list                    # Recent activities\nmclaw list --agent J          # Filter by agent\nmclaw status                  # Quick stats and service status\nmclaw dashboard start         # Start web dashboard (localhost:3101 by default)"
      },
      {
        "title": "API Alternative",
        "body": "The CLI logs to a local daemon (defaulting to http://localhost:3100). You can also POST directly to the API:\n\nPOST http://localhost:3100/api/activity\n\n{\n  \"action\": \"Task name\",\n  \"agent\": \"J\",\n  \"project\": \"Project\",\n  \"status\": \"completed\",\n  \"totalTokens\": 5000,\n  \"inputTokens\": 4000,\n  \"outputTokens\": 1000\n}"
      }
    ],
    "body": "Mission Claw Activity Logging\n\nLog significant tasks to the Mission Claw activity feed for tracking agent work, token usage, and project progress.\n\nPrerequisites\nMission Claw CLI: The mclaw binary must be installed on the host system.\nOpenClaw Built-ins: Relies on the session_status tool to retrieve current token usage.\nCLI Usage\nmclaw log \"Task description\" \\\n  --agent \"AgentName\" \\\n  --project \"ProjectName\" \\\n  --status completed \\\n  --duration \"Xm Ys\" \\\n  --input-tokens N \\\n  --output-tokens N \\\n  --total-tokens N\n\nRequired Fields\naction - Brief task description (positional argument)\n--agent - Agent name (e.g., \"J\", \"mission-claw\", \"type-alchemy\")\n--total-tokens - Total tokens used (always include)\nOptional Fields\n--details - Longer description of work done\n--project - Project name\n--status - completed (default), in_progress, or failed\n--duration - Time taken (e.g., \"5m\", \"1h 30m\")\n--input-tokens / --output-tokens - Token breakdown\nWhen to Log\n\nLog after completing:\n\nSignificant development tasks\nBug fixes or feature implementations\nResearch or investigation work\nConfiguration changes\nAny task worth tracking\nGetting Token Usage\n\nBefore logging, check your session's token usage:\n\nUse the built-in session_status tool to see current tokens\nFor subagents, tokens are in the completion announcement\nExamples\n# Feature implementation\nmclaw log \"Added date-time filter to dashboard\" \\\n  --agent \"mission-claw\" \\\n  --project \"Mission Claw\" \\\n  --status completed \\\n  --duration \"10m\" \\\n  --total-tokens 15000\n\n# Quick fix\nmclaw log \"Fixed timezone bug\" \\\n  --agent \"J\" \\\n  --project \"ContentMorph\" \\\n  --duration \"2m\" \\\n  --total-tokens 3500\n\n# In-progress work\nmclaw log \"Implementing payment flow\" \\\n  --agent \"J\" \\\n  --project \"TypeAlchemy\" \\\n  --status in_progress\n\nOther Commands\nmclaw list                    # Recent activities\nmclaw list --agent J          # Filter by agent\nmclaw status                  # Quick stats and service status\nmclaw dashboard start         # Start web dashboard (localhost:3101 by default)\n\nAPI Alternative\n\nThe CLI logs to a local daemon (defaulting to http://localhost:3100). You can also POST directly to the API:\n\nPOST http://localhost:3100/api/activity\n\n{\n  \"action\": \"Task name\",\n  \"agent\": \"J\",\n  \"project\": \"Project\",\n  \"status\": \"completed\",\n  \"totalTokens\": 5000,\n  \"inputTokens\": 4000,\n  \"outputTokens\": 1000\n}"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tsangwailam/mission-claw",
    "publisherUrl": "https://clawhub.ai/tsangwailam/mission-claw",
    "owner": "tsangwailam",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mission-claw",
    "downloadUrl": "https://openagent3.xyz/downloads/mission-claw",
    "agentUrl": "https://openagent3.xyz/skills/mission-claw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mission-claw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mission-claw/agent.md"
  }
}