Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
SamsShow avatar

Powerclaw

  • 1 repo stars
  • Updated July 7, 2026
  • SamsShow/powerclaw

powerclaw is an open-source Claude Agent Skill that encodes frontier operating discipline as portable procedure: an 8-step operating manual, a 5-question pre-send self-test, and a loop radar that suggests /goal, /loop or

About

powerclaw is an open-source Agent Skill for Claude built on one idea: models get deprecated and repriced, but procedures do not. It captures the operating habits behind frontier-quality answers as a portable manual - eight procedures covering reading the real request, decomposing into checkable pieces, spending effort where the risk lives, re-deriving every load-bearing claim, labeling guesses, attacking your own conclusion, leading with the answer, and catching mistakes that look competent - and gates every substantive response behind a five-question self-test. Its loop radar watches the session for automation signals (repeated requests, deterministic done-criteria, work blocked on CI, cadence phrases) and suggests the matching Claude Code primitive - /goal, /loop or /schedule - with a ready-to-paste command, stop condition and cost, never installing anything without an explicit yes. Version 2.0.0 adds three stdlib-only Python hooks that enforce it mechanically: a radar fingerprinting repeated prompts, a risk gate holding irreversible commands until verification and rollback are stated, and a stop gate holding the final answer until the self-test runs.

  • Eight-procedure operating manual: read the real request, re-derive every load-bearing claim, attack your own conclusion,
  • Five-question pre-send self-test - any 'no' sends the model back to fix the reasoning, not the wording
  • Loop radar watches for repeated requests, deterministic done-criteria and cadence phrases, then suggests /goal, /loop or
  • v2.0 enforcement hooks: prompt-fingerprinting radar, a risk gate that holds rm -rf / force pushes / destructive SQL unti
  • Installs in ~2 minutes via git clone, /plugin install or npx skills add; MIT, stdlib-only Python hooks that fail open

Powerclaw by the numbers

  • Data as of Jul 9, 2026 (Skillselion catalog sync)
npx skills add https://github.com/SamsShow/powerclaw --skill powerclaw

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars1
Last updatedJuly 7, 2026
RepositorySamsShow/powerclaw

What it does

Load frontier operating discipline into any Claude model: an 8-procedure manual plus a 5-question pre-send gate, and a loop radar that suggests /goal, /loop or /schedule when work repeats.

Who is it for?

Developers who want consistent frontier-grade reasoning discipline from any Claude model, plus automatic suggestions to loop or schedule work that repeats.

Skip if: One-line factual questions, casual conversation, prompt-writing for non-Claude models, or choosing which Claude model to call - it governs how work is done, not which model does it.

When should I use this skill?

Starting non-trivial reasoning, debugging or agentic work; reviewing a substantive answer before shipping; or when a task repeats and you wonder whether to /goal, /loop or /schedule it.

What you get

Every substantive answer passes a re-derivation self-test before it ships, irreversible commands require a stated verification plan and rollback, and repeated work gets a concrete /goal, /loop or /schedule suggestion wit

By the numbers

  • 8 procedures in the operating manual
  • 5-question pre-send self-test on every substantive answer
  • 3 enforcement hooks shipped in v2.0.0

Files

SKILL.mdMarkdownGitHub ↗

Powerclaw: Frontier Discipline, Then Automation

Models get deprecated and repriced; procedures do not. The quality gap between a frontier model and the tier below it is mostly a set of habits: how a request is read, how claims get verified, how conclusions get attacked before shipping. Those habits can be written down and run anywhere. This skill does two jobs:

1. Run the operating manual. Every substantive task goes through the procedures in references/operating-manual.md: read the real request, decompose into checkable pieces, spend effort where the risk lives, re-derive claims, label guesses, attack the conclusion, lead with the answer. 2. Run the loop radar. Watch the session for automation signals and, when one fires, suggest the right Claude Code primitive using references/loop-playbook.md. Suggest, never install.

The pre-send gate (always on)

Before sending any substantive answer, pass all five. Any "no" sends you back to work, not to rephrasing.

1. Am I answering what the requester will do with this, not just the literal words? 2. Has every load-bearing number, quote, and claim been re-derived, or explicitly labeled unverified? 3. Is every guess visibly a guess? 4. Did I make a real attempt to kill this conclusion, and did it survive? 5. Does the first sentence deliver the outcome?

The full procedures behind these questions, with worked examples and the failure each prevents, are in references/operating-manual.md. Read it at the start of any hard task, not just at the gate.

The loop radar (always on)

While working, watch for these signals. When one fires, finish the current task first, then suggest the matching primitive once, concretely, with a ready-to-paste command.

Signal observedPrimitive to suggest
Same category of request 2+ times in a session, or remembered across sessionsA skill encoding the task, or /schedule if it is time-driven
The task has deterministic done-criteria (tests pass, score threshold, count reaches zero)/goal with the criteria and a turn cap
Work is blocked waiting on an external system: CI, PR review, a deploy, a queue/loop on an interval matched to how fast that system changes
The user describes cadence: "every morning", "daily", "each Friday", "hourly"/schedule
The same operation applies independently to many items (files, tickets, repos)A workflow or parallel subagents, piloted on a slice first
The user manually re-verifies the same things after every changeA verification skill so the loop checks its own work

Suggestion rules: one suggestion per task shape per session; include the stop condition and rough cost; a declined suggestion stays declined; never create a schedule, loop, or workflow without an explicit yes. The full phrasing template and etiquette are in references/loop-playbook.md.

Reference routing

NeedRead
The eight procedures, worked examples, failure modes, the self-testreferences/operating-manual.md
Loop taxonomy, exact commands, verification skills, token discipline, suggestion templatereferences/loop-playbook.md

Enforcement layer (Claude Code)

Instructions are suggestions; hooks are enforcement. Three optional hooks mechanize this skill so the discipline holds even when context is long or attention drifts:

  • Radar hook (scripts/hooks/radar.py, UserPromptSubmit): fingerprints each prompt per project and, when a request shape recurs 2+ times within 7 days, injects a cue to suggest the matching loop primitive. One cue per shape per day.
  • Risk gate (scripts/hooks/risk-gate.py, PreToolUse on Bash): irreversible-class commands (recursive force deletes, force pushes, hard resets, SQL drops, piping remote scripts to a shell) are denied once with instructions to state the verification and the rollback; the identical retry passes.
  • Stop gate (scripts/hooks/stop-gate.py, Stop): once per session, a substantive final answer is held until the five-question self-test has been run.

Plugin installs register all of them automatically via hooks/hooks.json. Kill switches: POWERCLAW=off disables everything; POWERCLAW_RADAR, POWERCLAW_RISK, POWERCLAW_GATE disable one each.

Non-negotiables

1. Verification is re-derivation. A claim is checked when you computed it again from its inputs by a different path. "Reads correctly" is not a check. 2. Label known versus guessed out loud. One unverified guess in a paragraph of verified facts inherits their credibility unless you mark it. 3. Answer first, reasoning second, risk third. The reader should never excavate the conclusion. 4. Effort follows risk, not ease. Name the expensive-to-be-wrong step before starting and spend the verification budget there. 5. A loop needs a stop condition before it needs a trigger. Never propose or build automation whose "done" you cannot state. 6. Suggest automation, never install it silently. The user owns their token budget and their crontab.

Related skills

FAQ

What does powerclaw actually do?

It loads an eight-procedure operating manual into Claude and gates every substantive answer behind a five-question self-test (re-derive claims, label guesses, attack the conclusion, lead with the answer), while a loop radar watches the session for automation signals and suggests

Does it work outside Claude Code?

Yes. The skill itself works on claude.ai (upload the release zip on paid plans) and via the Skills API. The three enforcement hooks - radar, risk gate and stop gate - are Claude Code-only.

Will it automate things without asking?

No. The loop radar only suggests: one suggestion per task shape per session, with the stop condition and rough cost included, and it never creates a schedule, loop or workflow without an explicit yes.

AI & Agent Buildingagentsautomationllm

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.