Skip to main content

Decentralized data ownership and settlement protocol for the AI era

Project description

Oasyce Claw Plugin Engine

Decentralized data-rights clearinghouse — settle access, usage, and revenue rights for the AI era. Local-first, zero-server, every node is the network.

Version Python Tests License

Quick Start · CLI Reference · Architecture · Access Control · OAS-DAS · Economics · Testing


Why Oasyce? Why Now?

For twenty years, "data is the new oil" remained a slogan. Humans couldn't coordinate data-rights clearing at scale — the cost of contracts, lawyers, reconciliation, and enforcement exceeded the value of the data itself.

Then AI agents arrived. For the first time in history, the primary consumers of data are machines, not people. Machines can verify signatures in milliseconds, settle atomically, price algorithmically, and trace leaks cryptographically. Everything that made human-to-human data-rights settlement impractical is exactly what machine-to-machine commerce does natively.

Oasyce is the rights-clearing network for this new economy. A protocol where AI agents autonomously register, license, settle, and enforce data rights — and humans simply run nodes and collect revenue.

What We Settle: Rights, Not Data

In the atomic economy, you sell ownership — if I have the chair, you don't. In the bit economy, data can be copied infinitely at zero cost. You cannot sell bits the way you sell atoms. What you can sell are the rights attached to those bits:

  • Access rights — who can decrypt and view this data
  • Usage rights — can you train AI on it? resell it? use it commercially?
  • Revenue rights — when this data generates value, who gets paid?
  • Attribution rights — who created this, permanently and irrevocably

Oasyce registers and settles these rights. The data itself can be free (open source, Creative Commons) or gated — the protocol doesn't care. It cares about who has what rights, and enforcing them automatically.


  • PoPC (Proof of Physical Capture) — Cryptographic certificates proving data provenance at the physical layer
  • Bancor Bonding Curves — Algorithmic pricing: no negotiation, no middlemen, price emerges from demand
  • Staking Economy — Run a node, stake OAS, become a stakeholder — your interests are the network's interests
  • Fingerprint Watermarking — Steganographic watermarks embedded per-buyer; leak a file and we trace it back to you
  • P2P Network — TCP+JSON mesh networking on port 9527, no central server, every node validates

Core principle: Your data, your keys, your revenue. No intermediaries.


Architecture

Built across 9 development phases:

Phase Component What it does
1 Ed25519 Cryptography Key generation, digital signatures, certificate signing
2 SQLite Persistent Ledger Blockchain-structured storage with Merkle trees and chained hashes
3 Blockchain Structure Block mining, hash chaining, Merkle root computation
4 P2P Networking TCP+JSON peer discovery and message relay (port 9527)
5 Block Synchronization 3-way validation, chain download, fork detection
6 Consensus Longest-chain rule, chain reorganization, rate limiting
7 Multi-Node Demo oasyce demo-network spins up N local nodes with consensus
8 Staking Economy Proof-of-Stake, validator lifecycle, slashing, halving rewards
9 Fingerprint Watermarking Steganographic embedding, extraction, leak tracing

Plus: Web GUI dashboard, settlement engine (Bancor curves), privacy filter, IPFS-compatible storage, PoPC verification service, oasyce_core bridge layer, data access control (L0-L3), reputation engine, exposure registry, OAS-DAS standard.


Economics Overview

Oasyce has two complementary economic layers. For full formulas, game theory analysis, and worked examples, see docs/ECONOMICS.md.

Data Access Fee Split (Unified Single Layer)

Every data purchase triggers a single fee split:

Payment: 100 OAS
  ├── Creator:     60 OAS (60%)
  ├── Validators:  20 OAS (20%) — split by stake weight
  ├── Burn:        15 OAS (15%) — permanent deflation
  └── Treasury:     5 OAS (5%)  — governance-controlled

The bonding curve is completely decoupled from fee settlement — reserve is never drained by distributions.

Bancor formula: ΔTokens = S × ((1 + ΔR/R)^F − 1) where S=supply, R=reserve, F=0.35 (connector weight)

Data Access Control (L0–L3)

Raw data exposure is minimized by default. Buyers purchase rights to use, not rights to possess:

Level Access Data Exposure Bond Multiplier
L0 Query Statistics, Q&A Zero
L1 Sample Redacted fragments Minimal
L2 Compute Model runs in TEE Zero
L3 Deliver Full + watermark Full

Bond is dynamic: Bond = TWAP(Value) × Multiplier × RiskFactor × (1 - Reputation/100) × ExposureFactor

Security Stack

Layer Mechanisms
Technical TEE enclaves, per-buyer watermarking
Access L0-L3 levels, creator-controlled caps
Economic Dynamic bond, bonding curve, 15% burn
Behavioral Agent reputation, sandbox, blacklist, exposure tracking
Temporal Liability windows (1–30 days by level)

Transaction Fee Distribution (Network Layer)

For each data access fee collected at the network level:

Recipient Share Purpose
Creator 60% Data creator gets the lion's share
Validators 20% Split by stake weight
Burn 15% Permanent deflation
Treasury 5% Protocol development

Block Rewards & Staking

  • Block reward: 4 OAS/block, halving every 1,051,200 blocks (~2 years)
  • Minimum stake: 10,000 OAS
  • Unbonding period: 7 days
  • Slashing: 100% for malicious blocks, 50% for double blocks, 5%/day for offline

Fingerprint Economics

Each buyer receives a uniquely watermarked copy. Leak detection: extract watermark → identify leaker → on-chain proof (fingerprint ↔ caller_id ↔ timestamp).


Data Access Control

Oasyce enforces four levels of data access, each with increasing exposure and correspondingly higher bond requirements. Buyers purchase rights to use, not rights to possess.

Access Levels

Level Method Data Exposure Bond Multiplier Use Case
L0 Query Aggregated statistics Zero "How many records match X?"
L1 Sample Redacted + watermarked fragments Minimal Preview before full purchase
L2 Compute Code executes in TEE, only outputs leave Zero Train a model without seeing raw data
L3 Deliver Full data + per-buyer watermark Full Traditional data delivery

Bond Calculation

Every access request requires a bond that is held for the liability window:

Bond = TWAP(Value) × Multiplier(Level) × RiskFactor × (1 - R/100) × ExposureFactor
  • Multipliers: L0=1.0, L1=2.0, L2=3.0, L3=5.0
  • Risk Factors: public=1.0, low=1.2, medium=1.5, high=2.0, critical=3.0
  • R = agent reputation score (higher reputation → lower bond)
  • ExposureFactor = 1 + (cumulative_exposure / asset_value) — prevents fragmentation attacks

Reputation Engine

Agents build trust through behavior. Reputation determines bond discounts and access privileges:

R(t+1) = R(t) + α·S − β·D − γ·L − δ·T

α = +5   successful access completion
β = −10  data damage or incorrect result
γ = −50  watermark leak detected
δ = −5   time decay (every 90 days)
  • Initial score: 10 (sandbox mode — L0 only)
  • Sandbox threshold: R < 20 restricts agent to L0 access
  • Floor after decay: 50 (decay alone cannot push below 50)

Liability Windows

Bonds are time-locked and released only after the liability period:

Level Window Rationale
L0 Query 1 day No data exposed
L1 Sample 3 days Minimal exposure
L2 Compute 7 days TEE output verification
L3 Deliver 30 days Full exposure, maximum risk

Exposure Registry

Cumulative exposure tracking prevents fragmentation attacks — many small L1 requests cannot circumvent the bond requirement of a single L3 delivery:

E*(agent, dataset) = max(V_current, Σ V_i)

OAS-DAS Standard

The Oasyce Data Asset Standard (OAS-DAS) defines a machine-readable, five-layer schema for every data asset on the network. It enables semantic deduplication, automated policy enforcement, and cross-platform interoperability.

Five-Layer Schema

Layer Name Contents
L1 Identity Global unique ID, creator, timestamps, version, namespace
L2 Metadata Title, tags, file info, checksum, language, category
L3 Access Policy Risk level, max access level (L0-L3), pricing model, license type, geographic restrictions, expiry
L4 Compute Interface TEE execution parameters: supported operations, input/output schemas, runtime, resource limits
L5 Provenance PoPC signature, certificate issuer, parent assets, fingerprint ID, semantic vector

Validation

Every asset is validated against the OAS-DAS schema before registration:

  • Risk levels: public, low, medium, high, critical
  • Access levels: L0, L1, L2, L3
  • Pricing models: bonding_curve, free
  • License types: proprietary, cc-by, cc-by-sa, mit, public-domain

Semantic Deduplication

Layer 5 includes a semantic vector that enables automatic detection of near-duplicate assets. The similarity() method computes cosine similarity between asset vectors, and is_duplicate() flags assets above the configurable threshold.

from oasyce_plugin.standards import OasDas

# Build a standard descriptor from existing asset metadata
descriptor = OasDas.from_asset_metadata(asset_metadata)

# Validate
errors = descriptor.validate()
assert errors == []

# Check for duplicates
score = descriptor.similarity(other_descriptor)

Quick Start

# Install from PyPI (recommended)
pip install oasyce

# Or install as an OpenClaw skill
clawhub install oasyce-data-rights

From source

# Clone and install
git clone https://github.com/Shangri-la-0428/Oasyce_Claw_Plugin_Engine.git
cd Oasyce_Claw_Plugin_Engine
python3 -m venv venv
source venv/bin/activate
pip install -e .

# Configure
cp .env.example .env
# Edit .env with your settings (OASYCE_VAULT_DIR, OASYCE_OWNER, OASYCE_SIGNING_KEY)

# Verify installation
oasyce --help

Register your first asset

oasyce register /path/to/file.pdf --owner "Alice" --tags "Research,Genesis"

Run the full demo (register → quote → buy → shares)

oasyce demo

Launch the web dashboard

oasyce gui
# Opens at http://localhost:8420

Spin up a local P2P network

oasyce demo-network --nodes 3

CLI Reference

Asset Management

# Register a file as an Oasyce asset
oasyce register <file_path> --owner "Name" --tags "Tag1,Tag2"

# Search assets by tag
oasyce search <tag> [--json]

# Get Bancor pricing quote
oasyce quote <asset_id> [--use-core]

# Buy access to an asset
oasyce buy <asset_id> --buyer "BuyerName" --amount 10.0

# Verify a PoPC certificate
oasyce verify <asset_id>

Staking

# Stake OAS tokens for a validator
oasyce stake <validator_id> <amount>

# View share holdings
oasyce shares <owner>

P2P Node

# Start a P2P node
oasyce node start [--port 9527]

# Show node info
oasyce node info

# Ping a peer
oasyce node ping <host:port>

Fingerprint Watermarking

# Embed a watermark
oasyce fingerprint embed <file_path> --caller "buyer_id" [--output watermarked.png]

# Extract watermark from a file
oasyce fingerprint extract <file_path>

# Trace a fingerprint to its distribution record
oasyce fingerprint trace <fingerprint_hash>

# List all distributions for an asset
oasyce fingerprint list <asset_id>

Data Access Control

# Query aggregated statistics (L0 — zero exposure)
oasyce access query <asset_id> --agent <agent_id> [--query "count matching X"]

# Request redacted sample (L1 — minimal exposure)
oasyce access sample <asset_id> --agent <agent_id> [--size 10]

# Execute code in TEE (L2 — zero exposure)
oasyce access compute <asset_id> --agent <agent_id> --code "model.fit(data)"

# Full delivery with watermark (L3 — full exposure)
oasyce access deliver <asset_id> --agent <agent_id>

# Calculate bond requirement for a given access level
oasyce access bond <asset_id> --agent <agent_id> --level L0|L1|L2|L3

Reputation

# Check an agent's reputation score
oasyce reputation check <agent_id>

# Update reputation (admin/testing)
oasyce reputation update <agent_id> [--success] [--leak] [--damage]

Asset Standard (OAS-DAS)

# View full 5-layer OAS-DAS descriptor for an asset
oasyce asset-info <asset_id> [--json]

# Validate an asset against the OAS-DAS schema
oasyce asset-validate <asset_id> [--json]

Utilities

# Launch web GUI dashboard
oasyce gui [--port 8420]

# Run multi-node demo with consensus
oasyce demo-network [--nodes 3]

# Run end-to-end protocol demo
oasyce demo

# JSON output for any command
oasyce <command> --json

Python SDK

from oasyce_plugin.config import Config
from oasyce_plugin.skills.agent_skills import OasyceSkills

# Initialize
config = Config.from_env()
skills = OasyceSkills(config)

# Register a file
file_info = skills.scan_data_skill("/path/to/file.pdf")
metadata = skills.generate_metadata_skill(file_info, ["Core"], "Alice")
signed = skills.create_certificate_skill(metadata)
result = skills.register_data_asset_skill(signed)

print(f"Asset ID: {signed['asset_id']}")

# Get pricing quote
quote = skills.trade_data_skill(signed['asset_id'])
print(f"Price: {quote['current_price_oas']} OAS")

Settlement Engine (direct)

from oasyce_plugin.services.settlement.engine import SettlementEngine

engine = SettlementEngine()
pool = engine.register_asset("ASSET_001", owner="Alice")
receipt = engine.execute("ASSET_001", buyer="Bob", payment_oas=100.0)

print(f"Tokens received: {receipt.quote.equity_minted}")
print(f"Burned: {receipt.quote.burn_amount} OAS")
print(f"New spot price: {receipt.quote.spot_price_after} OAS")

Staking Engine (direct)

from oasyce_plugin.services.staking import StakingEngine

staking = StakingEngine()
staking.stake("validator_1", 5000.0)
reward = staking.produce_block("validator_1", block_height=1)
fees = staking.distribute_fees(100.0, creator="Alice")

Project Structure

Oasyce_Claw_Plugin_Engine/
├── oasyce_plugin/                  # Core package
│   ├── cli.py                      # CLI entry point (argparse)
│   ├── config.py                   # Configuration management
│   ├── models.py                   # Data models
│   ├── bridge/
│   │   └── core_bridge.py          # Bridge to oasyce_core protocol
│   ├── crypto/
│   │   ├── keys.py                 # Ed25519 key generation & signing
│   │   └── merkle.py               # Merkle tree implementation
│   ├── engines/
│   │   ├── core_engines.py         # Local verification engines
│   │   ├── schema.py               # Data validation schemas
│   │   ├── result.py               # Unified result types
│   │   └── l3_tee/                 # TEE / ZK-PoE engine
│   ├── fingerprint/
│   │   ├── engine.py               # Steganographic watermarking
│   │   └── registry.py             # Distribution tracking
│   ├── gui/
│   │   └── app.py                  # Web dashboard
│   ├── network/
│   │   └── node.py                 # P2P TCP+JSON node
│   ├── security/
│   │   └── keymanager.py           # Key management
│   ├── services/
│   │   ├── access/
│   │   │   ├── __init__.py         # AccessLevel enum, helpers
│   │   │   ├── config.py           # Access control configuration
│   │   │   └── provider.py         # L0-L3 access methods + bond calc
│   │   ├── reputation/
│   │   │   └── __init__.py         # Agent reputation scoring engine
│   │   ├── exposure/
│   │   │   ├── registry.py         # Cumulative exposure tracking
│   │   │   └── window.py           # Liability window + bond release
│   │   ├── settlement/
│   │   │   └── engine.py           # Bancor bonding curve settlement
│   │   ├── staking/
│   │   │   └── __init__.py         # PoS staking, slashing, rewards
│   │   └── verification/
│   │       ├── api.py              # Verification API
│   │       └── engine.py           # PoPC verification engine
│   ├── skills/
│   │   └── agent_skills.py         # AI agent integration (OpenClaw)
│   ├── standards/
│   │   ├── __init__.py             # OAS-DAS exports
│   │   └── oas_das.py              # 5-layer data asset standard schema
│   ├── storage/
│   │   ├── __init__.py             # Storage backends
│   │   ├── ledger.py               # SQLite blockchain ledger
│   │   └── ipfs_client.py          # IPFS integration
│   └── scripts/
│       └── demo_network.py         # Multi-node demo orchestrator
├── tests/                          # 335 tests across 19 test files
├── examples/                       # Usage examples
├── scripts/                        # Setup & utility scripts
├── docs/                           # Documentation
│   └── ECONOMICS.md                # Detailed economic model
├── setup.py                        # Package config (v1.0.0)
└── README.md                       # This file

Testing

# Run all tests
python3 -m pytest tests/ -v

# Run with coverage
python3 -m pytest tests/ -v --cov=oasyce_plugin --cov-report=term-missing

# Run a specific test file
python3 -m pytest tests/test_settlement_engine.py -v

Test suite: 335 tests across 19 test files covering:

Test File Coverage Area
test_blockchain.py Block mining, hash chains, Merkle trees
test_consensus.py Longest chain, reorg, rate limiting
test_core_bridge.py oasyce_core protocol integration
test_core_flow.py End-to-end registration flow
test_crypto.py Ed25519 signatures, key management
test_engines.py Local verification engines
test_fingerprint.py Watermark embed/extract/trace
test_integration.py Cross-module integration
test_l3_tee_engine.py TEE/ZK proof engine
test_network.py P2P networking, peer discovery
test_privacy_and_storage.py Privacy filter, storage backends
test_settlement_engine.py Bancor curves, fee splits
test_staking.py Staking, slashing, rewards
test_sync.py Block synchronization
test_verification_service.py PoPC verification service
test_access_control.py L0-L3 access, bond calc, reputation
test_exposure_registry.py Cumulative exposure, fragmentation
test_liability_window.py Bond lock/release, time windows
test_oas_das.py 5-layer schema validation, dedup

Configuration

.env file (recommended)

OASYCE_VAULT_DIR=~/oasyce/genesis_vault
OASYCE_OWNER=YourName
OASYCE_SIGNING_KEY=your-secret-key-here
OASYCE_SIGNING_KEY_ID=my_key_001

Environment variables

export OASYCE_VAULT_DIR=~/oasyce/genesis_vault
export OASYCE_OWNER=YourName
export OASYCE_SIGNING_KEY=your-secret-key
export OASYCE_SIGNING_KEY_ID=my_key_001

Security: Use a strong random key (32+ characters) in production. Development can use DEFAULT_INSECURE_DEV_KEY_0x123.


Stats

Metric Value
Tests 335 passing
Source files ~50
Development phases 9
Core dependencies Zero (stdlib only for protocol)

License

Proprietary - All rights reserved.


Your AI works for you every day. Oasyce makes sure it gets paid.

GitHub · Protocol Overview · Economics · Contributing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oasyce-1.0.1.tar.gz (124.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oasyce-1.0.1-py3-none-any.whl (105.2 kB view details)

Uploaded Python 3

File details

Details for the file oasyce-1.0.1.tar.gz.

File metadata

  • Download URL: oasyce-1.0.1.tar.gz
  • Upload date:
  • Size: 124.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for oasyce-1.0.1.tar.gz
Algorithm Hash digest
SHA256 5a38be8166ea4983eaccc9d8a287351be92a6c7076cb0bd238b9c235e6b0fdb1
MD5 ad83e6e409c27d3ccba1b7778e13c097
BLAKE2b-256 50d41b3fb3ade24bf57d91a0478257d6dd919b8550ebee60a50f2313c31e2e4c

See more details on using hashes here.

File details

Details for the file oasyce-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: oasyce-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 105.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for oasyce-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 33dada86ad17a35e12838d25f790c3ddfc2bbc619134ee68a70a56ae50173b18
MD5 40cb9c3bd885af2749c7676e6a51515c
BLAKE2b-256 9b2221d080d1208735e8e1c518127e1465185bce780cce0e96cfd5e35ca711c4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page