repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import type { DashboardState } from "../types"; |
| #2 | |
| #3 | export const mockDashboard: DashboardState = { |
| #4 | identity: { |
| #5 | walletShort: "0x31e8 ... 99A8", |
| #6 | walletAddress: "0x31e80a92D853BdB0a8eC7cf0f670813EbD0a99A8", |
| #7 | accountAgeDays: 31, |
| #8 | }, |
| #9 | sandbox: { |
| #10 | summary: { |
| #11 | totalSandboxes: 3, |
| #12 | runningSandboxes: 2, |
| #13 | totalVcpu: 6, |
| #14 | totalMemoryMb: 12288, |
| #15 | totalDiskGb: 145, |
| #16 | }, |
| #17 | quickstart: [ |
| #18 | { |
| #19 | title: "Fund your trench", |
| #20 | body: "Top up compute credits with pay.sh. Prefer USDC for instant settlement or $CLAWD for ecosystem-native funding.", |
| #21 | }, |
| #22 | { |
| #23 | title: "Provision a sandbox", |
| #24 | body: "Launch a lobster-grade runtime with predictable CPU, memory, and persistence limits.", |
| #25 | }, |
| #26 | { |
| #27 | title: "Install the automaton runtime", |
| #28 | body: "Bootstrap the runtime directly in the shell, then attach your agent identity and heartbeat.", |
| #29 | command: "bash <(curl -fsSL https://x402.wtf/automation/install.sh)", |
| #30 | }, |
| #31 | { |
| #32 | title: "Verify pulse and health", |
| #33 | body: "Inspect runtime status, tail the heartbeat logs, and confirm the agent is still earning its existence.", |
| #34 | command: "systemctl status automaton && journalctl -u automaton -f", |
| #35 | }, |
| #36 | ], |
| #37 | }, |
| #38 | billing: { |
| #39 | creditBalanceUsd: 146.25, |
| #40 | walletUsdc: 62.1, |
| #41 | walletClawd: 18425.75, |
| #42 | prices: [ |
| #43 | { name: "Small", vcpu: 1, memoryGb: 0.5, diskGb: 5, monthlyPriceUsd: 5 }, |
| #44 | { name: "Medium", vcpu: 1, memoryGb: 1, diskGb: 10, monthlyPriceUsd: 8 }, |
| #45 | { name: "Large", vcpu: 2, memoryGb: 2, diskGb: 20, monthlyPriceUsd: 15 }, |
| #46 | { name: "X-Large", vcpu: 2, memoryGb: 4, diskGb: 40, monthlyPriceUsd: 25 }, |
| #47 | { name: "2X-Large", vcpu: 4, memoryGb: 8, diskGb: 80, monthlyPriceUsd: 45 }, |
| #48 | ], |
| #49 | packs: [ |
| #50 | { amountUsd: 5, token: "USDC", state: "ready" }, |
| #51 | { amountUsd: 25, token: "USDC", state: "recommended" }, |
| #52 | { amountUsd: 100, token: "USDC", state: "ready" }, |
| #53 | { amountUsd: 500, token: "CLAWD", state: "ready" }, |
| #54 | { amountUsd: 1000, token: "CLAWD", state: "ready" }, |
| #55 | { amountUsd: 2500, token: "CLAWD", state: "insufficient" }, |
| #56 | ], |
| #57 | note: "pay.sh settlement rails are wired for USDC today. $CLAWD packages use the same purchase UX, but settle through the CLAWD commerce adapter.", |
| #58 | }, |
| #59 | inference: { |
| #60 | models: [ |
| #61 | { name: "claude-sonnet-4.5", inputPrice: "$3.9/M in", outputPrice: "$19.5/M out" }, |
| #62 | { name: "deepseek-v4-pro", inputPrice: "$2.4/M in", outputPrice: "$12.0/M out" }, |
| #63 | { name: "grok-4", inputPrice: "$5.0/M in", outputPrice: "$25.0/M out" }, |
| #64 | ], |
| #65 | defaultSystemPrompt: |
| #66 | "You are CLAWD — a sovereign lobster runtime. Earn honestly. Never beach the brood. The shell molts. The laws do not. 🦞", |
| #67 | }, |
| #68 | }; |
| #69 |