prime-silo-devops

prime-silo-devops is a skill for Claude Code, Codex from binary16labs/prime-silo. It costs 46 tokens per session (812 once invoked), scanned A, original, MIT.

A release-management guide for the Prime-Silo project, covering version changes, tags, release checks, and build pipelines. A release tag marks a specific software version.

In plain words
What is it for?
It is for preparing releases, checking CI/CD workflows, creating version tags, and troubleshooting release pipelines.
Why use it?
It reduces release mistakes by requiring checks and a defined order for updating, committing, and pushing releases.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/binary16labs/prime-silo/prime-silo-devops
Any agent
npx skills add binary16labs/prime-silo --skill prime-silo-devops
Clone the repo
git clone --depth 1 https://github.com/binary16labs/prime-silo

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 prime-silo-devops

README.md
[![agentmods](https://agentmods.dev/badge/skills/binary16labs/prime-silo/prime-silo-devops.svg)](https://agentmods.dev/skills/binary16labs/prime-silo/prime-silo-devops)
Your own site
<a href="https://agentmods.dev/skills/binary16labs/prime-silo/prime-silo-devops"><img src="https://agentmods.dev/badge/skills/binary16labs/prime-silo/prime-silo-devops.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 812 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00046 $0.00812
Opus 5 $0.00023 $0.00406
Sonnet 5 $0.00009 $0.00162
Haiku 4.5 $0.00005 $0.00081

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

Security

Grade A, and why

prime-silo-devops 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.

packages/antigravity-plugin/skills/prime-silo-devops/SKILL.md · 105 lines

How it starts

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

Prime-Silo DevOps & Release Management

Use this skill whenever you are tasked with managing the SDLC, triggering a new release, checking CI/CD workflows, or troubleshooting build pipelines for the prime-silo project.

1. Prerequisites for Releasing

Before creating a release, you MUST verify:

  • All changes are committed and merged into the main branch.
  • The working directory is completely clean (git status shows no uncommitted changes).
  • All relevant documentation is updated.

2. Creating a Release (Tagging)

DO NOT use manual git tag or manually edit package.json to bump the version. You must use the managed release script.

To create a release:

# On Windows PowerShell
.\scripts\manage-release.ps1 <patch|minor|major>

# On macOS/Linux Bash
node scripts/manage-release.js <patch|minor|major>

This script will automatically read the current version, bump it appropriately, update package.json, create a commit named "Release: X.Y.Z", and create an annotated git tag.

3. Pushing the Release

CRITICAL PUSH ORDER: You MUST push the release commit to main before pushing the tag. If you push the tag first, the release gate will skip the build jobs because the tag's commit isn't on origin/main yet!

# Step 1: Push the commit FIRST
git push origin main

# Step 2: Push the tag SECOND
git push origin vX.Y.Z

4. Monitoring the CI/CD Pipeline

Releases trigger .github/workflows/release-desktop.yml. Snapshot builds run automatically on every push to main via .github/workflows/snapshot-build.yml.

To monitor workflow status:

# Check workflow status
gh run list --workflow=release-desktop.yml --limit 1

# View detailed progress or a specific job
gh run view <run-id>
gh run view <run-id> --job <job-id>

A normal release build takes ~30 minutes to complete the matrix of 6 platforms (Windows x64/arm64, macOS x64/arm64, Linux x64/arm64).

5. Troubleshooting & Rollbacks

If a build job skips unexpectedly, check the release gate:

Read the full file on GitHub · 105 lines

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. 4d ago First seen · 105 lines · 46 tokens per session scan A c57a56384135

Subscribe to this mod's changes

prime-silo-devops is a skill published in the GitHub repository binary16labs/prime-silo (5 stars, last pushed 11d ago), licensed MIT. It adds 46 tokens to every session and 812 once invoked, about $0.0002 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

release

Dispatch a Chamber release build to either the insiders channel (Azure blob, Windows + macOS, invite-only testers) or the stable channel (public GitHub Releases, Windows + macOS). Use this skill whenever the user asks to release, cut, publish, promote, ship a build, push to insiders, send to testers, go public, or…

ianphil/chamber · 139 tokens

repo-bootstrap

Automate full ANAMIZED product repo structure (Server OS parity) including USDC, Stripe, badges, CI, skills, AGENTS.md.

ANAMIZED/YodMCP · 33 tokens

git-cliff

Use when the user wants to generate a changelog, create release notes from git history, update CHANGELOG.md before tagging a release, produce a changelog from conventional commits, or summarize commits since the last tag.

moabualruz/fulcrum · 47 tokens

gh

Use when the user works with GitHub from the command line - listing or viewing pull requests, creating PRs and issues, reviewing or merging, watching workflow runs, downloading release assets, or hitting the REST/GraphQL API.

moabualruz/fulcrum · 48 tokens

tutti-app-release

Set up, review, run, or debug external repositories that publish a Tutti workspace app through the reusable Tutti App Release GitHub Actions workflow. Use for caller workflows, tutti.app.json manifests, @tutti-os/app-release-tools, S3/CloudFront release hosting, latest.json, versions.json, catalog.json, catalog-only…

tutti-os/tutti · 80 tokens

github-desktop-release

通过 GitHub Actions 发布 Agent Tower 桌面端多平台安装包。当用户要求发布 GitHub release、触发 GitHub 自动打包、发桌面版、构建 macOS/Windows/Linux 安装包或处理桌面包 CI 发布时使用此 skill。.

agent-tower/core · 63 tokens