no-vibe: Command for Claude Code

.opencode/commands/no-vibe-btw.md

no-vibe-btw is a command for Claude Code, OpenCode from rizukirr/no-vibe. It costs 23 tokens per session (650 once invoked), scanned A, original, MIT.

A one-task command for temporarily allowing an AI coding assistant to write to project files, then restoring no-vibe learning mode.

In plain words
What is it for?
Use it for one clearly described job, such as creating a Node.js .gitignore file, scaffolding a Makefile, or correcting a specific README typo.
Why use it?
It handles tedious or boilerplate work without permanently turning off the restriction that keeps the rest of the session hands-on.

Command for Claude CodeOpenCode

Written for Claude Code and OpenCode: argument-hint in frontmatter, but also installed under .opencode/. Also seen: mentions OpenCode.

This is rizukirr/no-vibe's own configuration. It tells Claude Code and OpenCode how to work on no-vibe itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything no-vibe configures →

Part of the no-vibe plugin — 3 skills, 3 commands shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to rizukirr/no-vibe. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/rizukirr/no-vibe/main/.opencode/commands/no-vibe-btw.md
Clone the repo
git clone --depth 1 https://github.com/rizukirr/no-vibe

Made for: Claude Code, OpenCode.

Or install no-vibe, the plugin that ships this one along with the rest of its 3 skills, 3 commands.

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 no-vibe-btw

README.md
[![agentmods](https://agentmods.dev/badge/commands/rizukirr/no-vibe/no-vibe-btw/github.svg)](https://agentmods.dev/commands/rizukirr/no-vibe/no-vibe-btw)
Your own site
<a href="https://agentmods.dev/commands/rizukirr/no-vibe/no-vibe-btw"><img src="https://agentmods.dev/badge/commands/rizukirr/no-vibe/no-vibe-btw/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for no-vibe-btw

Your own site · 80×15
<a href="https://agentmods.dev/commands/rizukirr/no-vibe/no-vibe-btw"><img src="https://agentmods.dev/badge/commands/rizukirr/no-vibe/no-vibe-btw.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 650 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.00023 $0.00650
Opus 5 $0.00012 $0.00325
Sonnet 5 $0.00005 $0.00130
Haiku 4.5 $0.00002 $0.00065

Measured 11d ago against content hash 6453bfb9b746, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

no-vibe-btw 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 11d 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.

.opencode/commands/no-vibe-btw.md · 93 lines

How it starts

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

/no-vibe-btw

One-shot escape from no-vibe mode. AI writes code to project files for a single task, then restores the no-vibe marker if it was active.

Use when you hit something tedious or boilerplate you would rather not type yourself, but want learning mode back on for the rest of the session.

Arguments

$ARGUMENTS — the task description. Required.

Examples:

  • /no-vibe-btw add a .gitignore for node
  • /no-vibe-btw scaffold a Makefile with build/test/clean targets
  • /no-vibe-btw fix the typo in README.md line 42

Instructions for OpenCode

1. Validate arguments

If $ARGUMENTS is empty, stop and tell the user: /no-vibe-btw requires a task description. Example: /no-vibe-btw add a .gitignore for node.

2. Snapshot marker state

You MUST run:

was_active=0
[ -f .no-vibe/active ] && was_active=1

3. Disable no-vibe guard for this one task

You MUST run:

rm -f .no-vibe/active

Then verify with:

test ! -f .no-vibe/active

If verification succeeds, explicitly state in chat: temporary btw mode active (.no-vibe/active removed).

4. Execute the task

Do exactly what $ARGUMENTS asks — nothing more.

Scope rules:

  • One task only. No scope creep, no "while I am here" cleanup.
  • No refactors of untouched code.
  • No new abstractions beyond what the task requires.
  • If the task is ambiguous or too broad (for example "build the whole app"), stop and ask the user to narrow it before writing anything.

5. Restore marker state

Always restore if it was active before, even if the task failed:

if [ "$was_active" = "1" ]; then
    mkdir -p .no-vibe && touch .no-vibe/active
fi

Then verify with:

if [ "$was_active" = "1" ]; then
    test -f .no-vibe/active
fi

If verification succeeds and was_active=1, explicitly state in chat: no-vibe is active again (.no-vibe/active restored).

6. Report

One short summary: what changed (files + one-line rationale). No trailing narration.

Read the full file on GitHub · 93 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. 11d ago First seen · 93 lines · 23 tokens per session scan A 6453bfb9b746

Subscribe to this mod's changes

no-vibe-btw is a command published in the GitHub repository rizukirr/no-vibe (36 stars, last pushed 3mo ago), licensed MIT. It adds 23 tokens to every session and 650 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.

Related

Other commands, from other repositories