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.
npx agentmods add instructions/timurgaleev/vibestack/claude-mdgit clone --depth 1 https://github.com/timurgaleev/vibestackWrote 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.
[](https://agentmods.dev/instructions/timurgaleev/vibestack/claude-md)<a href="https://agentmods.dev/instructions/timurgaleev/vibestack/claude-md"><img src="https://agentmods.dev/badge/instructions/timurgaleev/vibestack/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03433 | $0.03433 |
| Opus 5 | $0.01716 | $0.01716 |
| Sonnet 5 | $0.00687 | $0.00687 |
| Haiku 4.5 | $0.00343 | $0.00343 |
Grade C, and why
vibestack CLAUDE.md scanned grade C with 1 finding 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 yesterday.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
the first escaped quote, so `git commit -m "wip" && rm -rf /` reaches the How it starts
The opening of the file, as written. The whole thing — 303 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — vibestack Development Guide
This file guides development of vibestack itself. Read it before editing skills or tooling.
Skill structure
Every skill is a directory in skills/ with a SKILL.md and an optional bin/ directory:
skills/my-skill/
├── SKILL.md # required — frontmatter + instruction body
└── bin/ # optional — hook scripts
└── check-*.sh
SKILL.md frontmatter
---
name: my-skill # slash command name — no spaces, matches directory name
description: | # one clear sentence; drives auto-invoke matching
What this skill does and when to use it.
allowed-tools: # list only what the skill actually uses
- Bash
- Read
- Edit
- Write
- Grep
- Glob
triggers: # phrases that auto-invoke the skill
- phrase that triggers it
hooks: # optional: PreToolUse interceptors
PreToolUse:
- matcher: "Bash"
hooks:
- type: command
command: "bash ${CLAUDE_SKILL_DIR}/bin/check.sh"
statusMessage: "Checking..."
---
Body style
- Write in natural language, not bash. The model follows prose instructions.
- Use
##sections for phases or major steps. - Embed an output template so Claude knows exactly how to format results.
- Keep it tight — remove anything the model doesn't need to act on.
Hook scripts
Hook scripts live in skills/<name>/bin/. Rules:
- Read JSON from stdin (the tool call payload from Claude Code)
- Return
{}to allow the tool call through silently - To pause or block, return the decision nested under
hookSpecificOutput:{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"ask","permissionDecisionReason":"..."}}permissionDecisionis"ask"or"deny"; the human-readable text goes inpermissionDecisionReason. Claude Code ignores a top-levelpermissionDecision— a hook that emits one runs, matches, prints, and changes nothing. The failure is silent, so it survives casual testing. - Never hand-build that JSON with
printf/sedinterpolation. A path or message containing a quote or newline produces malformed JSON, and the whole decision is discarded. Sourceskills/careful/bin/hook-extract.shand callvibe_hook_decision <ask|deny> "<reason>". - Parse the payload with
vibe_hook_extract_field "$INPUT" <field>from the same file, never withgrep -o '"field"..."[^"]*"'— that pattern truncates at the first escaped quote, sogit commit -m "wip" && rm -rf /reaches the checks asgit commit -m \. - Decide the polarity for an unreadable payload deliberately, and say which you
chose in a comment. Ask-tier hooks (
/careful) ask; deny-tier boundary hooks (/freeze) deny. A boundary that fails open is not a boundary. - Use
#!/usr/bin/env bashwithset -euo pipefail - Use POSIX ERE patterns —
[[:space:]]not\s,(^|[^[:alnum:]_])xnot\bx\b(BSD grep and sed on macOS do not support the GNU escapes) - Use
^anchors in sed, not.*patterngreedy matches - Be executable (
chmod +x)
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.
- yesterday Changed · +70 lines · +963 tokens per session 570bb416cbf1
- 5d ago First seen · 233 lines · 2,470 tokens per session scan C fe12eb37189f
vibestack CLAUDE.md is an instructions file published in the GitHub repository timurgaleev/vibestack (6 stars, last pushed 2d ago), licensed MIT. It adds 3,433 tokens to every session, about $0.0172 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
todo-for-ai AGENTS.md
AGENTS.md instructions for todo-for-ai/todo-for-ai: These constraints are mandatory for all pages and components in this repository.
kirocc CLAUDE.md
Claude Code instructions for d-kuro/kirocc, covering agent guidelines, core principles, project overview, commands and code conventions.
rag-code-mcp copilot-instructions.md
Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.
kiro-kit GEMINI.md
Gemini CLI instructions for ihatesea69/kiro-kit, covering mcp proxy for kiro, mandatory response format, response constraints, field definitions and examples.
init-deep AGENTS.md
Instructions for mzored/init-deep, covering agents.md, setup, commands, validate: check checked-in generated artifacts match source and lint/doctor source metadata.
modernization-kit copilot-instructions.md
Instructions for Burly-Mingo/modernization-kit, covering application modernization — copilot custom instructions, how to use this, non-negotiable principles, key methodology concepts and interaction style.