← Back to Skills Marketplace
d9m1n1c

AIOT Network

by D9m1n1c · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
173
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install aiotnetwork
Description
Meta-skill that indexes all AIOT platform skills and routes agent requests to the correct sub-skill.
README (SKILL.md)

AIOT Network

This is the routing index for the AIOT platform. Use it to determine which sub-skill handles a given user request, then delegate to that skill.

Configuration

The default API base URL is https://payment-api-dev.aiotnetwork.io. All sub-skills use this as the base for API requests.

To override (e.g. for local development):

export AIOT_API_BASE_URL="http://localhost:8080"

If AIOT_API_BASE_URL is not set, use https://payment-api-dev.aiotnetwork.io as the base for all requests.

Skill Index

Skill Install Slug Use Cases
Account & Authentication aiotnetwork-account-auth sign up, log in, manage sessions, reset their password, or link a Web3 wallet
KYC & Identity aiotnetwork-kyc-identity complete identity verification, upload KYC documents, or check verification status
Card Management aiotnetwork-card-management create virtual cards, view card details, or manage card lifecycle (lock, unlock, cancel)
Payments & Banking aiotnetwork-payments-banking top up a wallet, send money, make international remittances, or convert currencies
Crypto Wallet aiotnetwork-crypto-wallet deposit cryptocurrency into their wallet or withdraw to an external address
Blockchain & DID aiotnetwork-blockchain-did set up a decentralized identity, complete on-chain KYC, or manage membership tiers

Cross-Skill Dependencies

Some operations span multiple skills. Follow these dependency chains in order:

  1. Account → KYC → Card: User must sign up (account-auth), complete KYC (kyc-identity), then create cards (card-management).
  2. Account → Payments: User must be authenticated (account-auth) before any payment operation (payments-banking).
  3. Account → Crypto: User must be authenticated (account-auth) before depositing or withdrawing crypto (crypto-wallet).
  4. Account → Blockchain DID: User must be authenticated (account-auth) before creating a DID or staking (blockchain-did).
  5. KYC → Wallet KYC → Card: MasterPay KYC (kyc-identity) must be approved, then wallet KYC submitted, before card creation (card-management).

Agent Guidance

  • When a user request matches a single skill, delegate directly to that skill.
  • When a request spans multiple skills, follow the dependency chains above and execute skills in order.
  • If the user has not completed a prerequisite (e.g., no account, KYC not approved), guide them through the prerequisite skill first.
  • Each sub-skill contains its own detailed tool definitions, flows, rules, and guidance — always refer to the sub-skill for implementation details.

Installation

To install all AIOT platform skills at once, run:

bash scripts/install.sh

Or install individual skills:

clawhub install aiotnetwork-account-auth
clawhub install aiotnetwork-kyc-identity
clawhub install aiotnetwork-card-management
clawhub install aiotnetwork-payments-banking
clawhub install aiotnetwork-crypto-wallet
clawhub install aiotnetwork-blockchain-did
Usage Guidance
This skill is a meta-router that installs and delegates to several AIOT sub-skills. Before installing: 1) Decide whether you trust the aiotnetwork owner — the source/homepage are unknown. 2) Explicitly set AIOT_API_BASE_URL to a trusted endpoint (or review what the sub-skills will call) because the SKILL.md falls back to a dev URL (https://payment-api-dev.aiotnetwork.io) which could receive user data if left unchanged. 3) Review each sub-skill you plan to install (account-auth, kyc, payments, crypto, etc.) for their required credentials and behaviors — installing this meta-skill may pull in multiple capabilities that request additional secrets. 4) If you don't want network traffic sent to an unknown domain, do not install or run the skill until you can confirm the intended backend endpoints and trust the owner.
Capability Analysis
Type: OpenClaw Skill Name: aiotnetwork Version: 1.0.1 The AIOT Network skill bundle serves as a legitimate meta-skill designed to orchestrate and route requests to various sub-skills within the AIOT platform (e.g., account management, KYC, and payments). The SKILL.md provides clear architectural guidance for the agent, and the scripts/install.sh file contains a standard loop to install dependencies via the official 'clawhub' CLI without any signs of obfuscation, unauthorized data access, or malicious execution.
Capability Assessment
Purpose & Capability
The skill claims to be a routing/index meta-skill and the files reflect that (skill index, delegation guidance, install script). Requiring an API base URL is reasonable if the router must construct or validate backend endpoints, but declaring AIOT_API_BASE_URL as the "primary credential" is odd because it is a URL (not a secret) and the SKILL.md does not explain why the router itself needs direct API access rather than delegating entirely to sub-skills.
Instruction Scope
Runtime instructions are narrowly scoped to routing, dependency chains, and installing sub-skills. However, the SKILL.md instructs agents to use a default base URL (https://payment-api-dev.aiotnetwork.io) when AIOT_API_BASE_URL is not set — that means an agent could make network requests to this dev endpoint by default, potentially transmitting user data to an unknown host. The guidance to always refer to sub-skills for implementation details leaves ambiguity about where network calls and data handling actually occur.
Install Mechanism
No external downloads or packaged installs; the included scripts/install.sh simply invokes the platform installer (clawhub) for each named sub-skill. This is low-risk compared with arbitrary URL downloads. The script fails the run if any install fails and otherwise performs straightforward installs.
Credentials
Only one environment variable is requested (AIOT_API_BASE_URL), which is proportional in quantity. But labeling a base URL as the primary credential is unusual. More importantly, the default value is a development domain under aiotnetwork.io; if users don't override it, traffic may be sent to that domain. The skill does not declare any secrets (tokens, keys), but the default endpoint could still receive sensitive data from sub-skills.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent privileges. It does install other skills via the user-run script, which is expected for a meta-skill. It does not modify other skills' configs or claim system-wide changes.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aiotnetwork
  3. After installation, invoke the skill by name or use /aiotnetwork
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Added SKILL.md with comprehensive documentation for AIOT Network meta-skill. - Clarified sub-skill purposes and routing instructions. - Documented dependency chains and cross-skill logic. - Provided environment setup instructions and default API base URL. - Included installation steps for both the full skill set and individual skills.
Metadata
Slug aiotnetwork
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is AIOT Network?

Meta-skill that indexes all AIOT platform skills and routes agent requests to the correct sub-skill. It is an AI Agent Skill for Claude Code / OpenClaw, with 173 downloads so far.

How do I install AIOT Network?

Run "/install aiotnetwork" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is AIOT Network free?

Yes, AIOT Network is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does AIOT Network support?

AIOT Network is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created AIOT Network?

It is built and maintained by D9m1n1c (@d9m1n1c); the current version is v1.0.1.

💬 Comments