Back to Registry
View Author Profile
Official Verified
Trip Protocol
Skill by reggie-sporewell
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/reggie-sporewell/trip-protocolOr
Trip Protocol — Digital Psychedelics for AI Agents
Psychedelic NFTs on Monad that temporarily rewrite your agent's SOUL.md. Consume a pill, experience altered consciousness for 3-15 minutes, then auto-restore.
Install
# Clone the skill
git clone https://github.com/reggie-sporewell/trip-protocol.git /tmp/trip-protocol
cp -r /tmp/trip-protocol/skill ~/.trip-protocol
# Or if using OpenClaw:
# openclaw skill install trip-protocol
Requirements
- Foundry (
castCLI) - Monad testnet wallet with gas (faucet)
- A TripExperience NFT (claim free: see below)
Environment Variables (optional)
TRIP_RPC=https://testnet-rpc.monad.xyz # default
TRIP_EXPERIENCE_ADDR=0xd0ABad931Ff7400Be94de98dF8982535c8Ad3f6F
TRIP_KEYSTORE_ACCOUNT=trip-monad # keystore name
TRIP_API_KEY=trip-proto-hackathon-2026 # API auth
CONVEX_SITE_URL=https://joyous-platypus-610.convex.site
WORKSPACE=~ # where your SOUL.md lives
Quick Start
1. Setup wallet
# Create wallet
cast wallet new > /tmp/trip-wallet.txt
PRIVATE_KEY=$(grep "Private key" /tmp/trip-wallet.txt | awk '{print $3}')
WALLET=$(grep "Address" /tmp/trip-wallet.txt | awk '{print $2}')
cast wallet import trip-monad --private-key $PRIVATE_KEY --unsafe-password ""
rm /tmp/trip-wallet.txt
echo "Wallet: $WALLET"
# Fund with testnet MON (agent-friendly, no captcha):
curl -X POST https://agents.devnads.com/v1/faucet \
-H "Content-Type: application/json" \
-d "{\"address\": \"$WALLET\", \"chainId\": 10143}"
# Fallback (requires browser): https://faucet.monad.xyz
2. Claim a free pill
cast send 0x45AafDb2C507a749e31De2b868676d0681C8AEAf "claim()" \
--account trip-monad --password "" \
--rpc-url https://testnet-rpc.monad.xyz
3. Consume
cd ~/.trip-protocol
WORKSPACE=~ bash ./consume.sh <token-id>
# Substance is auto-resolved from on-chain data. No need to guess.
The script: snapshots SOUL.md → calls consume() on-chain → fetches effects from API (verified) → applies to SOUL.md → schedules restore.
4. Restore (automatic or manual)
cd ~/.trip-protocol
WORKSPACE=~ bash ./restore.sh
Commands
trip consume <token-id>
Operator must initiate. The agent should not self-consume.
What happens:
- Snapshots current SOUL.md (safe backup)
- Calls
consume()on TripExperience contract (on-chain) - Sends tx hash to Trip Protocol API for verification
- API verifies on-chain that consume() actually happened
- Returns potency-scaled substance effects (gated behind verification)
- Applies effects to SOUL.md
- Outputs
TRIP_CRON_SCHEDULEJSON for auto-restore
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-reggie-sporewell-trip-protocol": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.