hotfix

hotfix is a skill for Claude Code from pe-menezes/vibeflow. It costs 102 tokens per session (2,536 once invoked), scanned A, original, MIT.

A defect-fixing workflow for a bug that has observable evidence, such as a failing report, log, or investigation result. It records the reasoning, adds a test that fails before the fix, and then implements the correction.

In plain words
What is it for?
Handling reported or investigated bugs, including production incidents, by writing a trace document, adding a regression test, and reporting clearly when verification cannot run.
Why use it?
It connects the fix to a reproducible problem and leaves a test that helps prevent the same bug from returning.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the vibeflow plugin — 10 skills, 1 agent shipped together

Good fit Handling reported or investigated bugs, including production incidents, by writing a trace…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pe-menezes/vibeflow/hotfix
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 pe-menezes/vibeflow --skill hotfix
Clone the repo
git clone --depth 1 https://github.com/pe-menezes/vibeflow

Made for: Claude Code.

Or install vibeflow, the plugin that ships this one along with the rest of its 10 skills, 1 agent.

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 hotfix

README.md
[![agentmods](https://agentmods.dev/badge/skills/pe-menezes/vibeflow/hotfix.svg)](https://agentmods.dev/skills/pe-menezes/vibeflow/hotfix)
Your own site
<a href="https://agentmods.dev/skills/pe-menezes/vibeflow/hotfix"><img src="https://agentmods.dev/badge/skills/pe-menezes/vibeflow/hotfix.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,536 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.00102 $0.02536
Opus 5 $0.00051 $0.01268
Sonnet 5 $0.00020 $0.00507
Haiku 4.5 $0.00010 $0.00254

Measured today against content hash 8a81cb2effa9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

hotfix 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 today.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

plugins/vibeflow/skills/hotfix/SKILL.md · 225 lines

How it starts

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

Description and examples

What it does: In one call, produces a short trace doc in .vibeflow/hotfixes/ and implements the fix, born with a regression test that failed before it. Exactly two outcomes: done or a named HALT that saves the doc and hands the next step to a human. Done carries the doc, the fix, and the regression test — red→green when the host runs tests; when it cannot, the doc declares verification: not-run and the status locks at partial. The discriminator against the other commands is evidence — an observed defect you can show, wherever it surfaced.

Examples:

  • hotfix — after a bug was investigated in this conversation; inherits symptom and hypothesis from the session (origin: session).
  • hotfix login returns 500 for emails with "+"; stack trace below — symptom + evidence in the prompt, headless/CI included (origin: prompt).
  • hotfix harness caught: audit stamps PASS on an empty diff — log attached — evidence produced by someone else: a review finding, a harness failure, a user report (origin: third-party).
  • hotfix .vibeflow/hotfixes/2026-08-16-saldo-zero.md — resume a halted doc from where it stopped (origin: resumed).

Language

Detect the language of the user's current request or conversation. Write ALL output in that same language. Technical terms in English are acceptable regardless of the detected language. One exception: the trace doc's section names, field names, and vocabulary values stay literally in English in any output language — resuming and consolidation match them exactly.

Fix the observed defect described in the user's current request.

The one-call contract

You are a coding agent on a live defect: the evidence decides, you execute and record. One invocation, exactly two structured outcomes — done or a named HALT. No mandatory questions in between: a question you would need answered becomes the HALT that motivates it, with the doc saved and the question recorded as the human's next step. Degradation is declared, not silent — a host that cannot run tests writes verification: not-run in the doc and the status locks at partial.

Read the full file on GitHub · 225 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. today Changed · -1 lines 8a81cb2effa9
  2. 7d ago First seen · 226 lines · 102 tokens per session scan A 0b32f0262b45

Subscribe to this mod's changes

hotfix is a skill published in the GitHub repository pe-menezes/vibeflow (29 stars, last pushed yesterday), licensed MIT. It adds 102 tokens to every session and 2,536 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

bugfix

Quality bug fixes (P1/P2). Full TDD cycle, branch from master via feature/, no production deploy.

fall-out-bug/sdp · 27 tokens

ijfw-tdd

RED-GREEN-REFACTOR enforcement. Use when implementing a feature or bugfix before writing implementation code. Trigger: tdd, test first, red green refactor, /ijfw-tdd.

FerroxLabs/ijfw · 45 tokens

qa-knowledge

To run QA engineering — requirements/gap analysis, scenario & spec design, test implementation, failure triage — over the QA knowledge base.

griddynamics/rosetta · 32 tokens

testing

Characterization testing and safety-net backfill for existing code. Use when legacy, under-tested, or risky code needs tests before a refactor, bug fix, or behavior change. Captures current behavior through public interfaces, identifies coverage gaps, and adds focused unit, integration, or E2E tests without replacing…

howells/arc · 70 tokens

megalinter-check

Collect MegaLinter lint errors for the current repository. Use when the user wants to know if the code passes linting, why the MegaLinter CI job fails, or before/after fixing lint errors. Two modes - watch a CI job (GitHub Actions, GitLab CI, Azure Pipelines, Bitbucket Pipelines) and parse its logs, or run MegaLinter…

ulises-jeremias/agent-toolkit · 96 tokens

autonomous-tdd-debugger

Empowers the agent to autonomously run tests, read terminal stack traces, and self-heal code until tests pass. Transforms the agent from a passive coder to an active CI pipeline debugger.

roedyrustam/vibes-plug · 46 tokens