power-skills-rollback

power-skills-rollback is a command for Claude Code from ThierryN/fire-flow. It costs 13 tokens per session (2,518 once invoked), scanned A, original, MIT.

A command for restoring a coding skill to an earlier version from a Git-backed skills library, where changes are tracked in Git.

In plain words
What is it for?
Use it to roll a skill back to a semantic version or commit, target the global library, skip confirmation, or preview the rollback.
Why use it?
It lets you recover a preferred version or undo problematic changes and can show the proposed rollback before applying it.

Command for Claude Code

Written for Claude Code: arguments in frontmatter. Also seen: reads .claude/ paths.

Part of the dominion-flow plugin — 5 skills, 51 commands, 13 agents shipped together

Good fit Use it to roll a skill back to a semantic version or…

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/thierryn/fire-flow/fire-skills-rollback
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.

Clone the repo
git clone --depth 1 https://github.com/ThierryN/fire-flow

Made for: Claude Code.

Or install dominion-flow, the plugin that ships this one along with the rest of its 5 skills, 51 commands, 13 agents.

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 power-skills-rollback

README.md
[![agentmods](https://agentmods.dev/badge/commands/thierryn/fire-flow/fire-skills-rollback.svg)](https://agentmods.dev/commands/thierryn/fire-flow/fire-skills-rollback)
Your own site
<a href="https://agentmods.dev/commands/thierryn/fire-flow/fire-skills-rollback"><img src="https://agentmods.dev/badge/commands/thierryn/fire-flow/fire-skills-rollback.svg" alt="Measured on agentmods" height="20"></a>
Per session 13 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,518 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.00013 $0.02518
Opus 5 $0.00006 $0.01259
Sonnet 5 $0.00003 $0.00504
Haiku 4.5 $0.00001 $0.00252

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

Security

Grade A, and why

power-skills-rollback 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 7d 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.

commands/fire-skills-rollback.md · 409 lines

How it starts

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

/fire-skills-rollback - Rollback Skill to Previous Version

Restore a skill to a previous version from the git-backed skills library.

Purpose

  • Revert problematic changes to a skill
  • Restore a preferred earlier version
  • Undo accidental modifications
  • Recover from sync conflicts
  • Test against older skill patterns

Prerequisites

The skills library must be git-versioned:

  • ~/.claude/plugins/dominion-flow/skills-library/.git/

Arguments

Argument Required Description
skill Yes Skill path: {category}/{skill-name}
version Yes Target version: semantic version (e.g., 1.2.0) or commit hash

Usage Examples

# Rollback to specific version
/fire-skills-rollback database-solutions/n-plus-1 1.2.0

# Rollback using commit hash
/fire-skills-rollback security/jwt-auth abc1234

# Rollback with confirmation skip
/fire-skills-rollback api-patterns/pagination 2.0.0 --yes

# Rollback in global library
/fire-skills-rollback performance/caching 1.0.0 --global

# Preview rollback without applying
/fire-skills-rollback testing/snapshot 1.1.0 --dry-run

Process

Verify skill and version exist:

# Check skill exists
ls ~/.claude/plugins/dominion-flow/skills-library/{category}/{skill-name}.md

# Find version in git history
cd ~/.claude/plugins/dominion-flow/skills-library
git log --oneline -- {category}/{skill-name}.md | grep -i "v{version}"

If version not found, search by semantic version in frontmatter:

# Search commits for version tag
for commit in $(git log --format=%H -- {category}/{skill-name}.md); do
  version_line=$(git show $commit:{category}/{skill-name}.md 2>/dev/null | grep "^version:")
  if [[ "$version_line" == *"{target-version}"* ]]; then
    echo "Found: $commit"
    break
  fi
done

Error if not found:

Error: Version {version} not found for skill {category}/{skill-name}

Available versions:
  v2.1.0 (2026-01-22) - abc1234
  v2.0.0 (2026-01-15) - def5678
  v1.2.0 (2026-01-08) - ghi9012
  v1.1.0 (2025-12-20) - jkl3456
  v1.0.0 (2025-12-15) - mno7890

Usage: /fire-skills-rollback {skill} {version}

Read the full file on GitHub · 409 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. 7d ago First seen · 409 lines · 13 tokens per session scan A 11569ac3d5d0

Subscribe to this mod's changes

power-skills-rollback is a command published in the GitHub repository ThierryN/fire-flow (77 stars, last pushed 24d ago), licensed MIT. It adds 13 tokens to every session and 2,518 once invoked, about $0.0001 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.