Oasyce

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: oasyce Version: 3.3.0 The skill bundle provides documentation and instructions for interacting with the Oasyce decentralized AI marketplace. It describes standard CLI commands (oas) and a Python SDK (oasyce-sdk) for asset registration, trading via bonding curves, and AI capability invocation. No malicious indicators, such as data exfiltration, unauthorized execution, or prompt injection attacks, were found in SKILL.md or _meta.json.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing an unreviewed package can run code on the user's machine, so package identity and source should be verified before use.

Why it was flagged

The instruction-only skill asks users to install an external Python package, while the supplied metadata has unknown source and no homepage. This is a provenance note, not evidence of malicious behavior.

Skill content
pip install oasyce
Recommendation

Confirm the package publisher and version before installing, and prefer a trusted, pinned version or official installation instructions.

What this means

A mistaken or unauthorized command could buy or sell shares or otherwise change marketplace state.

Why it was flagged

The skill documents CLI commands that can perform marketplace transactions. This is aligned with the skill purpose, but these commands can spend or move value if run against a real account.

Skill content
oas buy ASSET_ID --buyer bob --amount 10.0 --json
Recommendation

Use the skill only with explicit user approval for transactions, verify asset IDs and amounts, and test on a non-production network or low-value account first.

What this means

Using the wrong account or network could lock or spend funds unintentionally.

Why it was flagged

The documented workflow involves account identity, token funds, escrow, and settlement. The artifacts do not show credential theft or misuse, but users should understand which account or wallet the CLI controls.

Skill content
The chain handles escrow automatically. Fee split on release: 93% creator, 3% validator, 2% burn, 2% treasury.
Recommendation

Check the active Oasyce identity, wallet, network, and balances before running buy, sell, resolve, or settlement-related commands.

What this means

Sensitive prompt data or files could be sent to a third-party capability if the user invokes one with private input.

Why it was flagged

The skill supports invoking marketplace capabilities, which may send user-provided inputs to an external capability provider. This is core functionality, but data boundaries depend on the selected provider.

Skill content
oas capability invoke CAP_ID --input '{"text":"hello"}' --json
Recommendation

Review the capability provider, endpoint, price, and data policy before sending private or regulated data.