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 agentmods add skills/nearform/lastlight/buildingnpx skills add nearform/lastlight --skill buildinggit clone --depth 1 https://github.com/nearform/lastlightWrote 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/nearform/lastlight/building)<a href="https://agentmods.dev/skills/nearform/lastlight/building"><img src="https://agentmods.dev/badge/skills/nearform/lastlight/building.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 | $0.00052 | $0.01694 |
| Opus 5 | $0.00026 | $0.00847 |
| Sonnet 5 | $0.00010 | $0.00339 |
| Haiku 4.5 | $0.00005 | $0.00169 |
Grade A, and why
building 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 4d 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 — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Building
How to install, build, test, and gate a change in the sandbox. The same discipline whether you're implementing a feature, fixing review feedback, or verifying someone else's PR.
Workspace & git
The harness pre-cloned the repo; your cwd is the repo root (or a <repo>/
subdirectory — check with ls -la). Git is configured for clone/fetch/pull and
local commits. If auth fails after ~1 hour, call the github_refresh_git_auth
MCP tool. Suppress noise where it helps: git clone --quiet, CI=true.
Getting work onto the branch is not a git operation: a commit built by git here
is unsigned and a repo that requires signed commits blocks it permanently, so a
phase that publishes does it with github_publish rather than git push. Your
prompt says whether yours publishes and with what arguments.
A new file cannot be published executable. GitHub builds the commit from
paths and contents, with no file mode, so a new 100755 file is refused and
nothing is published. Adding a script is the case you will hit: leave it
non-executable (no chmod +x) and invoke it through its interpreter —
bash scripts/verify.sh, python scripts/check.py — in the docs, the CI
workflow and anywhere else that calls it. Symlinks, submodule pointers and a
mode change on an existing file are refused too, and those need a human.
Install-first
node_modules (and any other dependency dir) is always absent on arrival —
by design, not a blocker. Installing is the first step, not a reason to skip
verification. Detect the package manager from the lockfile and use the
frozen/CI variant:
package-lock.json→npm cipnpm-lock.yaml→corepack pnpm install --frozen-lockfileyarn.lock→corepack yarn install --frozen-lockfile
Node is available via fnm + corepack; the egress allowlist permits the public
package registries, so install works. For a monorepo, install at the root, then
operate on the changed package. For non-Node repos, use the ecosystem's
equivalent (pip install, cargo build, go mod download, …) read from the
project's manifest.
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.
- 4d ago First seen · 136 lines · 52 tokens per session scan A a37005811d8f
building is a skill published in the GitHub repository nearform/lastlight (22 stars, last pushed 8d ago), licensed MIT. It adds 52 tokens to every session and 1,694 once invoked, about $0.0003 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-30.
Other skills, from other repositories
coding
Use when five specialized coding agents (linter, perf, refactor, security, test) that enforce quality gates across the development lifecycle. From lint enforcement through performance profiling, refactoring, security auditing, and test coverage. Use when working with coding agents.
test-agent
Use when writing comprehensive test suites covering happy paths, error paths, edge cases, and integration points.
example-skill
Counts lines, words, and bytes in a text file using the bundled count.sh script. Use when asked to count/measure a file's size in these terms.
design-taste-frontend
Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.
open-code-review
Performs AI-powered code review on Git changes using the ocr CLI from alibaba/open-code-review. Use when the user asks to review code, review a pull request, review staged/unstaged changes, review a commit, or compare branches for code quality issues. Produces line-level review comments and can automatically apply…
image-to-code
Elite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then implement the website to match them as closely as possible. In Codex, it must prefer large, readable, section-specific images instead of tiny compressed boards…