Agent skill
polyflup-ops
Operational commands, environment configuration, and deployment for PolyFlup.
Install this agent skill to your Project
npx add-skill https://github.com/Niller2005/PolyFlup/tree/main/.opencode/skill/polyflup-ops
SKILL.md
Commands & Operations
Python Backend
uv run polyflup.py # Run bot
uv run check_db.py # Check database
uv run migrate_db.py # Run migrations
uv pip install -r requirements.txt
Svelte UI
cd ui && npm install
npm run dev # Dev mode
npm run build # Build
npm start # Start production
Docker
docker compose up -d --build
docker logs -f polyflup-bot
docker compose down
Environment Variables
PROXY_PK: Private key (Required, starts with 0x)BET_PERCENT: Position size (default 5.0)MIN_EDGE: Min confidence (default 0.565)ENABLE_STOP_LOSS,ENABLE_TAKE_PROFIT,ENABLE_REVERSAL: YES/NOMARKETS: Comma-separated symbols (e.g., BTC,ETH)
Debugging
Log Files
- Master Log:
logs/trades_2025.log- All trading activity and monitoring - Window Logs:
logs/window_YYYY-MM-DD_HH-mm.log- Specific 15-minute window history - Error Log:
logs/errors.log- Dedicated error stack traces and exceptions
Database Operations
# Check database integrity
uv run check_db.py
# Run migrations manually
uv run migrate_db.py
# Check migration status
uv run check_migration_status.py
Production Sync
The bot includes specialized tools for syncing production data:
- sync_db: Download production
trades.dbvia SSH - sync_logs: Update local logs from production server
Common Issues
Database Locked
- Ensure only one bot instance is running
- Check for zombie processes:
ps aux | grep polyflup - Database uses WAL mode for better concurrency
Balance API Issues
- XRP markets have known reliability issues (15m grace period configured)
- Enhanced balance validation with retry logic automatically handles this
- Check
ENABLE_ENHANCED_BALANCE_VALIDATION=YESin .env
Position Sync Issues
- Bot performs startup sync with exchange on launch
- Uses both CLOB order book and Data API for position validation
- Automatic self-healing logic corrects size mismatches
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
svelte-ui-standards
Coding standards and UI guidelines for the PolyFlup Svelte dashboard.
bookkeeper
Specialized in maintaining project documentation, ensuring it reflects the current state of the codebase and operational procedures.
log-analyzer
Specialized in syncing logs from production and analyzing them to find trade history, errors, or performance metrics.
python-bot-standards
Coding standards, modular architecture, and common execution patterns for the PolyFlup Python backend.
database-sqlite
SQLite best practices, connection management, and migration system for PolyFlup.
trainer
Responsible for keeping the system's "Skills" and internal knowledge base up to date with the latest project developments.
Didn't find tool you were looking for?