vb6-guidelines

vb6-guidelines is a skill for Claude Code from alexcassol/claude-vb6-skills. It costs 237 tokens per session (2,921 once invoked), scanned A, original, MIT.

A set of coding rules for Visual Basic 6, the older Microsoft programming language, when editing its project and source files. It covers conventions such as preserving existing letter case, requiring variable declarations, and using traditional naming styles.

In plain words
What is it for?
Editing or reviewing VB6 files such as forms, classes, modules, controls, and project files while following VB6-specific conventions.
Why use it?
Visual Basic 6 ignores letter case when compiling, but code-review and version-control tools do not, so careless changes can create noisy diffs and obscure real edits.

Skill for Claude Code

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

Part of the claude-vb6-skills plugin — 5 skills shipped together

Good fit Editing or reviewing VB6 files such as forms, classes, modules, controls, and project files while following VB6-specific conventions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexcassol/claude-vb6-skills/vb6-guidelines
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 alexcassol/claude-vb6-skills --skill vb6-guidelines
Clone the repo
git clone --depth 1 https://github.com/alexcassol/claude-vb6-skills

Made for: Claude Code.

Or install claude-vb6-skills, the plugin that ships this one along with the rest of its 5 skills.

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 vb6-guidelines

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexcassol/claude-vb6-skills/vb6-guidelines/github.svg)](https://agentmods.dev/skills/alexcassol/claude-vb6-skills/vb6-guidelines)
Your own site
<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.

agentmods 80×15 button for vb6-guidelines

Your own site · 80×15
<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>
Per session 237 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,921 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.
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.00237 $0.02921
Opus 5 $0.00118 $0.01460
Sonnet 5 $0.00047 $0.00584
Haiku 4.5 $0.00024 $0.00292

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

Security

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.

skills/vb6-guidelines/SKILL.md · 326 lines

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_StrName stays m_StrName even if the current convention is m_strName)
  • Properties and procedures (Public Sub ReadFile is not "normalized" to ReadFile if it is already ReadFile)
  • Keywords (If/Then/End If — preserve as written; the IDE may have normalized different files differently)
  • Type names (As String, As Long)
  • Constants (vbCrLf vs vbCRLF)
  • 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 Explicit at the top of every module (.bas, .cls, .frm)
  • Always declare type: Dim i As Long, never Dim i
  • Prefer Long over Integer — VB6 Integer is 16 bits, overflows at 32,768
  • Avoid Variant except when interacting with APIs that return Variant (e.g., ADO GetRows)
  • Declare return type in every Function: Public Function X() As String, not Public Function X()

Read the full file on GitHub · 326 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. 10d ago First seen · 326 lines · 237 tokens per session scan A e2dfcd8eadad

Subscribe to this mod's changes

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.

Related

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…

cbrock84/headcount · 93 tokens

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…

cbrock84/headcount · 74 tokens

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…

cbrock84/headcount · 73 tokens

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…

cbrock84/headcount · 86 tokens

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…

cbrock84/headcount · 80 tokens

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…

cbrock84/headcount · 77 tokens