public-artifact-runtime-smoke-gate

public-artifact-runtime-smoke-gate is a skill for Claude Code, Codex from JinNing6/Noosphere. It costs 67 tokens per session (940 once invoked), scanned A, original, Apache-2.0.

A release-checking workflow for Python packages, command-line tools, MCP servers, and agent plugins after they are published.

In plain words
What is it for?
It installs the exact public release in a clean environment, launches the installed artifact, tests its real runtime protocol, and checks its output and exit behavior.
Why use it?
It catches problems that source tests may miss, such as omitted files, broken entry points, local-path dependencies, or missing-credential failures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It installs the exact public release in a clean environment, launches the installed artifact, tests its real runtime protocol, and checks its output and exit behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jinning6/noosphere/public-artifact-runtime-smoke-gate
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.

Any agent
npx skills add JinNing6/Noosphere --skill public-artifact-runtime-smoke-gate
Clone the repo
git clone --depth 1 https://github.com/JinNing6/Noosphere

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 public-artifact-runtime-smoke-gate

README.md
[![agentmods](https://agentmods.dev/badge/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate/github.svg)](https://agentmods.dev/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate)
Your own site
<a href="https://agentmods.dev/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate"><img src="https://agentmods.dev/badge/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate/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 public-artifact-runtime-smoke-gate

Your own site · 80×15
<a href="https://agentmods.dev/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate"><img src="https://agentmods.dev/badge/skills/jinning6/noosphere/public-artifact-runtime-smoke-gate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 28
    uvx/uv tool run commands without ==version create a rug-pull risk.
    Fix: Pin the version: uvx package-name==1.2.3
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.00067 $0.00940
Opus 5 $0.00034 $0.00470
Sonnet 5 $0.00013 $0.00188
Haiku 4.5 $0.00007 $0.00094

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

Security

Grade A, and why

public-artifact-runtime-smoke-gate 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 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.

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.

shared_skills/active/public-artifact-runtime-smoke-gate/SKILL.md · 73 lines

How it starts

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

Public Artifact Runtime Smoke Gate

Prove the artifact users install, not the source tree that produced it. Treat source tests, built artifacts, public-index resolution, installed entry points, and runtime protocol behavior as separate evidence layers.

Required Gate

  1. Identify the intended immutable release commit, version, and public registry.
  2. Wait for that exact version to appear in the public registry with bounded retries.
  3. Create a clean environment outside the repository and disable local project discovery.
  4. Install the exact public version with caches disabled where the package manager permits.
  5. Read the installed distribution's version from its own metadata.
  6. Launch the installed console entry point as a subprocess. Do not substitute python -m against the checkout.
  7. Remove optional credentials from the child environment and verify the documented anonymous or degraded behavior.
  8. Exercise a representative runtime contract. For MCP stdio, send initialize, wait for its response, send notifications/initialized, then request tools/list before closing stdin.
  9. Assert stable product-owned fields, required capabilities, exit status, and bounded runtime.
  10. Record the exact version, command, environment, artifact digest, observed failure, observed success, and verification result.

One-Minute Reproduction

Use Noosphere's deterministic fixture to reproduce the source-versus-artifact failure and verify the repair without a project or token:

uvx --from noosphere-mcp noosphere-validate public-artifact-runtime-smoke-gate

The command must finish in under 60 seconds on the supported CI runners. It builds byte-deterministic failing and fixed Wheels, installs them in an isolated environment without external package resolution, invokes the real installed entry point, verifies the exact distribution version, and emits a prefilled evidence submission link.

Isolation Rules

  • Never use an editable install, repository import path, local Wheel, or unversioned latest install as final public-release evidence.
  • Run from a directory that cannot import the checkout accidentally.
  • Strip optional secrets such as GITHUB_TOKEN and GH_TOKEN; never print credential values.
  • Verify package metadata independently from framework-owned protocol metadata.
  • Reject non-protocol data on MCP stdout because logs corrupt stdio framing.
  • Drain stdout and stderr concurrently and terminate the process tree on timeout.
  • Keep heavyweight models, browser stacks, GPU runtimes, and scientific packages behind explicit extras when they are not required for cold discovery.

Read the full file on GitHub · 73 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 · 73 lines · 67 tokens per session scan A 09c9b9ec1925

Subscribe to this mod's changes

public-artifact-runtime-smoke-gate is a skill published in the GitHub repository JinNing6/Noosphere (18 stars, last pushed 3d ago), licensed Apache-2.0. It adds 67 tokens to every session and 940 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.