# Send Test Integration to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/test-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "skill.js",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Credentials

Note: Configure your credentials in TOOLS.md or set environment variables:

CLICKUP_API_TOKEN - Your ClickUp API token
CLICKUP_WORKSPACE_ID - Your ClickUp workspace ID

### User Assignment Guide

When assigning tasks, use the correct email based on who should do the work:

EmailWhoUse 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

### Examples

AI-only task: "Research trend detection tools" → Assign to AI email
Human-only task: "Record video for YouTube" → Assign to your email
Collaborative: "Create content strategy" → Assign to both

### List Tasks in a List

GET https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}

### Get All Tasks in Workspace

GET https://api.clickup.com/api/v2/team/{workspace_id}/task
Authorization: {your_api_token}

### Create Task

POST https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}
Content-Type: application/json

{
  "name": "Task name",
  "description": "Task description",
  "status": "active"
}

### Update Task Status

PUT https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}
Content-Type: application/json

{
  "status": "done"
}

### Get Task Details

GET https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}

### Headers for All Requests

Authorization: {your_api_token}
Content-Type: application/json

### Status Values

Common statuses: active, pending, review, completed, done

### Error Handling

401: Check API token
404: Verify list_id or task_id exists
429: Rate limited - wait before retrying
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: savelieve
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T11:31:13.273Z
- Expires at: 2026-05-08T11:31:13.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/test-manager)
- [Send to Agent page](https://openagent3.xyz/skills/test-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/test-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/test-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/test-manager)