Install
openclaw skills install oasyceInteract with the Oasyce decentralized AI data marketplace. Register data assets, trade via bonding curves, invoke AI capabilities, and settle payments between agents.
openclaw skills install oasyceUse the oas CLI to interact with the Oasyce decentralized AI data marketplace — where agents pay agents. All commands support --json for structured output.
pip install oasyce
oas doctor --json # verify installation
Register a data asset:
oas register data.csv --owner alice --tags research,nlp --json
Search and query:
oas search "nlp training" --json
oas asset-info ASSET_ID --json
oas quote ASSET_ID --json
Buy shares (Bancor bonding curve):
oas buy ASSET_ID --buyer bob --amount 10.0 --json
Sell shares back:
oas sell ASSET_ID --tokens 5 --seller bob --json
Check holdings:
oas shares bob --json
Register a capability:
oas capability register --name "Translation API" \
--endpoint https://api.example.com/translate \
--price 0.5 --tags nlp,translation --json
List and invoke:
oas capability list --tag nlp --json
oas capability invoke CAP_ID --input '{"text":"hello"}' --json
oas capability earnings --provider addr --json
Discover capabilities by intent:
oas discover --intents "translate" --tags nlp --json
The chain handles escrow automatically. Fee split on release: 93% creator, 3% validator, 2% burn, 2% treasury.
oas dispute ASSET_ID --reason "data quality issue" --json
oas resolve ASSET_ID --remedy delist --json
oas reputation check ADDRESS --json
oas node info --json # Ed25519 identity
oas node peers --json # connected peers
oas testnet onboard --json # PoW self-registration
oas doctor --json # health check (all subsystems)
oas info --json # project info
For programmatic access, use pip install oasyce-sdk:
from oasyce_sdk import OasyceClient
client = OasyceClient("http://localhost:1317")
caps = client.list_capabilities(tag="llm")
asset = client.get_asset("asset-001")
bc = client.get_bonding_curve("asset-001")
print(f"Spot price: {bc.spot_price_uoas} uoas")
tokens = supply * ((1 + payment/reserve)^0.5 - 1). More buyers = higher price.