Loading...
Loading...
Build with Hyperstack, real-time Solana data streaming. Covers consuming existing streams and building custom stacks. Use when the user mentions Hyperstack, real-time Solana data, on-chain streaming, ORE mining, or wants to consume/build data stacks.
npx skill4agent add usehyperstack/skills hyperstackOreRoundOreMinerstatelisthshyperstack-cli# Check which CLI is available (prefer hs)
if command -v hs &> /dev/null; then
HS_CLI="hs"
elif command -v hyperstack-cli &> /dev/null; then
HS_CLI="hyperstack-cli"
else
echo "Hyperstack CLI not found. Install with: cargo install hyperstack-cli (recommended) or npm install -g hyperstack-cli"
exit 1
fi$HS_CLIhs# Scaffold a new app from a template
npx hyperstack-cli create my-app
# Or install the CLI globally (cargo is preferred)
cargo install hyperstack-cli # Installs as 'hs'
# OR
npm install -g hyperstack-cli # Installs as 'hyperstack-cli'# List all available stacks (use 'hs' or 'hyperstack-cli' depending on your install)
hs explore --json
# Get entities and views for a specific stack
hs explore <stack-name> --json
# Get detailed field info for a specific entity
hs explore <stack-name> <EntityName> --jsonNote: All CLI examples use. If you installed via npm, substitutehsforhyperstack-cli.hs
--jsonhyperstack-consumehyperstack-buildhs explorenpm install hyperstack-stacks