hyperlift

hyperlift is a skill for Claude Code, Codex from NCCloud/agent-skills. It costs 86 tokens per session (1,917 once invoked), scanned A, original, MIT.

A command-line workflow for managing Hyperlift applications through the Spaceship public API. It covers application operations such as builds, logs, metrics, environment variables, restarts, and scaling.

In plain words
What is it for?
Use it to list or inspect applications, start builds, read logs and metrics, manage environment variables, restart applications, or change their running state.
Why use it?
It provides a defined way to inspect and operate deployed applications without manually using the service's interface.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list or inspect applications, start builds, read logs and metrics, manage environment variables, restart applications, or change their running state.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nccloud/agent-skills/hyperlift
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add NCCloud/agent-skills --skill hyperlift
Clone the repo
git clone --depth 1 https://github.com/NCCloud/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hyperlift

README.md
[![agentmods](https://agentmods.dev/badge/skills/nccloud/agent-skills/hyperlift.svg)](https://agentmods.dev/skills/nccloud/agent-skills/hyperlift)
Your own site
<a href="https://agentmods.dev/skills/nccloud/agent-skills/hyperlift"><img src="https://agentmods.dev/badge/skills/nccloud/agent-skills/hyperlift.svg" alt="Measured on agentmods" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,917 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.01917
Opus 5 $0.00043 $0.00958
Sonnet 5 $0.00017 $0.00383
Haiku 4.5 $0.00009 $0.00192

Measured 8d ago against content hash b9f1140b5643, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

hyperlift scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/hyperlift.py, tests/test_hyperlift.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/hyperlift/SKILL.md · 154 lines

How it starts

The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hyperlift

Operate Hyperlift applications via the bundled CLI, scripts/hyperlift.py (Python 3.10+, standard library only). The Spaceship public API documentation (https://docs.spaceship.dev/#tag/Hyperlift) is the source of truth; a summary lives in references/api.md.

Setup

The CLI needs two credentials, read from the environment or, as a fallback, from the nearest .env file (working directory or any parent):

  • SPACESHIP_API_KEY and SPACESHIP_API_SECRETboth required; they are a pair (the key identifies the credential, the secret proves it) and either one alone gets HTTP 401. Never pass credentials as command-line arguments and never print them.
  • SPACESHIP_API_BASE_URL — optional override (default https://spaceship.dev/api/v1). Read from the real environment only, never from .env, so a checked-in .env cannot silently redirect credentials to another host.

If credentials are missing

The CLI exits with a clear error. Walk the user through setup — do it out of band, never ask the user to paste the key or secret into the chat (chat contents persist in transcripts and context):

  1. Tell them to create an API key in the Spaceship API manager (spaceship.com → account settings → API manager) with the scopes the task needs: hyperlift:read (inspect, logs, metrics), hyperlift:execute (build, restart, start/stop), hyperlift:manage (read and write environment variables).
  2. Ask them to add both values themselves — where depends on their setup:
    • Working in a project (repo)? The project's .env file: SPACESHIP_API_KEY=... and SPACESHIP_API_SECRET=.... Make sure .env is git-ignored before they do. "Project" means the codebase the user is working in, not the skill's directory.
    • No project .env, or the skill is installed globally? Their shell profile (e.g. ~/.zshenv): export SPACESHIP_API_KEY=... etc., then a new shell or source.
  3. Re-run the failed command; the CLI picks the values up automatically (environment first, then the nearest .env walking up from the working directory).

Read the full file on GitHub · 154 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 154 lines · 86 tokens per session scan A b9f1140b5643

Subscribe to this mod's changes

hyperlift is a skill published in the GitHub repository NCCloud/agent-skills (2 stars, last pushed 27d ago), licensed MIT. It adds 86 tokens to every session and 1,917 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

test-driven-development

Drives development with tests. Use when implementing any logic, fixing any bug, or changing any behavior. Use when you need to prove that code works, when a bug report arrives, or when you're about to modify existing functionality.

addyosmani/agent-skills · 50 tokens

documentation-and-adrs

Records decisions and documentation. Use when making architectural decisions, changing public APIs, shipping features, or when you need to record context that future engineers and agents will need to understand the codebase.

addyosmani/agent-skills · 43 tokens

idea-refine

Refines raw ideas into sharp, actionable concepts through structured divergent and convergent thinking. Use when an idea is still vague, when you need to stress-test assumptions before committing to a plan, or when you want to expand options before converging on one. Triggers on "ideate", "refine this idea", or…

addyosmani/agent-skills · 75 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

skillshare-implement-feature

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development…

runkids/skillshare · 114 tokens