Skip to main content

1. Installation

# One-click installation of binary tools
curl -fsSL https://get.runly.pro/install.sh | sh

# Verify version
runly-cli --version

2. Environment Configuration

Before performing any operation, global configuration must be initialized.
# 1. Interactive setup (set Hub/Me addresses and AccessToken)
runly-cli config setup

# 2. (Optional) Manually set specific addresses for private deployment
runly-cli config set --hub https://api.custom-hub.com --me https://api.custom-me.com

# 3. Confirm profile (default: cloud, switch to local if needed)
runly-cli profile cloud

3. Identity Verification

# 1. Sync or generate expert identity (auto-detects existing cloud keys)
runly-cli keys generate "MyExpertStudio"

# 2. Confirm identity information (Keep track of your MeID)
runly-cli keys show

4. Asset Creation

# 1. Initialize project draft (based on the latest protocol template)
runly-cli init amazon-analyzer

# 2. (Optional) Edit logic
# vi amazon-analyzer.runly

# 3. Perform static logic validation
runly-cli check amazon-analyzer.runly

5. Build & Finalization

# Sign with digital signature and generate an immutable distribution package
runly-cli build amazon-analyzer.runly

# Verify the integrity of the generated dist.runly
runly-cli check dist.runly

6. Local Simulation

# Test the logic asset locally before publishing
runly-cli run dist.runly

7. Distribution

# 1. Publish to Runly Hub (with progress bar)
runly-cli publish dist.runly

# 2. Search and confirm from Hub
runly-cli hub search "amazon"

# 3. Simulate download and auto-verify signature
runly-cli hub pull runly://hub/YOUR_MEID/com.runly.amazon-analyzer

📋 Runly-CLI 1.0.1 Command Index

CommandDescription
runly-cli config setup[Entry] Interactive guide for server and token configuration
runly-cli config setQuickly update specific config items (Token/Hub/Me)
runly-cli profile [name]Switch environment profile (cloud / local)
runly-cli keys generate [name][Core] Cloud-first sync/create identity and save keys
runly-cli keys showShow current local MeID, Public Key, and Server URL
runly-cli init [project]Generate a standard protocol (.runly) template
runly-cli check [file]Validate topology logic and variable references
runly-cli build [file][Core] Execute hashing and signing to generate finalized assets
runly-cli run [file]Start simulation engine to execute SOP logic
runly-cli publish [file]Push signed assets to Runly Hub
runly-cli hub search [key]Search for public assets on the Hub
runly-cli hub pull [URN]Download assets with automatic signature security verification
runly-cli --versionDisplay current tool version information