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| #!/bin/sh |
| #2 | # Solana Clawd Automation Installer — thin wrapper |
| #3 | # curl -fsSL https://x402.wtf/automation/install.sh | bash |
| #4 | set -e |
| #5 | TARGET="${OPENCLAWD_HOME:-$HOME/.solana-clawd}" |
| #6 | if [ ! -d "$TARGET/.git" ]; then |
| #7 | git clone https://github.com/x402agent/solana-clawd.git "$TARGET" |
| #8 | else |
| #9 | git -C "$TARGET" pull --ff-only |
| #10 | fi |
| #11 | cd "$TARGET" |
| #12 | npm install && npm run build |
| #13 | exec npm run automation:full |
| #14 |