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-ado-late-bindinggit 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-ado-late-binding)<a href="https://agentmods.dev/skills/alexcassol/claude-vb6-skills/vb6-ado-late-binding"><img src="https://agentmods.dev/badge/skills/alexcassol/claude-vb6-skills/vb6-ado-late-binding/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-ado-late-binding"><img src="https://agentmods.dev/badge/skills/alexcassol/claude-vb6-skills/vb6-ado-late-binding.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.00221 | $0.04174 |
| Opus 5 | $0.00111 | $0.02087 |
| Sonnet 5 | $0.00044 | $0.00835 |
| Haiku 4.5 | $0.00022 | $0.00417 |
Grade A, and why
vb6-ado-late-binding 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 11d 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 — 453 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ADO Late Binding — VB6
ADO is accessed via late binding to avoid version-locking the MDAC stack on client machines. No reference to "Microsoft ActiveX Data Objects x.x Library" is added to the project. Both Microsoft SQL Server and PostgreSQL are supported through the same ADO surface, with small naming differences in parameter handling.
1. Declaration and instantiation
' Declarations — always As Object
Private mobjCnn As Object
Private mrsCustomers As Object
' Instantiation — always CreateObject
Set mobjCnn = CreateObject("ADODB.Connection")
Set objRs = CreateObject("ADODB.Recordset")
Set objCmd = CreateObject("ADODB.Command")
Never:
Dim cnn As ADODB.ConnectionDim rs As ADODB.RecordsetSet rs = New ADODB.Recordset- Adding a reference to the ADO type library
Rationale: different Windows versions ship different MDAC versions. Early binding to a specific type library version causes "ActiveX component can't create object" or "type mismatch" errors when the client has a different version installed. Late binding works against whatever ADO is present.
2. ADO constants — defined locally
Because the type library is not referenced, ADO constants must be defined as
local constants or used as literals. The recommended approach for new code is
to declare them at the top of any module that uses ADO, or in a shared
modADOConstants.bas.
Option Explicit
' Command types
Private Const adCmdText As Long = 1
Private Const adCmdTable As Long = 2
Private Const adCmdStoredProc As Long = 4
' Parameter directions
Private Const adParamInput As Long = 1
Private Const adParamOutput As Long = 2
Private Const adParamInputOutput As Long = 3
Private Const adParamReturnValue As Long = 4
' Cursor types
Private Const adOpenForwardOnly As Long = 0
Private Const adOpenKeyset As Long = 1
Private Const adOpenDynamic As Long = 2
Private Const adOpenStatic As Long = 3
' Lock types
Private Const adLockReadOnly As Long = 1
Private Const adLockPessimistic As Long = 2
Private Const adLockOptimistic As Long = 3
' Cursor locations
Private Const adUseServer As Long = 2
Private Const adUseClient As Long = 3
' Connection states
Private Const adStateClosed As Long = 0
Private Const adStateOpen As Long = 1
' Data types (common subset)
Private Const adInteger As Long = 3
Private Const adBigInt As Long = 20
Private Const adVarChar As Long = 200
Private Const adLongVarChar As Long = 201
Private Const adVarWChar As Long = 202
Private Const adLongVarWChar As Long = 203
Private Const adBoolean As Long = 11
Private Const adCurrency As Long = 6
Private Const adDouble As Long = 5
Private Const adDate As Long = 7
Private Const adDBTimeStamp As Long = 135
Private Const adGUID As Long = 72
Private Const adBinary As Long = 128
What ships with it
2 files 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.
- 11d ago First seen · 453 lines · 221 tokens per session scan A 2a093026ed91
vb6-ado-late-binding is a skill published in the GitHub repository alexcassol/claude-vb6-skills (4 stars, last pushed 2mo ago), licensed MIT. It adds 221 tokens to every session and 4,174 once invoked, about $0.0011 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
postgres-database-migration
Use this skill for planning, testing, and safely executing PostgreSQL schema migrations — especially when working with production data or shared databases. Trigger when user asks to: Test a schema migration before applying it to production Add, remove, or rename columns safely on a live table Change a column's data…
setup-timescaledb-hypertables
Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…
design-postgis-tables
Comprehensive PostGIS spatial table design reference covering geometry types, coordinate systems, spatial indexing, and performance patterns for location-based applications.
migrate-postgres-tables-to-hypertables
Use this skill to migrate identified PostgreSQL tables to Timescale/TimescaleDB hypertables with optimal configuration and validation. Trigger when user asks to: Migrate or convert PostgreSQL tables to hypertables Execute hypertable migration with minimal downtime Plan blue-green migration for large tables Validate…
pgvector-semantic-search
Use this skill for setting up vector similarity search with pgvector for AI/ML embeddings, RAG applications, or semantic search. Trigger when user asks to: Store or search vector embeddings in PostgreSQL Set up semantic search, similarity search, or nearest neighbor search Create HNSW or IVFFlat indexes for vectors…
find-hypertable-candidates
Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables. Trigger when user asks to: Analyze database tables for hypertable conversion potential Identify time-series or event tables in an existing schema Evaluate if a table would…