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.
git clone --depth 1 https://github.com/Vibiz-ai/vibiz-claude-pluginWrote 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/commands/vibiz-ai/vibiz-claude-plugin/post)<a href="https://agentmods.dev/commands/vibiz-ai/vibiz-claude-plugin/post"><img src="https://agentmods.dev/badge/commands/vibiz-ai/vibiz-claude-plugin/post/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.
<a href="https://agentmods.dev/commands/vibiz-ai/vibiz-claude-plugin/post"><img src="https://agentmods.dev/badge/commands/vibiz-ai/vibiz-claude-plugin/post.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00016 | $0.00889 |
| Opus 5 | $0.00008 | $0.00445 |
| Sonnet 5 | $0.00003 | $0.00178 |
| Haiku 4.5 | $0.00002 | $0.00089 |
Grade A, and why
post 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 44 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/vibiz:post
Turn a code change into a marketing-ready social post. Reads the latest commit (or a specific SHA passed as $1), writes draft post text in the brand voice, generates a matching image, and offers to schedule/publish it.
Steps
- Pick the commit.
- If
$1is set, use it:git show --stat $1andgit log -1 --format='%H %s%n%b' $1. - Else:
git log -1 --format='%H %s%n%b'andgit diff HEAD~1 HEAD --stat.
- If
- Filter out commits that are bad post material. Skip + tell the user, do NOT proceed silently:
- Merge commits (
git rev-list --merges -n 1 <sha>returns the sha) - Diff stat is fewer than 5 lines changed
- Commit subject matches
/^(chore|build|ci|style|docs)(\(|:)/i(boring infra) - Commit subject contains:
password,secret,token,cve,vuln,xss,sqli,auth bypass(security/sensitive) - Commit body has
[skip-vibiz]or[no-post]
- Merge commits (
- Pick the vibiz via the project-match skill:
- Detect this project's brand URL (package.json homepage → pyproject → Cargo → README first link).
- Call
list_vibizand match bywebsiteUrl. If exactly one match, use it silently. If multiple matches, ask the user which one. If zero matches, surface that and suggest/vibiz:onboard(do NOT silently fall back to "the only vibiz" or "the first vibiz").
- Draft the post. Compose 2-3 short copy variants (Twitter/X-friendly: under 280 chars each) that:
- Lead with the user-visible benefit ("now you can …", "we just shipped …", "fixed the X annoyance"), NOT internal jargon
- Avoid file paths, function names, library versions
- Include a relevant emoji at the start (1 max)
- End with a soft CTA ("try it →" or "ship it now →") only if the brand has a website to link to
- Generate a matching image. Call
mcp__vibiz__vibiz_generate_image({ target: { vibiz: "<slug>" }, prompt: "<short visual prompt derived from the commit>", platform: "instagram_portrait", style: "branded-ad", useBrand: true }). - Show the user. Output:
- The draft variants (numbered)
- The image
viewUrlfrom step 5 - Three options:
1) post it now,2) schedule it,3) just give me the draft
- If user picks 1 or 2:
- Call
mcp__vibiz__vibiz_social_list_accounts({ target: { vibiz: "<slug>" } }). If empty +connectUrlreturned, surface the connect link and stop. - Otherwise ask which platform(s), pick the matching
accountIds, and callmcp__vibiz__vibiz_social_publishwith the chosen variant + image URL + (for option 2) ascheduledForISO datetime the user provides.
- Call
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.
- 8d ago First seen · 44 lines · 16 tokens per session scan A db1292df0341
post is a command published in the GitHub repository Vibiz-ai/vibiz-claude-plugin (7 stars, last pushed 4mo ago), licensed MIT. It adds 16 tokens to every session and 889 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-31.
Other commands, from other repositories
git
The pre-finish status: branch, hygiene findings, message checks, workflow lint, template state.
commit
A command that examines staged Git changes and proposes a commit message using the Conventional Commits format, such as feat, fix, or docs. Git is a tool for tracking changes to code.
commit-claude-config
Version the Solana AI Kit config in git (un-ignores .claude/, CLAUDE.md, .mcp.json, .gitmodules and commits them).
session-report
Capture what changed this session and why, scoped to the current branch. Read by ship verbs when synthesizing the commit message; deleted after a successful commit.
feat
Quick feature commit. Use for new feature, add feature, implement, create new.
step6-ship
Pipeline Step 6 — Ship the completed phase: commit, update roadmap, capture postmortem, optionally push and create PR.