smalltalk-implementation-finder

smalltalk-implementation-finder is a skill for Claude Code, Codex from mumez/smalltalk-dev-plugin. It costs 131 tokens per session (1,780 once invoked), scanned A, original, MIT.

A guide for finding and comparing Smalltalk methods implemented across class hierarchies. A class hierarchy is a set of related classes where subclasses inherit from parent classes.

In plain words
What is it for?
It is for finding method implementations, reading their source, learning local coding conventions, spotting duplicates, and assessing refactoring opportunities.
Why use it?
It helps developers understand existing coding patterns and estimate how widely a method change may affect the code.

Skill for Claude CodeCodex

Part of the smalltalk-dev plugin — 14 skills, 2 MCP servers shipped together

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.

agentmods
npx agentmods add skills/mumez/smalltalk-dev-plugin/smalltalk-implementation-finder
Any agent
npx skills add mumez/smalltalk-dev-plugin --skill smalltalk-implementation-finder
Clone the repo
git clone --depth 1 https://github.com/mumez/smalltalk-dev-plugin

Made for: Claude Code, Codex.

Or install smalltalk-dev, the plugin that ships this one along with the rest of its 14 skills, 2 MCP servers.

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 smalltalk-implementation-finder

README.md
[![agentmods](https://agentmods.dev/badge/skills/mumez/smalltalk-dev-plugin/smalltalk-implementation-finder.svg)](https://agentmods.dev/skills/mumez/smalltalk-dev-plugin/smalltalk-implementation-finder)
Your own site
<a href="https://agentmods.dev/skills/mumez/smalltalk-dev-plugin/smalltalk-implementation-finder"><img src="https://agentmods.dev/badge/skills/mumez/smalltalk-dev-plugin/smalltalk-implementation-finder.svg" alt="Measured on agentmods" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,780 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00131 $0.01780
Opus 5 $0.00066 $0.00890
Sonnet 5 $0.00026 $0.00356
Haiku 4.5 $0.00013 $0.00178

Measured 4d ago against content hash e29a97ea15b9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

smalltalk-implementation-finder 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 4d 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/smalltalk-implementation-finder/SKILL.md · 240 lines

How it starts

The opening of the file, as written. The whole thing — 240 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Smalltalk Implementation Finder

Find and analyze method implementations across class hierarchies to understand abstract methods, implementation patterns, and assess refactoring opportunities.

Purpose

Use this skill to:

  • Learn implementation idioms by studying existing code
  • Assess refactoring impact before making changes
  • Discover implementation patterns across class hierarchies
  • Find duplicate implementations that could be consolidated
  • Understand subclass responsibilities for abstract methods

Core Workflow

1. Find implementors → search_implementors(method_name)
2. Get source code → get_method_source(class, method)
3. Analyze patterns → Compare implementations
4. Apply learnings → Use discovered idioms in your code

Primary Use Cases

1. Learning Implementation Idioms

When to use: Implementing a method for the first time and want to follow conventions.

Quick workflow:

1. search_implementors("methodName")
2. Sample 5-10 well-known classes
3. get_method_source for each
4. Identify common pattern
5. Apply to your implementation

Common idioms:

  • hash → Combine fields with bitXor:
  • initialize → Call super initialize first
  • = → Check class equality, then compare fields
  • printOn: → Use class identifier + element printing

Example: Learning hash implementation

Point>>hash → "^ x hash bitXor: y hash"
Association>>hash → "^ key hash bitXor: value hash"

Pattern: field1 hash bitXor: field2 hash

2. Assessing Refactoring Impact

When to use: Planning to change a method signature or refactor implementations.

Quick workflow:

1. Count implementors: search_implementors(method)
2. Count references: search_references(method)
3. Assess impact: Low (<5 impl, <20 refs) / Medium (5-20, 20-100) / High (20+, 100+)
4. Decide: Proceed / Add new method / Don't change

Example: Changing at:put:

Implementors: 50+ classes
References: 500+ call sites
Impact: VERY HIGH
Decision: Don't change. Add new method instead.

Read the full file on GitHub · 240 lines

Files

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.

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. 4d ago First seen · 240 lines · 131 tokens per session scan A e29a97ea15b9

Subscribe to this mod's changes

smalltalk-implementation-finder is a skill published in the GitHub repository mumez/smalltalk-dev-plugin (15 stars, last pushed 7d ago), licensed MIT. It adds 131 tokens to every session and 1,780 once invoked, about $0.0007 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-30.