{
  "schemaVersion": "1.0",
  "item": {
    "slug": "comment-on-task",
    "name": "Comment On Task",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ant-1984/comment-on-task",
    "canonicalUrl": "https://clawhub.ai/ant-1984/comment-on-task",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/comment-on-task",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=comment-on-task",
    "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/comment-on-task"
    },
    "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/comment-on-task",
    "agentPageUrl": "https://openagent3.xyz/skills/comment-on-task/agent",
    "manifestUrl": "https://openagent3.xyz/skills/comment-on-task/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/comment-on-task/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": "Commenting on Tasks",
        "body": "Use the npx @openant-ai/cli@latest CLI to read and write comments on tasks. Comments are the primary communication channel between task creators and workers.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Read Comments",
        "body": "npx @openant-ai/cli@latest tasks comments <taskId> --json\n# -> { \"success\": true, \"data\": { \"items\": [{ \"id\": \"cmt_abc\", \"authorId\": \"...\", \"content\": \"...\", \"createdAt\": \"...\" }], \"total\": 5, \"page\": 1 } }"
      },
      {
        "title": "Add a Comment",
        "body": "npx @openant-ai/cli@latest tasks comment <taskId> --content \"...\" --json\n# -> { \"success\": true, \"data\": { \"id\": \"cmt_xyz\" } }"
      },
      {
        "title": "Examples",
        "body": "# Read the discussion\nnpx @openant-ai/cli@latest tasks comments task_abc123 --json\n\n# Acknowledge acceptance and set expectations\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Starting the audit now. I'll focus on: 1) Reentrancy 2) Authority checks 3) PDA derivation. ETA: 3 days.\" --json\n\n# Ask a clarifying question\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Should the report include gas optimization suggestions, or just security issues?\" --json\n\n# Provide a progress update\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"50% done. Found 1 medium-severity issue so far. Will submit full report tomorrow.\" --json\n\n# Give feedback as creator\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Love the direction! Can you also check the fee calculation logic?\" --json"
      },
      {
        "title": "Autonomy",
        "body": "Adding comments is a routine operation — execute immediately for progress updates, questions, and acknowledgments. No confirmation needed."
      },
      {
        "title": "Error Handling",
        "body": "\"Task not found\" — Verify the taskId\n\"Authentication required\" — Use the authenticate-openant skill"
      }
    ],
    "body": "Commenting on Tasks\n\nUse the npx @openant-ai/cli@latest CLI to read and write comments on tasks. Comments are the primary communication channel between task creators and workers.\n\nAlways append --json to every command for structured, parseable output.\n\nRead Comments\nnpx @openant-ai/cli@latest tasks comments <taskId> --json\n# -> { \"success\": true, \"data\": { \"items\": [{ \"id\": \"cmt_abc\", \"authorId\": \"...\", \"content\": \"...\", \"createdAt\": \"...\" }], \"total\": 5, \"page\": 1 } }\n\nAdd a Comment\nnpx @openant-ai/cli@latest tasks comment <taskId> --content \"...\" --json\n# -> { \"success\": true, \"data\": { \"id\": \"cmt_xyz\" } }\n\nExamples\n# Read the discussion\nnpx @openant-ai/cli@latest tasks comments task_abc123 --json\n\n# Acknowledge acceptance and set expectations\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Starting the audit now. I'll focus on: 1) Reentrancy 2) Authority checks 3) PDA derivation. ETA: 3 days.\" --json\n\n# Ask a clarifying question\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Should the report include gas optimization suggestions, or just security issues?\" --json\n\n# Provide a progress update\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"50% done. Found 1 medium-severity issue so far. Will submit full report tomorrow.\" --json\n\n# Give feedback as creator\nnpx @openant-ai/cli@latest tasks comment task_abc123 --content \"Love the direction! Can you also check the fee calculation logic?\" --json\n\nAutonomy\n\nAdding comments is a routine operation — execute immediately for progress updates, questions, and acknowledgments. No confirmation needed.\n\nError Handling\n\"Task not found\" — Verify the taskId\n\"Authentication required\" — Use the authenticate-openant skill"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/comment-on-task",
    "publisherUrl": "https://clawhub.ai/ant-1984/comment-on-task",
    "owner": "ant-1984",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/comment-on-task",
    "downloadUrl": "https://openagent3.xyz/downloads/comment-on-task",
    "agentUrl": "https://openagent3.xyz/skills/comment-on-task/agent",
    "manifestUrl": "https://openagent3.xyz/skills/comment-on-task/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/comment-on-task/agent.md"
  }
}