premise-check

premise-check is a skill for Claude Code from brunob54/superpowers-orchestrator. It costs 114 tokens per session (555 once invoked), scanned A, original, MIT.

A preliminary check that tests whether a proposed project or feature is actually needed before design or implementation begins.

In plain words
What is it for?
It helps assess whether the problem exists, whether current tools already cover it, and whether the proposed work is still justified before planning or building.
Why use it?
It helps avoid spending time building something that is already solved, unnecessary, too costly, or based on an outdated reason.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the superpowers-orchestrator plugin — 28 skills, 2 agents, 6 hooks shipped together

Good fit It helps assess whether the problem exists, whether current tools already cover it, and whether the proposed work is still justified before planning or building.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/brunob54/superpowers-orchestrator/premise-check
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 brunob54/superpowers-orchestrator --skill premise-check
Clone the repo
git clone --depth 1 https://github.com/brunob54/superpowers-orchestrator

Made for: Claude Code.

Or install superpowers-orchestrator, the plugin that ships this one along with the rest of its 28 skills, 2 agents, 6 hooks.

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 premise-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/brunob54/superpowers-orchestrator/premise-check/github.svg)](https://agentmods.dev/skills/brunob54/superpowers-orchestrator/premise-check)
Your own site
<a href="https://agentmods.dev/skills/brunob54/superpowers-orchestrator/premise-check"><img src="https://agentmods.dev/badge/skills/brunob54/superpowers-orchestrator/premise-check/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 premise-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/brunob54/superpowers-orchestrator/premise-check"><img src="https://agentmods.dev/badge/skills/brunob54/superpowers-orchestrator/premise-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 555 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.
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.00114 $0.00555
Opus 5 $0.00057 $0.00278
Sonnet 5 $0.00023 $0.00111
Haiku 4.5 $0.00011 $0.00056

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

Security

Grade A, and why

premise-check 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/premise-check/SKILL.md · 39 lines

How it starts

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

Premise Check

Why This Exists

It's easy to treat a design request as unconditional — "user asked me to design X, so I'll design the best X I can." But the right answer is sometimes "X shouldn't exist." Without a deliberate check, effort flows into comprehensive designs that solve problems that are already handled, cost more than they're worth, or whose motivation evaporated when new evidence arrived.

The most dangerous failure mode isn't building something wrong — it's building something unnecessary with conviction.

When to Apply

  • Before investing in any design, plan, or architecture proposal
  • Before extending an existing system with significant new complexity
  • When new evidence (test results, research, changed requirements) arrives that relates to the motivation behind proposed or in-progress work
  • When you find yourself updating facts in a document without reassessing whether the document's conclusions still hold

The Check

Answer these three questions honestly before proceeding:

  1. Does the problem actually exist, or is it already solved? Look at what's already in place. Check whether existing mechanisms already cover the gap. If the problem was hypothetical when the work was proposed, has it since been confirmed or disproven?

  2. Is the proposed solution proportional to the problem? Compare the complexity, maintenance burden, and token/time cost of the solution against the severity and frequency of the problem. A rare edge case doesn't justify a framework. Three lines of code don't need an abstraction.

  3. What's the cost of NOT building this? If the answer is "nothing breaks, things are just slightly less elegant" — that's a strong signal to skip it.

What to Do With the Answers

  • If all three pass: proceed, but note why you believe the work is justified.
  • If any answer is unfavorable: say so directly. Recommend against proceeding and explain why. Don't just note the concern and keep building — stop and surface the tradeoff to the user.
  • If evidence has changed since the work was originally proposed: reassess the conclusions, not just the facts. Updated facts with unchanged conclusions is the specific failure mode this check exists to catch.

Read the full file on GitHub · 39 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 · 39 lines · 114 tokens per session scan A ef9ced440f5c

Subscribe to this mod's changes

premise-check is a skill published in the GitHub repository brunob54/superpowers-orchestrator (3 stars, last pushed yesterday), licensed MIT. It adds 114 tokens to every session and 555 once invoked, about $0.0006 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

github-pr-review

Handles PR review comments and feedback resolution. Use when user wants to resolve PR comments, handle review feedback, fix review comments, address PR review, check review status, respond to reviewer, verify PR readiness, review PR comments, analyze review feedback, evaluate PR comments, assess review suggestions, or…

fvadicamo/dev-agent-skills · 95 tokens

privacy-guard

Prevents private infrastructure details (node hostnames, internal project names, local usernames and personal emails, absolute home paths, private and VPN IP ranges) from leaking into public repositories through commits, PRs, docs or release artifacts. Use when working in a public or soon-to-be-public repo, before…

fvadicamo/dev-agent-skills · 128 tokens

github-pr-creation

Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing…

fvadicamo/dev-agent-skills · 75 tokens

github-pr-merge

Merges GitHub Pull Requests after validating pre-merge checklist. Use when user wants to merge PR, close PR, finalize PR, complete merge, approve and merge, or execute merge. Runs pre-merge validation (tests, lint, CI, comments), confirms with user, merges with proper format, handles post-merge cleanup.

fvadicamo/dev-agent-skills · 72 tokens

git-commit

Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.

fvadicamo/dev-agent-skills · 49 tokens

qa

Code review + QA vs Acceptance Criteria, including A+ status suggestions and review comment draft.

sequant-io/sequant · 20 tokens