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 skills add Vibe-Marketer/plugins-and-skills --skill verify-skillsgit clone --depth 1 https://github.com/Vibe-Marketer/plugins-and-skillsWrote 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/skills/vibe-marketer/plugins-and-skills/verify-skills)<a href="https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/verify-skills"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/verify-skills/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/skills/vibe-marketer/plugins-and-skills/verify-skills"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/verify-skills.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.00118 | $0.01682 |
| Opus 5 | $0.00059 | $0.00841 |
| Sonnet 5 | $0.00024 | $0.00336 |
| Haiku 4.5 | $0.00012 | $0.00168 |
Grade A, and why
verify-skills 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 10d 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 — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<essential_principles>
-
Content, Not Structure. This skill checks whether what the skill says is still true. For structural validation, use audit-extensions instead. A structurally perfect skill with outdated API endpoints is still broken.
-
Dependency-Aware. Different skills depend on different things. An API integration skill needs endpoint verification. A CLI tool skill needs command syntax checking. Categorize first, then verify accordingly.
-
Cite Sources. When flagging something as outdated, provide the current correct information with a source. "Endpoint changed" is not useful. "Endpoint changed from /v2/users to /v3/users (per docs.example.com/changelog)" is useful.
-
Freshness Schedule. Not all skills need the same verification frequency. API-dependent skills need monthly checks. Process-dependent skills can go quarterly. Recommend an appropriate schedule.
</essential_principles>
<quick_start>
- Provide the skill path to verify
- The skill categorizes dependencies (API, CLI, framework, integration, process)
- Each dependency is checked for currency
- Outdated content is flagged with line numbers and current correct information
- A freshness report is generated with pass/fail per section and re-verification schedule </quick_start>
<step_1> Read and Inventory Dependencies
Read the skill's SKILL.md and all workflows/references. Catalog every external dependency:
| Dependency | Type | Location | Current Value | Source |
|---|---|---|---|---|
| Stripe API endpoint | API | references/stripe.md:15 | /v1/charges | stripe.com/docs |
| npm create command | CLI | workflows/setup.md:8 | npm create vite@latest | npmjs.com |
| React useEffect pattern | Framework | references/patterns.md:42 | useEffect(() => {}) | react.dev |
Dependency types:
- API: Endpoints, parameters, auth methods, response formats, rate limits
- CLI: Command syntax, flags, subcommands, version requirements
- Framework: Patterns, best practices, deprecated features, version compatibility
- Integration: Connected service configs, environment variables, format requirements
- Process: Workflow steps, decision trees, methodology recommendations </step_1>
<step_2> Categorize the Skill
Determine the primary dependency type. Most skills have a dominant type:
| Skill Category | Primary Dependencies | Verification Method | Frequency |
|---|---|---|---|
| API integration | Endpoints, params, auth | Check API docs, test endpoints | Monthly |
| CLI tooling | Commands, flags, versions | Check --help output, release notes | Monthly |
| Framework guide | Patterns, practices, APIs | Check official docs, changelogs | Quarterly |
| Service integration | Configs, formats, connections | Check service docs, status pages | Monthly |
| Process/methodology | Workflow steps, decision logic | Review against current best practices | Quarterly |
| Domain knowledge | Facts, rules, principles | Cross-reference authoritative sources | Semi-annually |
| </step_2> |
<step_3> Verify Each Dependency
For each cataloged dependency, verify its current accuracy:
API dependencies:
- Check if endpoint URL is still valid
- Verify request/response format hasn't changed
- Confirm authentication method is current
- Check for deprecation notices
- Verify rate limits and quotas
CLI dependencies:
- Check if command syntax is still correct
- Verify flags and options still exist
- Confirm version requirements are current
- Check for deprecated commands or flags
Framework dependencies:
- Check if pattern is still recommended
- Verify API hasn't changed (hooks, methods, props)
- Check for deprecated features being used
- Confirm version compatibility ranges
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 188 lines · 118 tokens per session scan A 9ac017a2081e
verify-skills is a skill published in the GitHub repository Vibe-Marketer/plugins-and-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 118 tokens to every session and 1,682 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…