π¦ ClawHub
Massive.com CLI
by @oscraters
Bash CLI wrapper and OpenClaw skill for Massive's public REST API. Use when Codex or an OpenClaw agent needs to query Massive market-data endpoints from a sh...
TERMINAL
clawhub install massiveπ About This Skill
name: massive-com description: Bash CLI wrapper and OpenClaw skill for Massive's public REST API. Use when Codex or an OpenClaw agent needs to query Massive market-data endpoints from a shell workflow, align authentication to OpenClaw-style secret references, keep logs free of secrets, or integrate Massive responses into agent pipelines and other CLI tools.
Massive CLI for OpenClaw
Use the bundled CLI before writing ad hoc curl commands. Keep requests deterministic, resolve credentials through OpenClaw-compatible secret references when available, and prefer narrow queries over broad scans.
Quick Start
scripts/massive health to validate local prerequisites and auth configuration.scripts/massive get /v3/reference/tickers/AAPL for a generic REST request.BUNDLE_MANIFEST.md.Workflow
1. Resolve credentials through MASSIVE_API_KEY_REF when possible.
2. Fall back to MASSIVE_API_KEY only when a secret ref is not available.
3. Use a domain shortcut when it matches a documented Massive endpoint.
4. Use get for any other documented REST path.
5. Pipe JSON into downstream tools instead of enabling verbose logging.
Commands
scripts/massive healthscripts/massive get [--query key=value ...] scripts/massive next to read next_url from stdin JSON and fetch the next pagescripts/massive stocks ticker-details scripts/massive stocks previous-close scripts/massive options contract-details scripts/massive forex currenciesscripts/massive crypto currenciesscripts/massive indices ticker-details Agent Rules
stderr; treat stdout as data.--verbose in shared logs.next_url back into get or next instead of reconstructing pagination manually.api.massive.com absolute URLs as invalid unless MASSIVE_BASE_URL was explicitly changed to another HTTPS origin.Resources
scripts/massive: main Bash CLIBUNDLE_MANIFEST.md: required file list for packaged artifactsreferences/openclaw-secrets.md: credential and secret-ref contract used by this skillreferences/massive-api.md: endpoint selection and request patternsreferences/security.md: redaction and operational safety constraintsπ‘ Examples
scripts/massive health to validate local prerequisites and auth configuration.scripts/massive get /v3/reference/tickers/AAPL for a generic REST request.BUNDLE_MANIFEST.md.