oh-my-opencode-slim: Skill for Claude Code

.agents/skills/release-smoke-test/SKILL.md

release-smoke-test is a skill for Claude Code, Codex from alvinunreal/oh-my-opencode-slim. It costs 60 tokens per session (1,113 once invoked), scanned C, original, MIT.

A release-checking workflow for oh-my-opencode-slim, a coding-agent plugin, before publishing a new version. It tests the packaged install in an isolated app rather than relying on the source folder.

In plain words
What is it for?
Use it to build and pack a release candidate, install its archive in a temporary environment, run OpenCode smoke tests, inspect logs, and record the tested artifact and limitations.
Why use it?
It catches packaging, compatibility, configuration, and crash-regression problems before users receive the release.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions OpenCode.

This is alvinunreal/oh-my-opencode-slim's own configuration. It tells Claude Code and Codex how to work on oh-my-opencode-slim itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything oh-my-opencode-slim configures →

About the project

oh-my-opencode-slim is a plugin that coordinates multiple specialized AI agents inside OpenCode, assigning codebase exploration, documentation research, architecture review, design, and implementation to different agents. It is for developers who want agent teams to divide and reconcile software-development work while mixing models from different providers. The catalogue entries are the plugin’s bundled agents, skills, and instruction.

alvinunreal/oh-my-opencode-slim · 8,740 stars · on GitHub · ohmyopencodeslim.com

Reuse

Borrowing it

Nothing to install: this file belongs to alvinunreal/oh-my-opencode-slim. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/alvinunreal/oh-my-opencode-slim/master/.agents/skills/release-smoke-test/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/alvinunreal/oh-my-opencode-slim

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 release-smoke-test

README.md
[![agentmods](https://agentmods.dev/badge/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test/github.svg)](https://agentmods.dev/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test)
Your own site
<a href="https://agentmods.dev/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test"><img src="https://agentmods.dev/badge/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test/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 release-smoke-test

Your own site · 80×15
<a href="https://agentmods.dev/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test"><img src="https://agentmods.dev/badge/skills/alvinunreal/oh-my-opencode-slim/release-smoke-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,113 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00060 $0.01113
Opus 5 $0.00030 $0.00557
Sonnet 5 $0.00012 $0.00223
Haiku 4.5 $0.00006 $0.00111

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

Security

Grade C, and why

release-smoke-test scanned grade C with 1 finding 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 10d 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.

Recursive force deletehighDestructive command

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

rm -rf "$SMOKE"
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/skills/release-smoke-test/SKILL.md · 159 lines

How it starts

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

Release Smoke Test

Use this skill to validate an oh-my-opencode-slim release candidate before public npm publish. Test the packed artifact, not @latest and not the source tree.

Core Workflow

  1. Start from the release-prep branch or commit.
  2. Build and pack the candidate.
  3. Install the tarball into a throwaway app.
  4. Create an isolated OpenCode config pointing at the installed node_modules/oh-my-opencode-slim/dist/index.js.
  5. Run opencode debug config and verify plugin_origins contains only the intended plugin when doing an isolation smoke.
  6. Run non-pure opencode run --print-logs --log-level DEBUG.
  7. Search isolated logs for the original crash signature.
  8. Record exact artifact, model, OpenCode version, command shape, result, and limitations on the release issue or PR.

Pack Candidate

Use a temp directory so release validation never depends on the local package cache.

SMOKE=/tmp/oh-my-opencode-slim-release-smoke
rm -rf "$SMOKE"
mkdir -p "$SMOKE/pkg" "$SMOKE/app" "$SMOKE/home" "$SMOKE/xdg/opencode" "$SMOKE/run"

bun run build
npm pack --pack-destination "$SMOKE/pkg"

Install the tarball:

cd "$SMOKE/app"
bun init -y
bun add "$SMOKE/pkg"/oh-my-opencode-slim-*.tgz
node -p "require('./node_modules/oh-my-opencode-slim/package.json').version"

Isolated Config

Write the minimal OpenCode config:

cat > "$SMOKE/xdg/opencode/opencode.json" <<EOF
{
  "model": "opencode/deepseek-v4-flash-free",
  "plugin": [
    "file://$SMOKE/app/node_modules/oh-my-opencode-slim/dist/index.js"
  ],
  "agent": {
    "orchestrator": {
      "model": "opencode/deepseek-v4-flash-free"
    }
  }
}
EOF

Use env -i for the cleanest smoke. This strips host OPENCODE_*, ORCA_*, and project overlay variables that can silently add plugins or provider aliases.

env -i PATH="$PATH" HOME="$SMOKE/home" XDG_CONFIG_HOME="$SMOKE/xdg" \
  opencode debug config

Confirm:

  • plugin_origins has exactly one entry.
  • That entry points to the temp app's packed dist/index.js.
  • The model is the one intended for the smoke.

Read the full file on GitHub · 159 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. 10d ago First seen · 159 lines · 60 tokens per session scan C 3e6b3f1e03de

Subscribe to this mod's changes

release-smoke-test is a skill published in the GitHub repository alvinunreal/oh-my-opencode-slim (8,740 stars, last pushed yesterday), licensed MIT. It adds 60 tokens to every session and 1,113 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.