{
  "markdown": "# Hyperscope Plugins\n\nAgent skills for the [Hyperscope](https://hyperscope.sh) APIs. Distributed as a Claude Code plugin marketplace, with a curl-based installer for any agent that reads `SKILL.md`.\n\n## Available plugins\n\n| Plugin | Skill | Description |\n|--------|-------|-------------|\n| [`hyperscope`](./plugins/hyperscope) | `hyperliquid` | Query Hyperliquid blockchain data. Auto-routes between raw `/info` RPC and curated Data API analytics. |\n\n## API key (optional)\n\nThe Hyperscope APIs have a free tier of **1000 requests/day** that works without any key (applies to both `data.hyperscope.sh` and `info.hyperscope.sh`). For higher limits, create a project at [hyperscope.sh](https://hyperscope.sh) → Dashboard → your project → **Agent** tab.\n\nThe skill works either way — without a key it uses the free tier, with a key it switches to authenticated (credit-metered) mode.\n\n## Install (Claude Code plugin)\n\nIn Claude Code, run these **as two separate commands** (Claude Code only parses one slash command per prompt — pasting both at once will fail):\n\n```\n/plugin marketplace add hyperscope-sh/hyperscope-plugins\n```\n\n```\n/plugin install hyperscope@hyperscope-plugins\n```\n\nThat's it — the skill is usable immediately on the free tier. To raise your limit, save a key to the location the skill checks:\n\n```bash\nmkdir -p ~/.hyperscope && echo 'HYPERSCOPE_API_KEY=hs_...' > ~/.hyperscope/.env && chmod 600 ~/.hyperscope/.env\n```\n\nThe skill checks `$HYPERSCOPE_API_KEY` first, then `~/.hyperscope/.env`. If you prefer a shell env var, append `export HYPERSCOPE_API_KEY=hs_...` to `~/.zshrc` or `~/.bashrc` instead.\n\n## Install (npx skills, any agent)\n\nFor a one-line install across Claude Code, Cursor, Codex CLI, Gemini CLI, and other agents that read `SKILL.md`:\n\n```bash\nnpx skills add hyperscope-sh/hyperscope-plugins\n```\n\nThis auto-detects your harness and writes the skill to the right location (e.g. `.claude/skills/hyperliquid/`). To raise your daily limit, save a key to the location the skill checks:\n\n```bash\nmkdir -p ~/.hyperscope && echo 'HYPERSCOPE_API_KEY=hs_...' > ~/.hyperscope/.env && chmod 600 ~/.hyperscope/.env\n```\n\n## Install (curl, any agent)\n\nFor project-scoped install or to write the API key in one shot:\n\n```bash\n# With a key (writes it to .env automatically)\ncurl -fsSL https://raw.githubusercontent.com/hyperscope-sh/hyperscope-plugins/main/install.sh \\\n  | bash -s -- hyperscope <YOUR_API_KEY>\n\n# Without a key (free tier, 1000/day)\ncurl -fsSL https://raw.githubusercontent.com/hyperscope-sh/hyperscope-plugins/main/install.sh \\\n  | bash -s -- hyperscope\n```\n\nThe skill installs into:\n- `<current-git-repo>/.claude/skills/hyperliquid/` (project-scoped, default in a git repo)\n- or `~/.claude/skills/hyperliquid/` (default outside a git repo)\n\nForce one or the other with `--local` / `--global`:\n\n```bash\ncurl -fsSL .../install.sh | bash -s -- hyperscope <KEY> --global\n```\n\nWhen provided, the key is written to the skill's local `.env` **and** to `~/.hyperscope/.env` (both chmod 600), so the skill works the same regardless of how you installed it. Nothing leaves your machine. Rerun anytime to upgrade or rotate.\n\n## Source\n\nThis repo is auto-synced from the [hyperscope monorepo](https://github.com/hyperscope-sh/hyperscope) on every change. Open issues or PRs there.\n\n## Repo layout\n\n```\n.\n├── .claude-plugin/\n│   └── marketplace.json              # marketplace manifest\n├── plugins/\n│   └── hyperscope/\n│       ├── .claude-plugin/\n│       │   └── plugin.json           # plugin manifest\n│       └── skills/\n│           └── hyperliquid/\n│               ├── SKILL.md\n│               └── .env.example\n├── install.sh                        # curl installer (non-Claude-Code path)\n└── README.md\n```\n",
  "bytes": 3732,
  "sha": "58e01ba5de541e261a8ac3697ac2c9ba38dfc101336cac3185da4680e89cfe1b",
  "repo_slug": "hyperscope-sh/hyperscope-plugins",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_hyperscope_sh_hyperscope_plugins_hypersc_17d536b2/readme"
}