vibing-chat-recall

vibing-chat-recall is a skill for Claude Code from shabaraba/vibing.nvim. It costs 130 tokens per session (818 once invoked), scanned A, original, MIT.

A recovery tool for rereading the current vibing.nvim chat buffer, which stores the conversation inside Neovim.

In plain words
What is it for?
It is for recovering this chat's previous conversation when its context has become incomplete or disconnected.
Why use it?
It restores missing context after a reset, lost connection, or compaction when the agent no longer matches the earlier discussion.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vibing-nvim plugin — 12 skills, 1 agent shipped together

Good fit It is for recovering this chat's previous conversation when its context has become incomplete or disconnected.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shabaraba/vibing.nvim/vibing-chat-recall
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 shabaraba/vibing.nvim --skill vibing-chat-recall
Clone the repo
git clone --depth 1 https://github.com/shabaraba/vibing.nvim

Made for: Claude Code.

Or install vibing-nvim, the plugin that ships this one along with the rest of its 12 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 vibing-chat-recall

README.md
[![agentmods](https://agentmods.dev/badge/skills/shabaraba/vibing.nvim/vibing-chat-recall/github.svg)](https://agentmods.dev/skills/shabaraba/vibing.nvim/vibing-chat-recall)
Your own site
<a href="https://agentmods.dev/skills/shabaraba/vibing.nvim/vibing-chat-recall"><img src="https://agentmods.dev/badge/skills/shabaraba/vibing.nvim/vibing-chat-recall/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 vibing-chat-recall

Your own site · 80×15
<a href="https://agentmods.dev/skills/shabaraba/vibing.nvim/vibing-chat-recall"><img src="https://agentmods.dev/badge/skills/shabaraba/vibing.nvim/vibing-chat-recall.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 818 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00130 $0.00818
Opus 5 $0.00065 $0.00409
Sonnet 5 $0.00026 $0.00164
Haiku 4.5 $0.00013 $0.00082

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

Security

Grade A, and why

vibing-chat-recall 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 2d 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.

claude-plugin/skills/vibing-chat-recall/SKILL.md · 62 lines

How it starts

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

vibing-chat-recall

Restores this conversation's own context after it appears to have been lost (session reset, dropped RPC connection, compaction) by re-reading the live vibing.nvim chat buffer this conversation is running in.

When this applies

  • The user explicitly asks to "思い出して" / "recall" / "re-read the chat history".
  • Claude notices its own responses no longer track what was discussed earlier in this same conversation — a sign the session was silently reset or compacted.
  • Invoked directly via /vibing-chat-recall.

This skill only makes sense inside a vibing.nvim chat session. If the environment doesn't look like one (see below), say so briefly and stop — don't guess at a file to read.

Locating this conversation's own chat buffer

Every request sent through vibing.nvim's Claude CLI adapter carries one extra line appended to the system prompt:

Current vibing.nvim chat buffer number: 12

Use that buffer number — never rely on which Neovim window currently has focus, since the user may have switched away, or another chat may be running concurrently. It is a buffer number rather than a path so that :VibingSetFileTitle renaming the chat mid-conversation neither breaks this lookup nor invalidates the prompt cache.

If that line isn't present in the system prompt, this skill isn't running inside vibing.nvim (or is running against an older vibing.nvim build that doesn't send it yet). Tell the user briefly and stop.

Reading the buffer

The MCP server is already bound to this chat's Neovim, so omit rpc_port on both calls below. If the mcp__vibing-nvim__ prefix is unavailable, look for a tool name ending in the one you need — loaded as a plugin they are mcp__plugin_vibing-nvim_vibing-nvim__<tool>. The nvim-context skill explains both in full.

  1. Call mcp__vibing-nvim__nvim_get_buffer with the bufnr from the system prompt to fetch the buffer's current content. This is the live in-memory content, including edits that haven't been written to disk yet — vibing.nvim chat buffers are not auto-saved, so the on-disk file can lag behind what's actually been discussed.
  2. If that call reports an invalid buffer — a resumed conversation can replay a buffer number from an earlier Neovim session — call mcp__vibing-nvim__nvim_list_buffers, find the chat file by name, and use its current bufnr.
  3. If the RPC connection itself is down (Neovim not reachable), there is no fallback: every other route to the buffer goes over the same channel. Tell the user briefly and stop.

Read the full file on GitHub · 62 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. 2d ago Changed · -2 lines 82e9c18499eb
  2. 10d ago First seen · 64 lines · 130 tokens per session scan A be9018a74a07

Subscribe to this mod's changes

vibing-chat-recall is a skill published in the GitHub repository shabaraba/vibing.nvim (13 stars, last pushed yesterday), licensed MIT. It adds 130 tokens to every session and 818 once invoked, about $0.0006 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

context-optimizer

Reduce Claude AI token consumption by 5x-27x using prompt-native workflows and structural code manifests. Forces Claude to reason from CONTEXTMANIFEST.md first, fetch max 3 files per turn, and output in a strict compressed format. Use when user says optimize context, reduce tokens, context optimizer, manifest, blast…

anshmajumdar121/context-optimizer · 75 tokens

context-optimizer

Reduce Claude AI token consumption by 5x-27x using prompt-native workflows and structural code manifests. Forces Claude to reason from CONTEXTMANIFEST.md first, fetch max 3 files per turn, and output in a strict compressed format. Use when user says optimize context, reduce tokens, context optimizer, manifest, blast…

anshmajumdar121/context-optimizer · 75 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

vellum-memory-v3-migration

One-time migration of an existing memory-v2 concept corpus into the memory-v3 section-grain "wiki" — topical articles with a stand-alone lead and queryable sections — with loss-proof staging, assistant-reviewed authoring, and a retrieval-eval gate before cutover.

vellum-ai/vellum-assistant · 63 tokens

vellum-memory-v2-migration

Perform a one-time migration from memory v1, to memory v2, which was introduced in 0.8.0.

vellum-ai/vellum-assistant · 34 tokens

daily-briefing

Proactive daily briefing that fires on a recurring schedule, pulls recent memory and workspace context, composes a structured summary (action items, progress, radar, next steps), and delivers it to all active channels. Enable with a time like "set up my daily briefing at 9am". Disable, reschedule, or check status at…

vellum-ai/vellum-assistant · 75 tokens