{
  "schemaVersion": "1.0",
  "item": {
    "slug": "test-manager",
    "name": "Test Integration",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/savelieve/test-manager",
    "canonicalUrl": "https://clawhub.ai/savelieve/test-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/test-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "skill.js",
      "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",
      "slug": "test-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:31:13.273Z",
      "expiresAt": "2026-05-08T11:31:13.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-manager",
        "contentDisposition": "attachment; filename=\"test-manager-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "test-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/test-manager"
    },
    "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/test-manager",
    "agentPageUrl": "https://openagent3.xyz/skills/test-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/test-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/test-manager/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": "Credentials",
        "body": "Note: Configure your credentials in TOOLS.md or set environment variables:\n\nCLICKUP_API_TOKEN - Your ClickUp API token\nCLICKUP_WORKSPACE_ID - Your ClickUp workspace ID"
      },
      {
        "title": "User Assignment Guide",
        "body": "When assigning tasks, use the correct email based on who should do the work:\n\nEmailWhoUse Whenyour-email@example.comHumanTasks for you to do manuallyai-assistant@example.comAI AssistantTasks for AI to executeBoth emailsBoth Human + AICollaborative tasks where AI does research/writing, human reviews/decides"
      },
      {
        "title": "Examples",
        "body": "AI-only task: \"Research trend detection tools\" → Assign to AI email\nHuman-only task: \"Record video for YouTube\" → Assign to your email\nCollaborative: \"Create content strategy\" → Assign to both"
      },
      {
        "title": "List Tasks in a List",
        "body": "GET https://api.clickup.com/api/v2/list/{list_id}/task\nAuthorization: {your_api_token}"
      },
      {
        "title": "Get All Tasks in Workspace",
        "body": "GET https://api.clickup.com/api/v2/team/{workspace_id}/task\nAuthorization: {your_api_token}"
      },
      {
        "title": "Create Task",
        "body": "POST https://api.clickup.com/api/v2/list/{list_id}/task\nAuthorization: {your_api_token}\nContent-Type: application/json\n\n{\n  \"name\": \"Task name\",\n  \"description\": \"Task description\",\n  \"status\": \"active\"\n}"
      },
      {
        "title": "Update Task Status",
        "body": "PUT https://api.clickup.com/api/v2/task/{task_id}\nAuthorization: {your_api_token}\nContent-Type: application/json\n\n{\n  \"status\": \"done\"\n}"
      },
      {
        "title": "Get Task Details",
        "body": "GET https://api.clickup.com/api/v2/task/{task_id}\nAuthorization: {your_api_token}"
      },
      {
        "title": "Headers for All Requests",
        "body": "Authorization: {your_api_token}\nContent-Type: application/json"
      },
      {
        "title": "Status Values",
        "body": "Common statuses: active, pending, review, completed, done"
      },
      {
        "title": "Error Handling",
        "body": "401: Check API token\n404: Verify list_id or task_id exists\n429: Rate limited - wait before retrying"
      }
    ],
    "body": "ClickUp Integration\nCredentials\n\nNote: Configure your credentials in TOOLS.md or set environment variables:\n\nCLICKUP_API_TOKEN - Your ClickUp API token\nCLICKUP_WORKSPACE_ID - Your ClickUp workspace ID\nUser Assignment Guide\n\nWhen assigning tasks, use the correct email based on who should do the work:\n\nEmail\tWho\tUse When\nyour-email@example.com\tHuman\tTasks for you to do manually\nai-assistant@example.com\tAI Assistant\tTasks for AI to execute\nBoth emails\tBoth Human + AI\tCollaborative tasks where AI does research/writing, human reviews/decides\nExamples\nAI-only task: \"Research trend detection tools\" → Assign to AI email\nHuman-only task: \"Record video for YouTube\" → Assign to your email\nCollaborative: \"Create content strategy\" → Assign to both\nCommon Actions\nList Tasks in a List\nGET https://api.clickup.com/api/v2/list/{list_id}/task\nAuthorization: {your_api_token}\n\nGet All Tasks in Workspace\nGET https://api.clickup.com/api/v2/team/{workspace_id}/task\nAuthorization: {your_api_token}\n\nCreate Task\nPOST https://api.clickup.com/api/v2/list/{list_id}/task\nAuthorization: {your_api_token}\nContent-Type: application/json\n\n{\n  \"name\": \"Task name\",\n  \"description\": \"Task description\",\n  \"status\": \"active\"\n}\n\nUpdate Task Status\nPUT https://api.clickup.com/api/v2/task/{task_id}\nAuthorization: {your_api_token}\nContent-Type: application/json\n\n{\n  \"status\": \"done\"\n}\n\nGet Task Details\nGET https://api.clickup.com/api/v2/task/{task_id}\nAuthorization: {your_api_token}\n\nHeaders for All Requests\nAuthorization: {your_api_token}\nContent-Type: application/json\n\nStatus Values\n\nCommon statuses: active, pending, review, completed, done\n\nError Handling\n401: Check API token\n404: Verify list_id or task_id exists\n429: Rate limited - wait before retrying"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/savelieve/test-manager",
    "publisherUrl": "https://clawhub.ai/savelieve/test-manager",
    "owner": "savelieve",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/test-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/test-manager",
    "agentUrl": "https://openagent3.xyz/skills/test-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/test-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/test-manager/agent.md"
  }
}