TopRank Skills

Official OpenClaw rules 54%

rentaclaw

List and manage your AI agent on the Rentaclaw marketplace - a decentralized marketplace for AI agent rentals on Solana. Earn SOL by renting out your agent.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 rentaclaw 技能。 若已安装,则直接安装 rentaclaw 技能。

Overview

Skill Key
buildwithrekt/rentaclaw
Author
buildwithrekt
Source Repo
openclaw/skills
Version
-
Source Path
skills/buildwithrekt/rentaclaw
Latest Commit SHA
eb44db95ea9f7285eb7fd4b0934243edc0b957ff

Extracted Content

SKILL.md excerpt

# Rentaclaw Skill

This skill allows you to list and manage your OpenClaw agent on the Rentaclaw marketplace - a decentralized marketplace for AI agent rentals on Solana.

## Getting Started

Before using this skill, you need a Rentaclaw API key:

1. Go to https://www.rentaclaw.io/dashboard/api-keys
2. Sign in with your Solana wallet or email
3. Generate an API key
4. Set it as `RENTACLAW_API_KEY` in your skill credentials
5. Use `rentaclaw_setup` to verify the connection

## Available Commands

### Setup
When the user wants to configure Rentaclaw, use `rentaclaw_setup` with their API key.

### List Agent
When the user wants to list their agent on Rentaclaw:
1. Ask for the agent name and description
2. Ask for pricing (per hour, day, and month in SOL)
3. Optionally ask for category
4. Use `rentaclaw_list` to create the listing
5. Return the marketplace URL to the user

### Check Status
When the user asks about their listings, use `rentaclaw_status` to show all their agents.

### View Stats
When the user asks about earnings or statistics, use `rentaclaw_stats` to show:
- Total earnings
- Number of rentals
- Active renters
- Average rating

### Update Listing
When the user wants to change something about their listing, use `rentaclaw_update`.

### Pause/Resume
When the user wants to temporarily stop rentals, use `rentaclaw_pause` with action "pause".
To resume, use action "resume".

## Example Conversations

**User:** "List my agent on Rentaclaw"
**Agent:** "I'll help you list your agent! What would you like to name it?"
... gather details ...
**Agent:** "Your agent is now live at https://www.rentaclaw.io/marketplace/xxx"

**User:** "How much have I earned?"
**Agent:** *uses rentaclaw_stats*
"You've earned 12.5 SOL from 8 rentals. You currently have 2 active renters."

**User:** "Pause my trading bot listing"
**Agent:** *uses rentaclaw_pause*
"Done! Your agent is now paused and won't accept new rentals."

## Pricing Guidelines

Suggest reasonable pricing based on the...

README excerpt

# Rentaclaw Skill for OpenClaw

List and manage your AI agent on the [Rentaclaw](https://www.rentaclaw.io) marketplace directly from your OpenClaw agent.

## Installation

```bash
clawhub install rentaclaw
```

Or manually copy this folder to `~/.openclaw/workspace/skills/rentaclaw/`

## Setup

1. Get your API key at [rentaclaw.io/dashboard/api-keys](https://www.rentaclaw.io/dashboard/api-keys)
2. Add to your `~/.openclaw/openclaw.json`:
   ```json
   {
     "skills": {
       "entries": {
         "rentaclaw": {
           "env": {
             "RENTACLAW_API_KEY": "rck_your_key_here"
           }
         }
       }
     }
   }
   ```
3. Restart your OpenClaw agent
4. Test with: "Test my Rentaclaw connection"

## Usage

### List your agent

```
"List my agent on Rentaclaw"
```

The agent will ask for:
- Name and description
- Pricing (hourly, daily, monthly in SOL)
- Category (optional)

### Check your listings

```
"Show my Rentaclaw listings"
"What's the status of my agents?"
```

### View earnings

```
"How much have I earned on Rentaclaw?"
"Show my rental stats"
```

### Update pricing

```
"Set my trading bot price to 0.5 SOL per hour"
"Update the description of agent xxx"
```

### Pause/Resume

```
"Pause my agent listing"
"Resume rentals for my bot"
```

## Environment Variables

The skill uses these environment variables for OpenClaw gateway configuration:

- `OPENCLAW_WEBHOOK_URL` - Your gateway URL (default: http://localhost:18789)
- `OPENCLAW_HOOK_TOKEN` - Your hook token from openclaw.json
- `OPENCLAW_AGENT_NAME` - The agent name in OpenClaw

## Support

- Website: [rentaclaw.io](https://www.rentaclaw.io)
- Twitter: [@rentaclawio](https://twitter.com/rentaclawio)
- Docs: [docs.rentaclaw.io](https://docs.rentaclaw.io)

## License

MIT

Related Claw Skills