# Send Test Case Generator 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-case-generator",
    "name": "Test Case Generator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/HonestQiao/test-case-generator",
    "canonicalUrl": "https://clawhub.ai/HonestQiao/test-case-generator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/test-case-generator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-case-generator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "test-case-generator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T22:42:36.293Z",
      "expiresAt": "2026-05-16T22:42:36.293Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-case-generator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=test-case-generator",
        "contentDisposition": "attachment; filename=\"test-case-generator-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "test-case-generator"
      },
      "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-case-generator"
    },
    "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-case-generator",
    "downloadUrl": "https://openagent3.xyz/downloads/test-case-generator",
    "agentUrl": "https://openagent3.xyz/skills/test-case-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/test-case-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/test-case-generator/agent.md"
  }
}
```
## Documentation

### Test Case Generator

根据代码自动生成单元测试用例。

### 功能

从代码提取函数签名
自动生成测试框架代码
支持 Jest、Mocha、Pytest
智能生成测试参数

### 触发词

"生成测试"
"测试用例"
"unit test"
"generate test"

### 支持框架

// Jest
test('functionName should work', () => {
  expect(result).toBe(expected);
});

// Mocha
it('functionName', () => {
  assert(result === expected);
});

// Python Pytest
def test_function_name():
    assert result is not None

### 输出

返回完整的测试文件代码，包含：

导入语句
测试用例
Mock 数据
断言
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: HonestQiao
- Version: 1.0.0
## 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-09T22:42:36.293Z
- Expires at: 2026-05-16T22:42:36.293Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/test-case-generator)
- [Send to Agent page](https://openagent3.xyz/skills/test-case-generator/agent)
- [JSON manifest](https://openagent3.xyz/skills/test-case-generator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/test-case-generator/agent.md)
- [Download page](https://openagent3.xyz/downloads/test-case-generator)