/ spec

System spec

Authoritative configuration. Modules consume these values directly — no overrides.

Color Tokens

Runtime + risk palette. Bound to CSS variables.

ai
#4DA3FF
wallet
#18C37E
governance
#7A5CFF
enterprise
#2E2E2E
safe
#34C759
caution
#FF9F0A
risk
#FF453A

Glass Engine

Four-step blur ladder with edge glow and dynamic refraction.

blur-18px
blur-216px
blur-324px
blur-432px
edgeGlow = truedynamicRefraction = true

Motion

Single duration. Single easing. 120fps target.

duration
180ms
easing
spring
targetFPS
120

Modules

Runtime-level configuration. Each module is isolated.

AI Runtime

sandboxedtrue
localFirsttrue
executionModeslocal · hybrid · network
riskDetectiontrue

Wallet

chainsETH · BSC · SOL
secureEnclavetrue
transactionSimulationtrue
aiExplanationtrue

Agent Marketplace

typeslocal · hybrid · network · enterprise
stakeRequiredtrue
feeDistribution
developer
60%
compute
20%
treasury
10%
burn
10%

Staking

tieredAccesstrue
unlockFeaturesadvancedAI · agentPublishing · priorityCompute

Governance

weightedVotingtrue
aiProposalExplanationtrue
onChainExecutiontrue

Raw

Source of truth — copy verbatim into runtime config.

{
  "designSystem": {
    "glassEngine": {
      "blurLevels": [
        8,
        16,
        24,
        32
      ],
      "edgeGlow": true,
      "dynamicRefraction": true
    },
    "motion": {
      "transitionDurationMs": 180,
      "easing": "spring",
      "targetFPS": 120
    },
    "colorTokens": {
      "ai": "#4DA3FF",
      "wallet": "#18C37E",
      "governance": "#7A5CFF",
      "enterprise": "#2E2E2E",
      "safe": "#34C759",
      "caution": "#FF9F0A",
      "risk": "#FF453A"
    }
  },
  "modules": {
    "aiRuntime": {
      "sandboxed": true,
      "localFirst": true,
      "executionModes": [
        "local",
        "hybrid",
        "network"
      ],
      "riskDetection": true
    },
    "wallet": {
      "chains": [
        "ETH",
        "BSC",
        "SOL"
      ],
      "secureEnclave": true,
      "transactionSimulation": true,
      "aiExplanation": true
    },
    "agentMarketplace": {
      "types": [
        "local",
        "hybrid",
        "network",
        "enterprise"
      ],
      "stakeRequired": true,
      "feeDistribution": {
        "developer": 0.6,
        "compute": 0.2,
        "treasury": 0.1,
        "burn": 0.1
      }
    },
    "staking": {
      "tieredAccess": true,
      "unlockFeatures": [
        "advancedAI",
        "agentPublishing",
        "priorityCompute"
      ]
    },
    "governance": {
      "weightedVoting": true,
      "aiProposalExplanation": true,
      "onChainExecution": true
    }
  }
}