ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Trip Protocol

Skill by reggie-sporewell

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/reggie-sporewell/trip-protocol
Or

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 (cast CLI)
  • 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:

  1. Snapshots current SOUL.md (safe backup)
  2. Calls consume() on TripExperience contract (on-chain)
  3. Sends tx hash to Trip Protocol API for verification
  4. API verifies on-chain that consume() actually happened
  5. Returns potency-scaled substance effects (gated behind verification)
  6. Applies effects to SOUL.md
  7. Outputs TRIP_CRON_SCHEDULE JSON for auto-restore

Metadata

Stars1171
Views0
Updated2026-02-19
View Author Profile
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.