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 alexcassol/claude-vb6-skills --skill vb6-guidelinesgit clone --depth 1 https://github.com/alexcassol/claude-vb6-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/alexcassol/claude-vb6-skills/vb6-guidelines)<a href="https://agentmods.dev/skills/alexcassol/claude-vb6-skills/vb6-guidelines"><img src="https://agentmods.dev/badge/skills/alexcassol/claude-vb6-skills/vb6-guidelines/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/alexcassol/claude-vb6-skills/vb6-guidelines"><img src="https://agentmods.dev/badge/skills/alexcassol/claude-vb6-skills/vb6-guidelines.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.00237 | $0.02921 |
| Opus 5 | $0.00118 | $0.01460 |
| Sonnet 5 | $0.00047 | $0.00584 |
| Haiku 4.5 | $0.00024 | $0.00292 |
Grade A, and why
vb6-guidelines 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 — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.
VB6 Guidelines
VB6 is not VB.NET. It is not C#. It is not VBA. The rules below reflect what the VB6 compiler (1998) requires and what the COM ecosystem expects.
1. Case-preservation is absolute in existing code
VB6 is case-insensitive at the compiler level. Diff tools (Git, GitHub, GitLab,
Bitbucket, code review tools) are case-sensitive. Changing the case of an
identifier in existing code pollutes pull requests with ghost changes, hides the
real diff, and breaks git blame.
Absolute rule: when editing existing code, the case of every identifier stays exactly as it is. No exceptions.
This applies to:
- Variables and parameters (
m_StrNamestaysm_StrNameeven if the current convention ism_strName) - Properties and procedures (
Public Sub ReadFileis not "normalized" toReadFileif it is alreadyReadFile) - Keywords (
If/Then/End If— preserve as written; the IDE may have normalized different files differently) - Type names (
As String,As Long) - Constants (
vbCrLfvsvbCRLF) - References to module and class names
When you may use the "correct" case:
- New code (new procedure, new module, new variable)
- When the user explicitly asks for normalization
When you may not, even when it looks obvious:
- "Taking advantage" of a bugfix commit to normalize
- "Since I'm already here" during a legitimate refactor of something else
- Cosmetic cleanup without explicit request
The cost of polluting the diff outweighs the value of uniformity. Always.
2. Option Explicit and type declarations are mandatory
VB6 allows implicit typing for VB3/4 backward compatibility. In new code, this is guaranteed technical debt.
- Always
Option Explicitat the top of every module (.bas,.cls,.frm) - Always declare type:
Dim i As Long, neverDim i - Prefer
LongoverInteger— VB6Integeris 16 bits, overflows at 32,768 - Avoid
Variantexcept when interacting with APIs that returnVariant(e.g., ADOGetRows) - Declare return type in every
Function:Public Function X() As String, notPublic Function 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.
- 10d ago First seen · 326 lines · 237 tokens per session scan A e2dfcd8eadad
vb6-guidelines is a skill published in the GitHub repository alexcassol/claude-vb6-skills (4 stars, last pushed 2mo ago), licensed MIT. It adds 237 tokens to every session and 2,921 once invoked, about $0.0012 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
chief-strategy-officer
Owns where the business plays and how it wins over a multi-year horizon — portfolio choices, corporate development, strategic partnerships, and planning under uncertainty. Use this for a decision about which markets or businesses to be in, whether to build, buy, or partner, how to allocate capital across business…
seo-strategy
Audits and improves organic search performance — technical health, site architecture, internal linking, structured data, and the content decisions that determine what can rank. Use this to run an SEO audit, diagnose why pages are not ranking or were deindexed, plan a site's URL and navigation structure, add structured…
service-desk
Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…
youtube-producer
Plans, packages, and scripts long-form video for retention and channel growth — idea selection, titles and thumbnails, script structure, and diagnosing why a video or channel underperforms. Use this for video ideas, packaging, scripting, a retention teardown, or channel strategy — including when someone describes a…
chief-revenue-officer
Owns the revenue engine end to end: sales, monetization, pricing, customer success, retention, and partnerships. Use this for pricing and packaging decisions, sales strategy and coverage, forecast and pipeline health, churn and expansion, partner and channel strategy, or when marketing-sourced demand is not…
support-operations
Designs and runs the support function — channels, queues, routing, staffing, service levels, quality, and the metrics that show whether it is working. Use this to set up or fix support operations, choose channels, size a team, set or renegotiate service levels, reduce cost per contact, diagnose long queues or poor…