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 jimmc414/claude-code-plugin-marketplace --skill use-class-for-stategit clone --depth 1 https://github.com/jimmc414/claude-code-plugin-marketplaceWrote 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/jimmc414/claude-code-plugin-marketplace/use-class-for-state)<a href="https://agentmods.dev/skills/jimmc414/claude-code-plugin-marketplace/use-class-for-state"><img src="https://agentmods.dev/badge/skills/jimmc414/claude-code-plugin-marketplace/use-class-for-state/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/jimmc414/claude-code-plugin-marketplace/use-class-for-state"><img src="https://agentmods.dev/badge/skills/jimmc414/claude-code-plugin-marketplace/use-class-for-state.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.00024 | $0.00687 |
| Opus 5 | $0.00012 | $0.00344 |
| Sonnet 5 | $0.00005 | $0.00137 |
| Haiku 4.5 | $0.00002 | $0.00069 |
Grade A, and why
use-class-for-state 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 5d 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 — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
use-class-for-state
When to Use
- Multiple related state variables
- State needs to be copied/restored
- Complex state transitions
- Backtracking algorithms
- State machine implementations
When NOT to Use
- Simple single value
- Stateless algorithm
- Closure is simpler
The Pattern
Encapsulate state in a class with methods for transitions.
class SearchState:
def __init__(self, initial):
self.position = initial
self.visited = set()
self.path = []
self.cost = 0
def copy(self):
"""Create copy for branching."""
new = SearchState.__new__(SearchState)
new.position = self.position
new.visited = set(self.visited)
new.path = list(self.path)
new.cost = self.cost
return new
def move(self, direction):
"""Apply move, update state."""
self.visited.add(self.position)
self.position = self.position + direction
self.path.append(direction)
self.cost += 1
Example (from pytudes)
# pal2.py - palindrome search state
class Panama:
"""State for palindrome search."""
def __init__(self, L='A man, a plan', R='a canal, Panama', dict=paldict):
self.left = [] # Words added on left
self.right = [] # Words added on right
self.diff = 0 # Character difference
self.stack = [] # Backtrack stack
self.seen = {} # Visited states
self.starttime = time.process_time()
self.dict = dict
def add(self, direction, word):
"""Add word to one side."""
if direction == 'left':
self.left.append(word)
self.diff += len(word)
else:
self.right.append(word)
self.diff -= len(word)
self.stack.append(('added', direction, None, word))
return self
def remove(self, direction, word):
"""Undo adding a word."""
if direction == 'left':
self.left.pop()
self.diff -= len(word)
else:
self.right.pop()
self.diff += len(word)
def search(self, steps=50000000):
"""Depth-first search with backtracking."""
for _ in range(steps):
if not self.stack:
return 'done'
action, direction, substr, arg = self.stack[-1]
if action == 'added':
self.remove(direction, arg)
elif action == 'trying':
if arg:
word = arg.pop()
self.add(direction, word)
self.consider_candidates()
else:
self.stack.pop()
return 'incomplete'
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.
- 5d ago First seen · 112 lines · 24 tokens per session scan A a2ad84ac39c6
use-class-for-state is a skill published in the GitHub repository jimmc414/claude-code-plugin-marketplace (4 stars, last pushed yesterday), licensed MIT. It adds 24 tokens to every session and 687 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-09-04.
Other skills, from other repositories
ai-ml-development
AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.
codexer
Python research assistant with Context7 MCP. Use for Python library research, evaluating packages, enforcing strict Python coding standards, or fetching up-to-date library docs via Context7.
fastapi
Skill "fastapi" from ashish7802/awesome-api-skills, covering fastapi skill, ecosystem graph, quick start, production patterns and dependency injection.
dependency-manager
Manage Python dependencies using UV, pip-tools, or requirements.txt. Use when setting up dependency management, resolving conflicts, or choosing between UV, pip-tools, and requirements.txt workflows.
python-packaging
Configure Python package metadata, setup.py, and pyproject.toml for distribution using UV or setuptools. Use when setting up Python packages, configuring build systems, or preparing projects for PyPI publication.
clean-code
Use when the user writes new Python, or asks for review, refactor, or cleanup of Python code, names, comments/docstrings, functions, or tests. Applies Robert Martin's complete Clean Code catalog -- naming, functions, comments, DRY, boundary conditions, and tests -- to the code being changed.