Install
$ agentstack add skill-vibator-vibator-fixing-vibator-findings ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- 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.
- Group by
ruleIdand work rule by rule. Thirty findings from one
rule usually share one cause and often one mechanical fix.
- 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.
- 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.jsonto 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
messageas 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.
- Author: vibator
- Source: vibator/vibator
- License: MIT
- Homepage: https://www.vibator.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.