AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Fixing Vibator Findings

skill-vibator-vibator-fixing-vibator-findings · by vibator

Act on vibator findings: consume the JSON report, apply each finding's fix, read the guideline behind a rule when the fix is not obvious, verify with a re-run, and use a reasoned ignore only when the rule is genuinely wrong. Use when a vibator run fails, when asked to clean up quality-gate findings, or before declaring work done in a repo that has a vibator.json.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-vibator-vibator-fixing-vibator-findings

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vibator-vibator-fixing-vibator-findings)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Fixing Vibator Findings? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Fixing vibator findings

Run the gate as JSON; the output is designed to be acted on:

npx vibator --reporter json

Each diagnostic carries three separate fields with distinct jobs:

  • message: what is wrong. Read it to locate the problem.
  • expected: the standard, positively stated. This is the target state.
  • fix: the concrete next action. Act on this field; it is written to be

executable without further interpretation.

Plus context: file and line for where, snippet for the surrounding source (triage without opening the file), and docs for the guideline in force, with an absolutePath you can read directly when the fix needs background.

The loop

  1. Run npx vibator --reporter json. During iteration, scope the run to

your work: --changed (uncommitted changes) or --since origin/main (the branch's whole diff), and --only while working one rule.

  1. Group by ruleId and work rule by rule. Thirty findings from one

rule usually share one cause and often one mechanical fix.

  1. Apply the fix. When it is not enough, read the guideline at

docs[0].absolutePath (or npx vibator explain ). It states why the rule exists and what correct code looks like, including the exception policy. That path may point outside the repository, into a shared preset the config extends. Read it; never edit it. A file under node_modules is replaced on the next install, so a change there fixes nothing and hides the standard from everyone else.

  1. Re-run the same command until clean. Exit code 0 with no errors is

done. Warnings do not block, but treat them the same way in code you touched.

What not to do

  • Never edit vibator.json to make a run pass. No severity downgrades,

no new excludes, no off. The config is the project's standard; changing the standard is a human decision, not a fix. This covers any config it extends: a preset is a standard several projects share, so editing it to silence this repository breaks the standard for all of them.

  • Do not restate message as a code comment or otherwise annotate the

violation. Fix it.

  • Do not blanket-ignore. The escape hatch exists for the case where the

rule is wrong about one specific line:

``ts // vibator-ignore: hot path, runs per audio frame of a live call for (let index = 0; index < input.length; index++) { ``

The reason is required and must survive review. If you find yourself writing the same reason three times, stop: either the code needs a different structure, or the rule's configuration needs a human's attention. Say so instead of continuing.

Failures that are not findings

A rule with an error field in the JSON crashed rather than checked anything. That is configuration or environment, not code: a missing tsconfig, a generator that needs a running service, a locales root that moved. Fix the configuration (see the configuring-vibator skill) or report it. Do not hide it.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.