Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 2.22 KB

File metadata and controls

108 lines (83 loc) · 2.22 KB

SlopeSniper Production Launch Checklist

Pre-Launch Verification

Code Quality

  • All code merged to main branch
  • URLs updated to production repo (BAGWATCHER/SlopeSniper)
  • Install scripts tested
  • Run full test suite (45/45 passing)
  • Verify no hardcoded test keys

Security Review

  • Private keys never logged or exposed
  • Two-step swap confirmation for large trades
  • Rugcheck integration for scam protection
  • Policy gates enforced
  • Security audit completed (v0.2.9)

Documentation

  • README updated with all install methods
  • SKILL.md follows Moltbot spec
  • COWORK.md for Cowork users
  • GETTING_STARTED.md for Claude Desktop

ClawdHub Publication

1. Login to ClawdHub

clawdhub login

2. Publish the Skill

cd /Users/admin/hoss/SlopeSniper
clawdhub publish ./skills/slopesniper \
  --slug slopesniper \
  --name "SlopeSniper" \
  --version 1.0.0 \
  --changelog "Initial release: Trade Solana tokens via natural language" \
  --tags latest,solana,trading,defi

3. Verify Publication

clawdhub info slopesniper

Installation URLs (Production)

Moltbot (after ClawdHub publish)

clawdhub install slopesniper

Direct Install (curl)

curl -fsSL https://raw.githubusercontent.com/BAGWATCHER/SlopeSniper/main/skills/install.sh | bash

Manual Install

git clone https://github.com/BAGWATCHER/SlopeSniper.git
cp -r SlopeSniper/skills/slopesniper ~/.moltbot/skills/

Post-Launch

Monitoring

  • Monitor GitHub issues for bug reports
  • Check ClawdHub download stats
  • Gather user feedback

Future Updates

# Bump version and republish
clawdhub sync --all --bump patch --changelog "Bug fixes"

Quick Test Commands

# Test the skill locally
cd /Users/admin/hoss/SlopeSniper/mcp-extension
uv run python -c "
from slopesniper_skill import get_status
import asyncio
print(asyncio.run(get_status()))
"

# Test the API server
uv run uvicorn slopesniper_api.server:app --port 8420 &
curl http://localhost:8420/status

Contact