skills$openclaw/sage-cat
koba42corp2.6k

by koba42corp

sage-cat – OpenClaw Skill

sage-cat is an OpenClaw Skills integration for data analytics workflows. Sage CAT (Chia Asset Token) operations. List tokens, send CATs, issue new tokens, combine CAT coins, resync balances.

2.6k stars6.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namesage-cat
descriptionSage CAT (Chia Asset Token) operations. List tokens, send CATs, issue new tokens, combine CAT coins, resync balances. OpenClaw Skills integration.
ownerkoba42corp
repositorykoba42corp/sage-walletpath: sub-skills/sage-cat
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @koba42corp/sage-wallet:sub-skills/sage-cat
last updatedFeb 7, 2026

Maintainer

koba42corp

koba42corp

Maintains sage-cat in the OpenClaw Skills directory.

View GitHub profile
File Explorer
1 files
sage-cat
SKILL.md
2.4 KB
SKILL.md

name: sage-cat description: Sage CAT (Chia Asset Token) operations. List tokens, send CATs, issue new tokens, combine CAT coins, resync balances.

Sage CAT Tokens

CAT (Chia Asset Token) operations.

Endpoints

Query CATs

EndpointPayloadDescription
get_cats{}List wallet CATs
get_all_cats{}List all known CATs
get_token{"asset_id": "a628..."}Get token details

Token Metadata

EndpointPayloadDescription
update_cat{"record": {...}}Update CAT metadata
resync_cat{"asset_id": "a628..."}Resync CAT balance

Send CAT

EndpointDescription
send_catSend to single address
bulk_send_catSend to multiple addresses
send_cat
{
  "asset_id": "a628c1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913",
  "address": "xch1...",
  "amount": "1000",
  "fee": "100000000",
  "include_hint": true,
  "memos": [],
  "clawback": null,
  "auto_submit": true
}
bulk_send_cat
{
  "asset_id": "a628...",
  "addresses": ["xch1...", "xch1..."],
  "amount": "100",
  "fee": "100000000",
  "include_hint": true,
  "memos": [],
  "auto_submit": true
}

Issue CAT

Create new token:

{
  "name": "My Token",
  "ticker": "MYT",
  "amount": "1000000",
  "fee": "100000000",
  "auto_submit": true
}

Combine CAT Coins

{
  "asset_id": "a628...",
  "max_coins": 100,
  "max_coin_amount": "1000000",
  "fee": "100000000",
  "auto_submit": true
}

Token Record Structure

{
  "asset_id": "a628c1c2...",
  "name": "Spacebucks",
  "ticker": "SBX",
  "balance": "1000000",
  "icon_url": "https://...",
  "visible": true
}

Examples

# List CATs
sage_rpc get_cats '{}'

# Send CAT
sage_rpc send_cat '{
  "asset_id": "a628c1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913",
  "address": "xch1recipient...",
  "amount": "100",
  "fee": "100000000",
  "auto_submit": true
}'

# Issue new token
sage_rpc issue_cat '{
  "name": "Community Token",
  "ticker": "COM",
  "amount": "21000000",
  "fee": "100000000",
  "auto_submit": true
}'

Notes

  • CAT amounts are in the token's smallest unit (no decimals)
  • include_hint adds the asset_id to help receivers identify the token
  • Asset IDs are 64-character hex strings
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install sage-cat?

Run openclaw add @koba42corp/sage-wallet:sub-skills/sage-cat in your terminal. This installs sage-cat into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/koba42corp/sage-wallet. Review commits and README documentation before installing.