claude-code-vba-skills: Skill for Claude Code

.claude/skills/vba-procedures-and-encapsulation/SKILL.md

vba-procedures-and-encapsulation is a skill for Claude Code from RenRMT/claude-code-vba-skills. It costs 22 tokens per session (448 once invoked), scanned A, original, MIT.

A guide to writing small, readable VBA procedures and organising their variables, functions, and classes so each part has a clear responsibility. VBA is the programming language used to automate Microsoft Office applications such as Excel.

In plain words
What is it for?
Use it when designing procedures, controlling variable scope, replacing shared global state, adding guard checks, or splitting long routines into smaller steps.
Why use it?
It reduces hidden links between parts of a VBA project, making code easier to understand, test, and change safely.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is RenRMT/claude-code-vba-skills's own configuration. It tells Claude Code how to work on claude-code-vba-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-code-vba-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to RenRMT/claude-code-vba-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/RenRMT/claude-code-vba-skills/main/.claude/skills/vba-procedures-and-encapsulation/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/RenRMT/claude-code-vba-skills

Made for: Claude Code.

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 vba-procedures-and-encapsulation

README.md
[![agentmods](https://agentmods.dev/badge/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation/github.svg)](https://agentmods.dev/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation)
Your own site
<a href="https://agentmods.dev/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation"><img src="https://agentmods.dev/badge/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation/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 vba-procedures-and-encapsulation

Your own site · 80×15
<a href="https://agentmods.dev/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation"><img src="https://agentmods.dev/badge/skills/renrmt/claude-code-vba-skills/vba-procedures-and-encapsulation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 448 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.00022 $0.00448
Opus 5 $0.00011 $0.00224
Sonnet 5 $0.00004 $0.00090
Haiku 4.5 $0.00002 $0.00045

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

Security

Grade A, and why

vba-procedures-and-encapsulation 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.

.claude/skills/vba-procedures-and-encapsulation/SKILL.md · 93 lines

What it actually says

VBA Procedures, Scope & Encapsulation — Expanded Edition

Write small, intention‑revealing, testable, object‑oriented VBA.

Purpose

Reduce hidden coupling, enforce predictable behavior, and make logic testable by controlling scope and organizing code into well-designed procedures and classes.

Scope Rules

Prefer Small Local Scope

Public Sub ProcessData()
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Worksheets("Data")
End Sub

Avoid module-level variables unless necessary.

When to Use Module-Level Private

  • Shared helper state for 2–3 functions.
  • Cached objects that are expensive to access.

Never Use Public Variables

Global state creates fragile, unpredictable code.

Encapsulation with Classes

Example: Class clsCustomer

Private mId As String
Private mBalance As Currency

Public Property Get Id() As String: Id = mId: End Property
Public Property Let Id(ByVal value As String)
    If Len(value) = 0 Then Err.Raise 1001, , "Id cannot be empty"
    mId = value
End Property

Clear Procedure Design

Guard Clauses

If ws Is Nothing Then Exit Sub
If Not IsValidData(arr) Then Exit Sub

Long Procedures → Pipeline

Public Sub RunWorkflow()
    LoadData
    ValidateData
    TransformData
    WriteOutput
End Sub

Do / Don't

Do

  • Break complex logic into multiple functions.
  • Document expectations and invariants.
  • Use classes for domain concepts.

Don’t

  • Allow 500‑line procedures.
  • Mutate parameters accidentally via ByRef.

Anti‑Patterns

BAD: Hidden shared state.
BAD: Classes with only public fields.
BAD: Procedures dependent on module-level scratch variables.

Acceptance Checklist

  • All public state justified.
  • No procedure longer than one screen.
  • Domain logic encapsulated.
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 · 93 lines · 22 tokens per session scan A fcd1fcf12f7b

Subscribe to this mod's changes

vba-procedures-and-encapsulation is a skill published in the GitHub repository RenRMT/claude-code-vba-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 22 tokens to every session and 448 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.

Related

Other skills, from other repositories

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

ast-grep

Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…

JanDeDobbeleer/oh-my-posh · 80 tokens

platform-detection

Identify a .NET project's test platform, framework, command mode, and SDK-style vs classic project system. Use only for "which test platform/framework?", "VSTest or MTP?", or "what runner does this project use?", including bridge settings, UseVSTest opt-outs, and incompatible or conflicting VSTest/MTP configuration.…

dotnet/skills · 146 tokens

unity-version-split

Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).

IvanMurzak/Unity-MCP · 59 tokens

omh-rust

This is a Hermes-native rust workflow skill.

rlaope/oh-my-hermes · 69 tokens

axiom-concurrency

Use when writing ANY async code, actors, threads, or seeing ANY concurrency error. Covers Swift 6 concurrency, @MainActor, Sendable, data races, async/await patterns.

CharlesWiltgen/Axiom · 43 tokens