Static documentation site for MPPCash — banking infrastructure for AI agents. Programmable USDC accounts on Solana, provisioned via API, governed by spending policy, built for autonomous operation.
docs/
├── index.html # Overview / landing page
├── quickstart.html # 5-step getting started guide
├── concepts.html # Core mental model
├── cli.html # CLI reference
├── roadmap.html # Phase 1–4 roadmap
│
├── api/
│ ├── accounts.html # Accounts API reference
│ ├── transfers.html # Transfers API reference
│ ├── policy.html # Spending policy API reference
│ └── webhooks.html # Webhooks API reference
│
├── sdk/
│ ├── typescript.html # TypeScript SDK
│ ├── python.html # Python (Phase 3, REST examples in the meantime)
│ └── openclaw.html # OpenClaw agent integration
│
├── architecture/
│ ├── overview.html # System architecture and request flow
│ ├── solana.html # Why Solana + USDC
│ └── security.html # Five-layer security model
│
├── guides/
│ ├── first-agent.html # End-to-end setup walkthrough
│ ├── policy.html # Spending policy templates
│ ├── agent-to-agent.html # Orchestrator / sub-agent payment patterns
│ └── webhooks.html # Webhook setup and verification
│
└── assets/
├── style.css # Global stylesheet
├── script.js # Sidebar, tabs, accordion
└── favicon.svg # Site favicon
These are plain HTML files — no build step required. Open any .html file directly in a browser, or serve the directory with any static file server:
npx serve .
# or
python3 -m http.server 8080Font files (AirbnbCereal, Menlo) are resolved relative to a public/fonts/ directory in the parent project. If you're viewing the docs standalone, the site falls back to system fonts cleanly.
Phase 1 is available in private beta. See roadmap.html for what's coming in Phase 2–4.