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.
npx skills add NCCloud/agent-skills --skill hyperliftgit clone --depth 1 https://github.com/NCCloud/agent-skillsWrote 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.
[](https://agentmods.dev/skills/nccloud/agent-skills/hyperlift)<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>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.
| Model | Per session | Once 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 |
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.
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.
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_KEYandSPACESHIP_API_SECRET— both 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 (defaulthttps://spaceship.dev/api/v1). Read from the real environment only, never from.env, so a checked-in.envcannot 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):
- 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). - Ask them to add both values themselves — where depends on their setup:
- Working in a project (repo)? The project's
.envfile:SPACESHIP_API_KEY=...andSPACESHIP_API_SECRET=.... Make sure.envis 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 orsource.
- Working in a project (repo)? The project's
- Re-run the failed command; the CLI picks the values up automatically
(environment first, then the nearest
.envwalking up from the working directory).
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.
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.
- 8d ago First seen · 154 lines · 86 tokens per session scan A b9f1140b5643
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.
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.
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.
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…
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.
chinese-documentation
A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.
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…