synapz-org

basilica-miner

0
0
# Install this skill:
npx skills add synapz-org/basilica-miner-claude-skill

Or install specific skill: npx add-skill https://github.com/synapz-org/basilica-miner-claude-skill

# Description

This skill should be used when setting up, managing, or troubleshooting Basilica GPU miner operations on Bittensor Subnet 39 (mainnet) or 387 (testnet). Use it for GPU provider tasks including SSH configuration, validator authentication setup, node registration, performance monitoring, uptime optimization, and resolving common issues like SSH access problems, validator discovery failures, or GPU validation errors. Critical for miners struggling with SSH key deployment to GPU nodes or validator connectivity.

# SKILL.md


name: basilica-miner
description: This skill should be used when setting up, managing, or troubleshooting Basilica GPU miner operations on Bittensor Subnet 39 (mainnet) or 387 (testnet). Use it for GPU provider tasks including SSH configuration, validator authentication setup, node registration, performance monitoring, uptime optimization, and resolving common issues like SSH access problems, validator discovery failures, or GPU validation errors. Critical for miners struggling with SSH key deployment to GPU nodes or validator connectivity.


Basilica Miner Skill

Overview

Set up and operate Basilica GPU mining nodes to earn rewards by providing compute resources on the Bittensor decentralized GPU marketplace (Subnet 39 mainnet, 387 testnet). This skill provides expert guidance for GPU providers on miner setup, SSH configuration, validator interaction, monitoring, and troubleshooting.

Key Innovation: Basilica uses SSH-based direct access where validators SSH directly to GPU nodes for verification, eliminating intermediary trust requirements while maintaining security through cryptographic verification.

Core Capabilities

1. MINER SETUP WORKFLOW

Prerequisites Check before starting:
- Linux server (Ubuntu 22.04+ recommended): 8+ CPU cores, 16GB+ RAM
- GPU nodes with NVIDIA drivers (H100/H200/A100), CUDA β‰₯12.8, Docker + NVIDIA Container Toolkit
- Bittensor wallet registered to subnet 39 (mainnet) or 387 (testnet)
- Public IP or port forwarding for miner server
- SSH access from miner server to all GPU nodes

Quick Start (6-Phase Setup):

  1. Generate SSH Keys
    bash ./scripts/setup_ssh_keys.sh
  2. Creates miner SSH key pair
  3. Deploys to all GPU nodes
  4. Verifies connectivity and GPU access

  5. Generate Configuration
    bash ./scripts/generate_config.sh miner.toml

  6. Interactive configuration wizard
  7. Collects network, wallet, and node details
  8. Creates production-ready miner.toml

  9. Verify Setup
    bash python scripts/check_miner_health.py --config miner.toml

  10. Comprehensive health checks
  11. Validates SSH connectivity
  12. Tests GPU availability
  13. Checks wallet registration

  14. Build Miner
    bash git clone https://github.com/one-covenant/basilica cd basilica ./scripts/miner/build.sh --release

  15. Deploy
    bash sudo mkdir -p /opt/basilica/{config,data} sudo cp basilica-miner /opt/basilica/ sudo cp miner.toml /opt/basilica/config/

  16. Start Miner
    ```bash
    # Create systemd service
    sudo tee /etc/systemd/system/basilica-miner.service > /dev/null << 'EOF'
    [Unit]
    Description=Basilica Miner
    After=network-online.target

[Service]
Type=simple
User=root
WorkingDirectory=/opt/basilica
ExecStart=/opt/basilica/basilica-miner --config /opt/basilica/config/miner.toml
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target
EOF

# Enable and start
sudo systemctl daemon-reload
sudo systemctl enable basilica-miner
sudo systemctl start basilica-miner

# Monitor
sudo journalctl -u basilica-miner -f
```

2. SSH CONFIGURATION (CRITICAL FOR SUCCESS)

The #1 Issue: Miners struggling to set up SSH access properly for validators to reach GPU nodes.

SSH Architecture:

Miner Server ──(miner_node_key)──> GPU Nodes
Validator ────(ephemeral key)────> GPU Nodes (deployed by miner)

Step-by-Step SSH Setup:

  1. Generate Miner's SSH Key
    bash ssh-keygen -t ed25519 -f ~/.ssh/miner_node_key -C "basilica-miner" -N "" chmod 600 ~/.ssh/miner_node_key chmod 644 ~/.ssh/miner_node_key.pub

  2. Create Dedicated User on Each GPU Node
    bash # On each GPU node sudo useradd -m -s /bin/bash basilica sudo usermod -aG docker basilica sudo mkdir -p /home/basilica/.ssh sudo chmod 700 /home/basilica/.ssh sudo chown -R basilica:basilica /home/basilica/.ssh

  3. Deploy Miner's Public Key to Nodes
    ```bash
    # Automated
    ssh-copy-id -i ~/.ssh/miner_node_key.pub basilica@node_ip

# Or use the setup script
./scripts/setup_ssh_keys.sh --nodes "basilica@node1 basilica@node2"
```

  1. Verify Connectivity
    bash ssh -i ~/.ssh/miner_node_key basilica@node_ip "nvidia-smi"

  2. Harden SSH on GPU Nodes (/etc/ssh/sshd_config):
    PermitRootLogin no PasswordAuthentication no PubkeyAuthentication yes MaxStartups 30:30:100 MaxSessions 100

  3. Configure miner.toml:
    ```toml
    [ssh_session]
    miner_node_key_path = "~/.ssh/miner_node_key"

[node_management]
nodes = [
{ host = "192.168.1.100", port = 22, username = "basilica" },
{ host = "192.168.1.101", port = 22, username = "basilica" },
]
```

How Validator Access Works:
1. Validator sends gRPC authentication request with SSH public key
2. Miner verifies validator signature (Bittensor hotkey)
3. Miner deploys validator's SSH key to all nodes (tagged as validator-{hotkey})
4. Validator SSH's directly to nodes for GPU verification
5. Miner removes validator's key after session expiry (default: 1 hour)

Common SSH Issues β†’ See Troubleshooting section

3. VALIDATOR INTERACTION & AUTHENTICATION

How Validators Discover and Verify Miners:

  1. Discovery (Every 10 minutes)
  2. Validator queries Bittensor metagraph for subnet miners
  3. Extracts miner endpoints (axon IP:port)

  4. Authentication (gRPC)

  5. Validator sends: hotkey + signature + SSH public key + nonce
  6. Miner verifies: signature matches validator hotkey, timestamp fresh (<5 min), target miner hotkey correct

  7. SSH Key Deployment

  8. Miner validates SSH key format
  9. Tags key with validator-{hotkey}
  10. Deploys to all configured nodes via SSH

  11. Node Discovery

  12. Validator requests node connection details
  13. Miner responds with: node IDs, hostnames, ports, usernames, status

  14. Direct Verification (Two-tier strategy)

  15. Full (every 6 hours): Execute GPU attestation binary, verify hardware
  16. Lightweight (every 10 min): SSH connectivity test only

  17. Cleanup

  18. Miner removes validator's SSH key after session expires

Validator Assignment Strategies:

Highest Stake (Recommended):

[validator_assignment]
enabled = true
strategy = "highest_stake"
min_stake_threshold = 12000.0  # TAO
validator_hotkey = "5G3qVaXz..."  # Optional: pin to specific validator
  • Most secure (single trusted validator)
  • Simplest operations
  • Best for production

Open Access (Testing Only):

[validator_assignment]
enabled = false
  • Any validator can access
  • Higher security risk
  • Only for testnet/debugging

4. SCORING & REWARDS

Node Scoring Formula:

Node Score = (50% Γ— SSH Success Rate) + (50% Γ— Binary Validation Result)
Miner Score = Average(all node scores)

Uptime Ramp-Up System (14-Day Model):
- New nodes start at 0% reward multiplier
- Linear increase to 100% over 14 days of continuous uptime
- Any validation failure resets counter to 0
- Effective GPU count = actual count Γ— uptime multiplier

GPU Requirements for Rewards:
- Eligible: H100, H200, B200
- Ineligible: A100, V100, RTX series (still validated, no rewards)
- Minimum CUDA Capability: β‰₯8.7
- Minimum CUDA Version: β‰₯12.8

Target Metrics for Top Miners:
- SSH Success Rate: >95%
- Binary Validation Pass Rate: 100%
- Uptime: 99.9% (minimize resets)
- Response Time: <5s for SSH connections
- Node Count: More nodes β†’ more rewards

Weight Distribution:
- Weights set every 360 blocks (~1 hour)
- Based on: GPU category, validation success, effective GPU count
- Burn percentage: 80%+ sent to burn address

5. MONITORING & MAINTENANCE

Built-in Health Checks:

# Miner health endpoint
curl http://localhost:8080/health

# Prometheus metrics
curl http://localhost:9090/metrics

# Key metrics to watch:
# - basilica_miner_node_count (should match configured nodes)
# - basilica_miner_validator_connections_total (growing)
# - basilica_miner_ssh_deployments_total (growing)
# - basilica_miner_authentication_success_total (high rate)

Automated Health Monitoring:

# Use the health check script regularly
python scripts/check_miner_health.py --config /opt/basilica/config/miner.toml

# Schedule with cron for alerts
*/15 * * * * python /path/to/check_miner_health.py --config /opt/basilica/config/miner.toml || mail -s "Miner Health Alert" [email protected]

Manual Node Testing:

# Test all nodes
for node in node1 node2 node3; do
  echo "Testing $node..."
  ssh -i ~/.ssh/miner_node_key basilica@$node << 'EOF'
    echo "=== GPU Status ==="
    nvidia-smi --query-gpu=index,name,driver_version --format=csv
    echo "=== Docker GPU ==="
    docker run --rm --gpus all nvidia/cuda:12.8.0-base-ubuntu24.04 nvidia-smi
    echo "=== Storage ==="
    df -h / | tail -1
EOF
done

Log Monitoring:

# Watch for key events
sudo journalctl -u basilica-miner -f | grep -E "(authenticated|deployed|ERROR|WARN)"

# Important patterns to monitor:
# - "Successfully authenticated validator"
# - "Deployed SSH key to node"
# - "Node connectivity lost"
# - "ERROR" / "WARN"

Critical Alert Thresholds:
| Metric | Alert If | Impact |
|--------|----------|--------|
| SSH Success Rate | <90% | Score penalty, potential uptime reset |
| Validator Auth Rate | <90% | Not being discovered properly |
| Node Health Check | Any failing >1 hour | Node offline, losing rewards |
| Last Validator Seen | >6 hours | Not attracting validators |

6. TROUBLESHOOTING COMMON ISSUES

Issue: SSH Permission Denied

Symptoms:

Error: Failed to connect to node: Permission denied (publickey)

Solutions:

# 1. Verify miner's public key is deployed
ssh basilica@node_ip "cat ~/.ssh/authorized_keys | grep miner_node_key"

# 2. Deploy if missing
ssh-copy-id -i ~/.ssh/miner_node_key.pub basilica@node_ip

# 3. Check key permissions (must be 600)
ls -la ~/.ssh/miner_node_key  # Should show: -rw-------

# 4. Fix permissions
chmod 600 ~/.ssh/miner_node_key
chmod 644 ~/.ssh/miner_node_key.pub

# 5. Test connection with verbose output
ssh -i ~/.ssh/miner_node_key -v basilica@node_ip

Issue: Validator Authentication Failed

Symptoms:

ERROR: Validator authentication failed: Invalid signature
WARN: No validators discovered

Solutions:

# 1. Check system clock is synchronized (critical!)
timedatectl
# Should show: "System clock synchronized: yes"

# 2. Sync time if needed
sudo timedatectl set-ntp true
sudo systemctl restart systemd-timesyncd

# 3. Verify wallet registration
btcli wallet overview --wallet.name ${WALLET_NAME} --wallet.hotkey ${HOTKEY_NAME} --netuid 39

# 4. Check validator assignment config
grep -A 5 "validator_assignment" /opt/basilica/config/miner.toml

# 5. Lower stake threshold for testing
# [validator_assignment]
# min_stake_threshold = 1000.0

Issue: GPU Validation Failing

Symptoms:

Binary validation failed
CUDA version check failed
Docker GPU access denied

Solutions:

# 1. Verify CUDA version (must be β‰₯12.8)
ssh basilica@node "nvcc --version"

# 2. Test Docker GPU access
ssh basilica@node "docker run --rm --gpus all nvidia/cuda:12.8.0-base-ubuntu24.04 nvidia-smi"

# 3. Install NVIDIA Container Toolkit if failed
ssh basilica@node << 'EOF'
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg
curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.list | \
  sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
  sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
sudo apt-get update
sudo apt-get install -y nvidia-container-toolkit
sudo systemctl restart docker
EOF

# 4. Verify compute capability (must be β‰₯8.7)
ssh basilica@node "nvidia-smi --query-gpu=compute_cap --format=csv,noheader"

For more troubleshooting scenarios and detailed solutions, see references/troubleshooting_guide.md.

7. MAINTENANCE & BEST PRACTICES

Uptime Optimization (Critical for 14-day ramp-up):
- Use systemd with auto-restart enabled
- Monitor node health every 60 seconds (default)
- Set up alerts for node failures
- Plan maintenance during low-traffic periods
- Test updates on testnet first

Security Checklist:
- [ ] SSH keys have 600 permissions (private) and 644 (public)
- [ ] Password authentication disabled on GPU nodes
- [ ] Firewall configured (only miner can SSH to nodes)
- [ ] Validator signature verification enabled (production)
- [ ] System clock synchronized (NTP)
- [ ] Regular security updates on all systems
- [ ] Audit logs monitored for unusual SSH activity

Scaling Strategy:
1. Start with 1-2 nodes to verify setup
2. Monitor validation success and uptime
3. Add nodes incrementally after stable operation
4. Each node increases potential rewards
5. Maintain >95% uptime across all nodes

Configuration Management:

# Backup configuration
cp /opt/basilica/config/miner.toml /opt/basilica/config/miner.toml.backup.$(date +%s)

# Version control recommended
cd /opt/basilica/config
git init
git add miner.toml
git commit -m "Initial miner configuration"

# Test configuration before deploying
./basilica-miner --config miner.toml config validate

Resources

Scripts

All scripts located in scripts/ directory:

  • check_miner_health.py: Comprehensive health check (system, SSH, nodes, wallet, service)
  • Verifies environment and system requirements
  • Tests SSH connectivity to all GPU nodes
  • Validates GPU availability and driver versions
  • Checks Bittensor wallet registration
  • Monitors miner service status

  • setup_ssh_keys.sh: Automated SSH key generation and deployment to GPU nodes

  • Generates Ed25519 SSH key pair
  • Deploys public key to all configured nodes
  • Verifies connectivity and GPU access
  • Provides configuration snippets for miner.toml

  • generate_config.sh: Interactive configuration file generator

  • Guided prompts for network, wallet, and node details
  • Creates production-ready miner.toml
  • Validates inputs and provides recommendations

References

Detailed documentation in references/ directory:

  • basilica_architecture.md: Complete system architecture, component interaction, direct SSH access model
  • troubleshooting_guide.md: Comprehensive issue diagnosis and solutions with code references
  • scoring_system.md: Detailed scoring formulas, uptime ramp-up, reward distribution

External Resources

  • GitHub: https://github.com/one-covenant/basilica
  • Miner Docs: https://github.com/one-covenant/basilica/blob/main/docs/miner.md
  • Discord: https://discord.gg/GyzhzRWJBQ
  • Basilica Website: https://basilica.ai/
  • Covenant AI: https://covenant.ai/ (Basilica's parent company)
  • Bittensor Docs: https://docs.learnbittensor.org

Task Execution Guidelines

When helping users with Basilica mining:

  1. Always check SSH setup first - 90% of issues are SSH-related
  2. Use scripts/setup_ssh_keys.sh for automated setup
  3. Verify with scripts/check_miner_health.py

  4. Validate prerequisites before deployment

  5. Run health check script
  6. Ensure wallet is registered
  7. Confirm GPU eligibility (H100/H200/B200)

  8. Use scripts for reliability

  9. Don't manually write configs (use generate_config.sh)
  10. Automate SSH deployment to avoid human error
  11. Regular automated health checks

  12. Monitor key metrics for optimization

  13. SSH success rate >95%
  14. Binary validation 100%
  15. Validator authentication rate >90%
  16. Uptime continuity (14-day ramp-up)

  17. Troubleshoot systematically

  18. Start with health check script output
  19. Check logs: sudo journalctl -u basilica-miner -f
  20. Test SSH manually if connectivity issues
  21. Verify validator signatures and time sync

  22. Plan for uptime (critical for rewards)

  23. Minimize downtime (resets 14-day counter)
  24. Test changes on testnet first
  25. Use systemd auto-restart
  26. Monitor and alert proactively

  27. Security first

  28. Never disable signature verification in production
  29. Harden SSH on GPU nodes
  30. Use validator assignment strategy
  31. Regular security audits

Code References

When referencing Basilica code, use the pattern file_path:line_number:

  • Miner main: crates/basilica-miner/src/main.rs:1-500
  • Validator comms: crates/basilica-miner/src/validator_comms.rs:1-400
  • Node manager: crates/basilica-miner/src/node_manager.rs:1-600
  • SSH session: crates/basilica-miner/src/ssh.rs:1-300
  • Configuration: crates/basilica-miner/src/config.rs:1-200

See references/basilica_architecture.md for complete file structure and detailed line references.

The goal is to help GPU providers successfully set up and operate Basilica miners with high uptime, proper validation, and maximum rewards through systematic setup, proactive monitoring, and rapid troubleshooting.

# README.md

Basilica Miner Claude Skill

A Claude Code skill for expert-level setup, management, and troubleshooting of Basilica GPU miner operations on Bittensor Subnet 39 (mainnet) or 387 (testnet).

Overview

This skill transforms Claude into a Basilica GPU mining expert, providing comprehensive guidance on:

  • Miner Setup & Configuration - SSH keys, wallet setup, node configuration
  • Validator Interaction - Authentication, SSH access, verification process
  • Performance Optimization - Uptime management, scoring optimization, rewards maximization
  • Monitoring & Maintenance - Health checks, metrics, proactive alerts
  • Troubleshooting - SSH issues, validator discovery, GPU validation, scoring problems

Key Focus: The #1 issue miners face is SSH configuration for validator access to GPU nodes. This skill provides automated scripts and step-by-step guidance to resolve this and other common problems.

Installation

Install via Claude Code

  1. Download basilica-miner.zip from releases
  2. In Claude Code, use the command:
    /skills install basilica-miner.zip

Manual Installation

  1. Clone or download this skill
  2. Copy to your Claude skills directory:
    bash cp -r basilica-miner ~/.claude/skills/

Usage

Once installed, the skill automatically activates when you ask Claude about Basilica mining topics:

  • "Help me set up a Basilica miner"
  • "My validator authentication is failing, what's wrong?"
  • "How do I fix SSH permission denied errors on my GPU nodes?"
  • "Explain the Basilica scoring system"
  • "Why am I getting zero rewards?"
  • "How do I configure miner.toml for production?"

Skill Contents

SKILL.md

Main skill document with:
- 6-phase miner setup workflow
- SSH configuration (the #1 pain point)
- Validator interaction and authentication
- Scoring and rewards system
- Monitoring and maintenance
- Troubleshooting common issues
- Best practices

scripts/

Executable utilities for miner operations:

  • check_miner_health.py - Comprehensive health check
  • System requirements validation
  • SSH connectivity to all GPU nodes
  • GPU availability and driver versions
  • Bittensor wallet registration
  • Miner service status

  • setup_ssh_keys.sh - Automated SSH setup

  • Generates miner SSH key pair
  • Deploys to all GPU nodes
  • Verifies connectivity and GPU access
  • Provides configuration snippets

  • generate_config.sh - Interactive config generator

  • Guided prompts for all settings
  • Network, wallet, and node details
  • Creates production-ready miner.toml

references/

Detailed reference documentation loaded as needed:

  • basilica_architecture.md - Complete system architecture, component interaction, SSH access model
  • troubleshooting_guide.md - Comprehensive issue diagnosis and solutions with code references
  • scoring_system.md - Detailed scoring formulas, uptime ramp-up, reward distribution

Key Features

Comprehensive Coverage

  • Complete Basilica codebase knowledge (miners, validators, scoring)
  • All SSH configuration patterns and issues
  • Hardware requirements and GPU eligibility
  • Monitoring dashboards and critical metrics
  • 14-day uptime ramp-up system

Actionable Guidance

  • Step-by-step setup workflows with scripts
  • Troubleshooting guides with symptoms β†’ solutions
  • Performance benchmarks and target metrics
  • Code references with exact file paths

Progressive Disclosure

  • Lean SKILL.md for quick reference
  • Detailed references loaded only when needed
  • Scripts for deterministic operations

System Requirements

Miner Server

  • OS: Linux (Ubuntu 22.04+ recommended)
  • CPU: 8+ cores
  • RAM: 16GB+
  • Network: Public IP or port forwarding, port 8080 (gRPC), port 9090 (Prometheus)
  • Bittensor: Wallet registered to subnet 39 (mainnet) or 387 (testnet)

GPU Nodes

  • GPU: NVIDIA H100, H200, or B200 (for rewards)
  • A100, V100, RTX validate but earn NO REWARDS
  • CUDA: β‰₯12.8
  • Driver: Latest NVIDIA drivers
  • Docker: Docker + NVIDIA Container Toolkit
  • User: Dedicated user account (e.g., basilica)
  • Storage: 1TB+ free disk space
  • SSH: SSH server with key-based authentication

Bittensor Requirements

  • Registered wallet on subnet 39 (mainnet) or 387 (testnet)
  • TAO tokens for registration fee
  • Hotkey with sufficient stake (for validator assignment)

Quick Start

  1. Prerequisites: Ensure system requirements met

  2. Generate SSH Keys:
    bash ./scripts/setup_ssh_keys.sh

  3. Generate Configuration:
    bash ./scripts/generate_config.sh miner.toml

  4. Verify Setup:
    bash python scripts/check_miner_health.py --config miner.toml

  5. Build and Deploy Miner:
    bash git clone https://github.com/one-covenant/basilica cd basilica ./scripts/miner/build.sh --release sudo mkdir -p /opt/basilica/{config,data} sudo cp basilica-miner /opt/basilica/ sudo cp miner.toml /opt/basilica/config/

  6. Start Miner:
    bash sudo systemctl start basilica-miner sudo journalctl -u basilica-miner -f

Common Issues Solved

SSH Permission Denied

90% of miner issues are SSH-related. The skill provides:
- Automated SSH key deployment script
- Step-by-step manual setup
- Permission troubleshooting
- Verification commands

Validator Authentication Failed

  • System clock synchronization (most common cause)
  • Signature verification configuration
  • Network time drift resolution

GPU Validation Failing

  • CUDA version requirements
  • NVIDIA Container Toolkit installation
  • Docker GPU access configuration
  • Compute capability verification

Zero/Low Rewards

  • GPU eligibility (H100/H200/B200 only)
  • Uptime ramp-up system (14-day model)
  • Scoring optimization strategies
  • Validation success monitoring

Resources

  • Basilica GitHub: https://github.com/one-covenant/basilica
  • Miner Docs: https://github.com/one-covenant/basilica/blob/main/docs/miner.md
  • Discord: https://discord.gg/GyzhzRWJBQ
  • Basilica Website: https://basilica.ai/
  • Covenant AI: https://covenant.ai/ (Basilica's parent company)
  • Bittensor Docs: https://docs.learnbittensor.org

Key Innovations

SSH-Based Direct Access

Basilica's unique architecture:
- Validators SSH directly to GPU nodes (no intermediary)
- Miners orchestrate access by managing ephemeral SSH keys
- Validators upload their own verification binaries
- Prevents spoofing while maintaining security

14-Day Uptime Ramp-Up

  • New nodes start at 0% reward multiplier
  • Linear increase to 100% over 14 days
  • Any validation failure resets counter to 0
  • Emphasizes reliability and uptime

Two-Tier Validation

  • Full (every 6 hours): Complete GPU attestation
  • Lightweight (every 10 min): SSH connectivity test
  • Balances thorough verification with efficiency

Contributing

Contributions welcome! Please feel free to submit issues or pull requests.

License

This skill is provided as-is for educational and operational purposes. Please refer to the Basilica project's license for information about the underlying codebase.

Acknowledgments

Built with deep analysis of the Basilica codebase and designed to help GPU providers successfully operate miners with high uptime, proper validation, and maximum rewards.

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.