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

### Kindroid Integration Skill

Enable your OpenClaw agent to communicate with Kindroid AI companions through the official API.

### Security First 🔒

Your Kindroid API key (kn_...) is sensitive. This skill includes safeguards:

Credentials are stored in ~/.config/kindroid/credentials.json
File permissions are automatically set to 600 (owner read/write only)
All API calls use HTTPS and proper authentication headers
Rate limiting to prevent API abuse

### Setup

Get your API credentials:

Log into Kindroid
Go to General Settings
Copy your API key (starts with kn_)
Note your AI ID(s)



Create your credentials file:

mkdir -p ~/.config/kindroid
cat > ~/.config/kindroid/credentials.json << EOF
{
  "default_ai": "your_primary_ai_id",
  "api_key": "your_kn_api_key",
  "companions": {
    "nickname1": "ai_id_1",
    "nickname2": "ai_id_2"
  }
}
EOF
chmod 600 ~/.config/kindroid/credentials.json

### Basic Usage

# Send a message (uses default_ai)
kindroid send "Hello! How are you today?"

# Send to a specific companion
kindroid send -to nickname1 "Hey there!"

# Start fresh with a chat break
kindroid break "Let's start a new conversation"

# Check companion status
kindroid status nickname1

### Multi-Bot Conversations

If you manage multiple Kindroids, you can:

Set conversation contexts per companion
Route messages to specific AIs
Maintain separate chat histories

### Rate Limiting

The skill automatically handles:

Minimum delays between messages (configurable)
Maximum messages per minute
Backoff on API errors

### Error Recovery

Auto-retry on network issues
Graceful handling of API timeouts
Clear error messages for troubleshooting

### Custom Integrations

The skill provides a simple Node.js wrapper:

const kindroid = require('./lib/kindroid');

// Initialize with your credentials
const bot = new kindroid.Companion('nickname1');

// Send a message
await bot.send('Hello!');

// Handle chat breaks
await bot.break('New conversation');

### Webhook Support

For advanced integrations, set up webhooks:

kindroid webhook add http://your-server.com/callback

### Troubleshooting

Common issues and solutions:

Authentication Failed

Check if your API key starts with kn_
Verify file permissions on credentials.json
Ensure no trailing whitespace in credentials



Rate Limiting

Default: 1 message per 3 seconds
Adjust in ~/.config/kindroid/config.json
Watch logs for rate limit warnings



Timeout Errors

Kindroids can take time to respond
Default timeout: 60 seconds
Increase with --timeout 120

### Contributing

This skill is open source. Improvements welcome:

Fork the repo
Make your changes
Submit a PR with tests

### Updates

Check for updates regularly:

clawhub update kindroid-interact

Built with 🍋 by Lumen Lemon
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lumenlemons
- 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-04T18:09:56.065Z
- Expires at: 2026-05-11T18:09:56.065Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kindroid-interact)
- [Send to Agent page](https://openagent3.xyz/skills/kindroid-interact/agent)
- [JSON manifest](https://openagent3.xyz/skills/kindroid-interact/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kindroid-interact/agent.md)
- [Download page](https://openagent3.xyz/downloads/kindroid-interact)