TopRank Skills

Home / Claw Skills / Autres / Pay Bills
Official OpenClaw rules 15%

Pay Bills

SKILL.md — CreditWithBleon API

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
h1rdr3v2/pay-bills
Author
h1rdr3v2
Source Repo
openclaw/skills
Version
-
Source Path
skills/h1rdr3v2/pay-bills
Latest Commit SHA
628dd6a13fc5e62090c800c3cf03bb93515e8eb5

Extracted Content

SKILL.md excerpt

# SKILL.md — CreditWithBleon API

Buy data, airtime, and digital products for Nigerian phone numbers via wallet balance.

**Base URL:** https://lodu.bleon.net/v1

## Helper Scripts

These Node.js scripts live in the `pay-bills-skill/` directory. Run them with `node` to generate IDs and manage auth state.

| Script                  | Command                                               | Purpose                                                                                                                            |
| ----------------------- | ----------------------------------------------------- |------------------------------------------------------------------------------------------------------------------------------------|
| `generate-order-id.js`  | `node pay-bills-skill/generate-order-id.js`           | Outputs a unique `ORDER_<timestamp>_<random>` string. Use this as `trx_id` for every order — **never hardcode or reuse a trx_id**. |
| `generate-device-id.js` | `node pay-bills-skill/generate-device-id.js [userId]` | Outputs a device ID. With `userId`: `openclaw_<userId>`. Use as `deviceId` in auth requests. |
| `session-token.js`      | see below                                             | Manages the session token for auth.                                                                                                |

### Session Token Commands

```
node pay-bills-skill/session-token.js check              → { "loggedIn": true/false, "sessionToken": "..." | null }
node pay-bills-skill/session-token.js save <token>       → saves the token to .session_token
node pay-bills-skill/session-token.js load               → prints the saved token (exit 1 if none)
node pay-bills-skill/session-token.js clear              → deletes the saved token (logout)
```

### Workflow

1. **Before any `[auth]` request:** run `node pay-bills-skill/session-token.js check` to see if a session token exists.
   - If `loggedIn: true` → use the `sessionToken` value as `Authorization:...

Related Claw Skills