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 divinevideo/divine-mobile --skill equatable-linkedhashmap-lru-reordergit clone --depth 1 https://github.com/divinevideo/divine-mobileWrote 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/divinevideo/divine-mobile/equatable-linkedhashmap-lru-reorder)<a href="https://agentmods.dev/skills/divinevideo/divine-mobile/equatable-linkedhashmap-lru-reorder"><img src="https://agentmods.dev/badge/skills/divinevideo/divine-mobile/equatable-linkedhashmap-lru-reorder/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/divinevideo/divine-mobile/equatable-linkedhashmap-lru-reorder"><img src="https://agentmods.dev/badge/skills/divinevideo/divine-mobile/equatable-linkedhashmap-lru-reorder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 201 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00183 | $0.01959 |
| Opus 5 | $0.00092 | $0.00979 |
| Sonnet 5 | $0.00037 | $0.00392 |
| Haiku 4.5 | $0.00018 | $0.00196 |
Grade A, and why
equatable-linkedhashmap-lru-reorder 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.
How it starts
The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Equatable + LinkedHashMap LRU reorder suppression
Problem
A Flutter bloc/cubit state class uses an insertion-ordered LinkedHashMap<K, V>
to implement LRU semantics (touch-on-access, evict oldest past a cap). The
field is included in props for value equality. When an existing key is
re-inserted to move it to most-recent, Cubit.emit drops the new state as
equal to the previous one, leaving LRU order stale. On the next insert past
the cap, the "touched" entry is evicted instead of the truly oldest one.
This is silent: no errors, no logs. Tests that only check the final status of each key pass. The bug surfaces only when a test specifically asserts that a refreshed key survives a later cap-overflow eviction.
Context / Trigger Conditions
- State class
extends Equatablewith aLinkedHashMap<K, V>field - LRU behavior implemented via
remove(key)+ insert to move-to-most-recent propsincludes the map directly:List<Object?> get props => [_map, ...]- Symptoms:
blocTest(..., expect: () => hasLength(N))reports fewer emissions than expected- LRU eviction test like "refresh key A, then overflow — expect B evicted" fails with A evicted instead
- Consumers using
BlocListenerorcontext.selectdon't react to touch-only updates
Solution
Add the keys list to props alongside the map so insertion-order changes
produce a distinct state:
@override
List<Object?> get props {
// Both entries are required.
//
// Equatable's default map comparison is structural (unordered), so
// `_statuses` alone catches value changes but NOT pure LRU reorders
// where the key/value set is unchanged.
// `_statuses.keys.toList()` catches those insertion-order changes.
// Removing either would silently suppress a whole class of state
// updates — do not "simplify" this.
return [_statuses, _statuses.keys.toList(), maxEntries];
}
Keep the map in props as well — it catches value-only changes (same key,
different value, no reorder). The keys list catches order-only changes.
Together they cover both dimensions. Removing either re-opens the bug.
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.
- 10d ago First seen · 204 lines · 183 tokens per session scan A 006f045aadc0
equatable-linkedhashmap-lru-reorder is a skill published in the GitHub repository divinevideo/divine-mobile (265 stars, last pushed today), licensed MPL-2.0. It adds 183 tokens to every session and 1,959 once invoked, about $0.0009 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.
Other skills, from other repositories
ios-fix
Autonomous iOS bug fixer. (gstack).
google-mobile-ads-validate
Validates a project's Google Mobile Ads (GMA) SDK integration for iOS, Android, or Unity projects. Use when conducting a full pre-launch audit of an app that integrates GMA SDK or when validating any individual GMA SDK integration checks, such as when validating ad unit IDs and ad formats, SKAdNetwork IDs, mediation…
competition-ios-runtime
Internal downstream skill for ctf-sandbox-orchestrator. CTF-sandbox workflow for IPA runtime analysis, Frida hooks, Objective-C or Swift method tracing, Keychain inspection, SSL pinning bypass, URL scheme handling, and iOS request-signing recovery. Use when the user asks to hook an IPA, trace Objective-C or Swift…
swiftui-performance-audit
SwiftUI performance: render, scroll, CPU/memory, updates, layout, Instruments.
android-tombstone-symbolication
Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app…
node-connect
Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing required, unauthorized, bootstrap token invalid or expired, gateway.bind, gateway.remote.url, Tailscale…