# Send Nimrobo 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": "nimrobo",
    "name": "Nimrobo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/virang-nimrobo/nimrobo",
    "canonicalUrl": "https://clawhub.ai/virang-nimrobo/nimrobo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nimrobo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nimrobo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "commands.md",
      "core.md",
      "installation.md",
      "net-commands.md",
      "voice-commands.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "nimrobo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T04:29:14.644Z",
      "expiresAt": "2026-05-13T04:29:14.644Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nimrobo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nimrobo",
        "contentDisposition": "attachment; filename=\"nimrobo-0.17.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "nimrobo"
      },
      "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/nimrobo"
    },
    "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/nimrobo",
    "downloadUrl": "https://openagent3.xyz/downloads/nimrobo",
    "agentUrl": "https://openagent3.xyz/skills/nimrobo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nimrobo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nimrobo/agent.md"
  }
}
```
## Documentation

### Nimrobo CLI Skill

This skill enables you to use the Nimrobo CLI for voice screening and matching network operations.

### Overview

Nimrobo CLI provides two command platforms:

Voice Commands (nimrobo voice) - Voice-first AI platform for running interviews, screening, and diagnostic conversations via shareable voice-links
Net Commands (nimrobo net) - Matching network for organizations, job posts, applications, and messaging

Both platforms share the same authentication system.

### Input Methods

Commands support multiple input methods (in priority order):

CLI Flags - Direct options like --name "Value"
JSON Files - Use -f ./data.json for complex inputs
Stdin - Use --stdin to pipe JSON input
Interactive Mode - Prompts when flags aren't provided

### Context System (Net Commands)

Net commands support a context system to avoid repeating IDs:

# Set context
nimrobo net orgs use org_abc123
nimrobo net posts use post_xyz789

# Use "current" to reference stored context
nimrobo net orgs get current
nimrobo net posts applications current

# View/clear context
nimrobo net context show
nimrobo net context clear

### Pagination

List commands support --limit and --skip for pagination:

nimrobo net posts list --limit 20 --skip 40  # Page 3

### JSON Output

Add --json to any command for machine-readable output:

nimrobo net posts list --json

### Documentation Files

This skill includes the following documentation files for detailed reference:

FileDescriptioninstallation.mdStart Here: Installation, login, and onboarding stepscommands.mdQuick reference table of all commandsvoice-commands.mdDetailed Voice platform commands with examplesnet-commands.mdDetailed Net platform commands with examplesworkflow.mdCommon workflow patterns and examples

### Voice: Run an Interview

# Create project and generate interview links
nimrobo voice projects create -f interview.json
nimrobo voice projects use proj_abc123
nimrobo voice links create -p default -l "Alice,Bob,Charlie" -e 1_week

# After interviews, get results
nimrobo voice sessions evaluation sess_xyz -t project -p default
nimrobo voice sessions transcript sess_xyz -t project -p default --json

### Net: Post a Job

# Create org and post
nimrobo net orgs create --name "Acme Corp" --use
nimrobo net posts create --title "Senior Engineer" --short-content "Join our team!" --expires "2024-06-01" --org current --use

# Review applications
nimrobo net posts applications current --status pending
nimrobo net applications accept app_123

### Net: Apply for Jobs

# Search and apply
nimrobo net posts list --query "engineer" --filter '{"remote": "remote", "salary_min": 100000}'
nimrobo net posts apply post_xyz --note "I'm excited about this role..."

# Track applications
nimrobo net my applications --status pending

### Tips for Automation

Use --json flag for parsing output programmatically
Set context with use commands to avoid repeating IDs
Use JSON files (-f) for complex create/update operations
Check my summary for a quick overview of pending actions
Batch operations are available for applications (batch-action)

### Exit Codes

CodeDescription0Success1Error

### Getting Help

See installation.md for setup instructions.

nimrobo --help              # List all commands
nimrobo voice --help        # Voice platform help
nimrobo net --help          # Net platform help
nimrobo <command> --help    # Help for specific command

### Onboard (set up profile and org from JSON). run only if the user says to onboard. and follow the instructions as per the response and ask user questions to fill onboarding.

nimrobo onboard
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: virang-nimrobo
- Version: 0.17.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-06T04:29:14.644Z
- Expires at: 2026-05-13T04:29:14.644Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nimrobo)
- [Send to Agent page](https://openagent3.xyz/skills/nimrobo/agent)
- [JSON manifest](https://openagent3.xyz/skills/nimrobo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nimrobo/agent.md)
- [Download page](https://openagent3.xyz/downloads/nimrobo)