Amethyst is an Android client for Nostr, a social network protocol that lets people control their own social activity and connections. People use it to read and publish Nostr content, follow accounts, and exchange encrypted direct messages from Android and other supported platforms. The catalogue add-ons support workflows for developing or operating the client.
Borrowing it
Nothing to install: this file belongs to vitorpamplona/amethyst. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/vitorpamplona/amethyst/main/.claude/skills/searchable-events/SKILL.mdgit clone --depth 1 https://github.com/vitorpamplona/amethystWrote 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/vitorpamplona/amethyst/searchable-events)<a href="https://agentmods.dev/skills/vitorpamplona/amethyst/searchable-events"><img src="https://agentmods.dev/badge/skills/vitorpamplona/amethyst/searchable-events/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/vitorpamplona/amethyst/searchable-events"><img src="https://agentmods.dev/badge/skills/vitorpamplona/amethyst/searchable-events.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00133 | $0.01770 |
| Opus 5 | $0.00067 | $0.00885 |
| Sonnet 5 | $0.00027 | $0.00354 |
| Haiku 4.5 | $0.00013 | $0.00177 |
Grade A, and why
searchable-events 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 — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Searchable Events — the NIP-50 indexing surface
The contract
quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip50Search/SearchableEvent.kt:
interface SearchableEvent {
fun indexableContent(): String
}
One method; marker and extractor in one. An event kind is searchable iff its event class
implements this interface and the class is wired into EventFactory (the stores probe
searchability by kind through EventFactory.create — an unwired implementor is invisible).
Rules every implementation follows (keep them when adding one):
- Plain text out. Return the human-meaningful fields joined with
"\n"(a handful of metadata-ish kinds use" "); no markup stripping is performed — markdown/asciidoc content goes in raw, JSON-content kinds (kind 0 metadata, marketplace stalls, channel info) parse first and join the extracted fields, never the raw JSON. - Never throw, never null. There is no defensive wrapper at any call site; a throw aborts
the insert transaction. Parsed-JSON implementations use
?.let { … } ?: "". - Only public data. Encrypted content stays out (e.g. kind 30382 contact cards index only the public petname/summary/topics, never the NIP-44 payload).
- Typical shapes:
contentalone (~33 kinds);listOfNotNull(title(), content);listOfNotNull(title(), summary(), content); lists indextitle() + description().
The full kind table
references/searchable-kinds.md in this skill holds the authoritative table — every
implementor with its kind number, class, and the exact indexableContent() expression
(126 concrete classes / 129 kind values as of 2026-08). Diff that file at a version bump to
answer "did the searchable set or any kind's indexed text change?".
Notables that surprise people:
- Kind 9735 (zap receipt) indexes the embedded zap request's content
(
zapRequest?.content.orEmpty()) — receipts are searchable by the zapper's comment. - Kind 0 / 31990 index many profile fields space-joined (name, about, nip05, lud16, website, picture URL, …).
- Kind 30063 is claimed twice (
ReleaseArtifactSetEventin nip51Lists and the experimentalSoftwareReleaseEvent);EventFactoryresolves 30063 toReleaseArtifactSetEvent, sotitle()\ndescription()is what actually gets indexed —SoftwareReleaseEvent.indexableContent()is dead on the store path. - Poll kinds (1068, 6969) append each option label on its own line.
What ships with it
1 file 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.
- 10d ago First seen · 118 lines · 133 tokens per session scan A 609d865b157a
searchable-events is a skill published in the GitHub repository vitorpamplona/amethyst (1,597 stars, last pushed today), licensed MIT. It adds 133 tokens to every session and 1,770 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.
Other skills, from other repositories
offline-first
Offline-first architecture patterns - NetworkBoundResource, sync strategies, conflict resolution, cache invalidation, and connectivity monitoring.
pagination-patterns
Pagination patterns for mobile - Paging 3 for Android (PagingSource, RemoteMediator, LazyPagingItems), cursor-based and offset-based strategies.
sceneview
Build 3D and AR apps with the SceneView SDK in Jetpack Compose, SwiftUI (iOS/macOS/visionOS via SceneViewSwift), Web (Filament.js), Flutter and React Native. Use whenever the user asks for "3D in Compose", "AR with ARCore in Compose", a model viewer, or any cross-platform 3D/AR app where the dependency is…
to-plan
Use when one ready GitHub issue or an in-chat task needs a repository-aware implementation plan for a later implementation workflow.
compose-focus-navigation
Use when writing or reviewing Jetpack Compose UI for TV, keyboard, desktop, accessibility focus, D-pad navigation, FocusRequester, focusProperties, key events, or initial focus behavior.
paysh-catalog
Catalog of pay.sh services payable via agentpay (x402). OPT-IN ONLY — activate when the user explicitly invokes pay.sh / paysh / x402 / 'pay for' / 'pay with burner', or asks what they can pay for. Stay dormant otherwise; defer to free tools. Activation triggers are the frontmatter triggers: list (authoritative)…