platform-pre-review

platform-pre-review is a skill for Claude Code, Codex from telus-labs/stagecraft. It costs 45 tokens per session (1,639 once invoked), scanned A, original, MIT.

A content-analysis workflow that finds ideas, arguments, stories, facts, processes, lessons, and quotes in long-form material.

In plain words
What is it for?
Use it to organize possible pieces for newsletters, Substack Notes, Twitter/X, LinkedIn, and short-form video in platform-specific tables.
Why use it?
It helps you reuse one article, transcript, blog post, or podcast note across several kinds of content without overlooking useful details.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node core/guards/security-heuristic.js <changed-files>.

Good fit Use it to organize possible pieces for newsletters, Substack Notes, Twitter/X, LinkedIn, and short-form video in platform-specific tables.

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/telus-labs/stagecraft
agentmods
npx agentmods add skills/telus-labs/stagecraft/platform-pre-review

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 platform-pre-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/telus-labs/stagecraft/platform-pre-review/github.svg)](https://agentmods.dev/skills/telus-labs/stagecraft/platform-pre-review)
Your own site
<a href="https://agentmods.dev/skills/telus-labs/stagecraft/platform-pre-review"><img src="https://agentmods.dev/badge/skills/telus-labs/stagecraft/platform-pre-review/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 platform-pre-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/telus-labs/stagecraft/platform-pre-review"><img src="https://agentmods.dev/badge/skills/telus-labs/stagecraft/platform-pre-review.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 1,639 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: 2 findings, 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 36
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 37
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00045 $0.01639
Opus 5 $0.00023 $0.00820
Sonnet 5 $0.00009 $0.00328
Haiku 4.5 $0.00005 $0.00164

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

Security

Grade A, and why

platform-pre-review 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.

skills/platform-pre-review/SKILL.md · 137 lines

How it starts

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

Platform Pre-Review Task (Stage 4a)

Use this skill when you are the Platform Developer executing the Stage 4a pre-review gate — after all Stage 4 build gates pass and before Stage 5 peer review starts.

Procedure

  1. npm run lint (or the project's equivalent) — must exit 0.

  2. The project's type-check command if one is configured (e.g. tsc --noEmit for TypeScript projects) — must exit 0.

  3. Dependency vulnerability scan: npm audit --audit-level=high (or pip-audit, bundler-audit, etc. per stack). Any high or critical finding halts.

  4. License compatibility check. For every new or changed direct dependency (compare package.json / requirements.txt / Cargo.toml before and after the PR), determine its declared SPDX license and classify it:

    • Allowed (record nothing): MIT, Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, CC0-1.0, 0BSD, Unlicense, CC-BY-4.0, Python-2.0, PSF-2.0.
    • Warned (record with policy: "warned"): UNLICENSED, unknown, proprietary, SSPL-1.0, BUSL-1.1. These require a human review before merge; record in license_findings[] and add a warnings[] entry.
    • Denied (record with policy: "denied"): any GPL-2.0, GPL-3.0, LGPL-2.0, LGPL-2.1, LGPL-3.0, AGPL-3.0, or strong-copyleft variant. Copyleft licenses require distributing source and are incompatible with most commercial projects unless a legal exception is documented. A denied finding sets license_check_passed: false and adds a blockers[] entry.

    How to check:

    # Node.js — use npx if license-checker is not installed globally
    npx license-checker --direct --json 2>/dev/null | jq 'to_entries[] | {package: .key, license: .value.licenses}'
    # Python
    pip-licenses --format=json --with-license-file 2>/dev/null
    # Rust
    cargo license --json 2>/dev/null
    

    If no automated tool is available, manually inspect each new dependency's LICENSE file or package metadata. When the license field is missing or ambiguous, classify as warned.

Read the full file on GitHub · 137 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 · 137 lines · 45 tokens per session scan A 6a65e5ceb0ae

Subscribe to this mod's changes

platform-pre-review is a skill published in the GitHub repository telus-labs/stagecraft (6 stars, last pushed 4d ago), licensed MIT. It adds 45 tokens to every session and 1,639 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

intuitive-tests

Use this skill whenever the user asks about unit test best practices, test organization, flat test suites, redundant tests, test refactors, pytest/JUnit/Jest/xUnit layout, test taxonomy, flaky tests, coverage quality, fixtures, mocks, parametrization, pruning existing UTs, or "which tests are worth keeping." It…

MiaoDX/intuitive-flow · 154 tokens

verify

Run the HUMHUM quality gates that are actually touched by the current diff — frontend typecheck + vitest, and Rust fmt/clippy/test — mirroring CI. Use before marking work done, opening a PR, or when asked to "verify", "check", or "run the gates".

edible999999999-jpg/humhum · 62 tokens

test-generation

Generate comprehensive tests for code including unit tests, integration tests, and edge case coverage. Analyzes code to identify testable units and generates tests matching the project's testing framework and conventions.

richardcb/oh-my-gemini · 41 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens

build-and-test

How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.

microsoft/agent-framework · 26 tokens

writing-tests

Write unit tests, component tests, and integration tests for AiderDesk using Vitest and React Testing Library. Use when creating new tests, adding test coverage, configuring mocks, setting up test files, or debugging failing tests.

hotovo/aider-desk · 48 tokens