Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

nostr-filter-designer诺斯特过滤器设计者

Agent Skill

nostr-filter-designer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

216

周安装

9

GitHub Stars

4

下载量

72
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nostr-filter-designer(诺斯特过滤器设计者)
来源仓库:https://github.com/accolver/skill-maker
仓库路径:skills/nostr-filter-designer
安装命令:
npx skills add https://github.com/accolver/skill-maker --skill nostr-filter-designer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/accolver/skill-maker --skill nostr-filter-designer

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理,提升开发效率。
  • 可结合来源仓库和原始 README 核验具体用法,确保适用性。
  • 安装方式:通过 npx 从 GitHub 仓库添加,支持 Codex、Claude、Cursor、Gemini CLI。
  • 注意:安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Nostr Filter Designer

Overview

Construct correct REQ filters for Nostr relay queries. The filter syntax has subtle semantics around AND/OR combination, tag matching, and multi-filter subscriptions that agents consistently get wrong without explicit guidance.

When to use

  • The task is to build Nostr REQ filters for querying relay data.
  • The user needs exact filter semantics for AND/OR behavior, tag constraints, time windows, or multi-filter subscriptions.
  • The problem is retrieving the right events—threads, zaps, feeds, replies, reactions—not publishing them.
  • The output should be one or more valid filter objects or REQ messages.

Do NOT use when:

  • The task is constructing publishable events.
  • The work is relay-side implementation of filter matching rather than client-side filter design.
  • The request is protocol auth, counting, or another NIP unrelated to REQ filter construction.

Response format

Always structure the final response with these top-level sections, in this order:

  1. Summary — state the task, scope, and main conclusion in 1-3 sentences.
  2. Decision / Approach — state the key classification, assumptions, or chosen path.
  3. Artifacts — provide the primary deliverable(s) for this skill. Use clear subheadings for multiple files, commands, JSON payloads, queries, or documents.
  4. Validation — state checks performed, important risks, caveats, or unresolved questions.
  5. Next steps — list concrete follow-up actions, or write None if nothing remains.

Rules:

  • Do not omit a section; write None when a section does not apply.
  • If files are produced, list each file path under Artifacts before its contents.
  • If commands, JSON, SQL, YAML, or code are produced, put each artifact in fenced code blocks with the correct language tag when possible.
  • Keep section names exactly as written above so output stays predictable across skills.

Workflow

1. Identify what you need

Translate the natural language query into concrete requirements:

  • Who: specific authors, or any author?
  • What kind: notes (1), reactions (7), reposts (6), zaps (9735), profiles (0)?
  • Related to what: specific events (#e), specific people (#p), specific addressable events (#a)?
  • When: time-bounded or open-ended?
  • How many: limited initial fetch or ongoing subscription?

2. Determine AND vs OR

Ask: "Can a single event satisfy ALL my conditions simultaneously?"

  • Yes -> one filter with all conditions (AND)
  • No -> multiple filters (OR)

The most common mistake is cramming OR-logic into a single filter. If you need "events by Alice OR events mentioning Alice," that requires two filters.

3. Construct the filter(s)

Build each filter object. For each condition, add the appropriate field. Cross-reference with references/filter-patterns.md for common patterns.

4. Validate

Check each filter against these rules:

  • All hex values are exactly 64 characters, lowercase
  • Tag filter keys are single letters (#e, not #event)
  • No NOT/exclusion logic (Nostr filters can't do this)
  • since and until are unix timestamps in seconds (not milliseconds)
  • limit is only used for initial queries, not ongoing subscriptions
  • AND/OR semantics match the intent

5. Format as REQ

Wrap in the REQ message format:

["REQ", "<subscription-id>", <filter1>, <filter2>, ...]

Examples

Example 1: Get a full thread (root + all replies)

Need: The root event itself, plus all kind-1 replies that tag it.

A single filter can't do this because the root event won't have an #e tag pointing to itself. Use two filters (OR):

[
  "REQ",
  "thread-sub",
  { "ids": ["aabb...64chars"] },
  { "kinds": [1], "#e": ["aabb...64chars"] }
]

Filter 1 fetches the root by ID. Filter 2 fetches all kind-1 events that reference it via an e tag. Together (OR), you get the complete thread.

Why not one filter? {"ids": ["aabb..."], "#e": ["aabb..."]} would match only events whose own ID is aabb... AND that also tag aabb... -- which is almost certainly nothing.

Example 2: User's social feed

Need: A user's notes, reposts, and reactions.

All three share the same author, so one filter with multiple kinds works (AND on author, list-match on kinds):

{ "authors": ["<pubkey>"], "kinds": [1, 6, 7], "limit": 50 }

This works because kinds is a list -- the event matches if its kind is ANY of the listed values. Combined with authors (AND), this gives "events by this author that are notes OR reposts OR reactions."

Example 3: All engagement on an event

Need: Replies, reactions, zaps, and reposts of a specific event.

All engagement types tag the event via #e, but have different kinds. One filter works:

{ "#e": ["<event-id>"], "kinds": [1, 6, 7, 9735] }

Example 4: Events by author OR mentioning author

Need: Show everything relevant to a user -- their own posts and posts that mention them.

This requires OR (two filters), because an event can't simultaneously be authored by someone AND mention them in a p tag (well, it could, but you'd miss events that only satisfy one condition):

[
  "REQ",
  "user-activity",
  { "authors": ["<pk>"], "kinds": [1] },
  { "#p": ["<pk>"], "kinds": [1] }
]

Common Mistakes

MistakeWhy it's wrongFix
OR logic in one filter{"authors": ["A"], "#p": ["A"]} means events BY A that ALSO tag A (AND)Use two separate filters
#event or #pubkey as tag filter keyTag filter keys are single letters onlyUse #e, #p, #a, etc.
Non-hex values in ids, authors, #e, #pMust be exact 64-char lowercase hexConvert npub/note to hex first
Timestamps in millisecondsNostr uses seconds since epochDivide JS Date.now() by 1000
Using limit for ongoing subscriptionslimit only applies to the initial query batchRemove limit for live subscriptions
Expecting NOT/exclusionNostr filters have no negationFilter client-side after receiving events
Assuming tag filter matches all tag valuesOnly index 0 (the first value) is matchedDon't try to filter by relay hints or markers
Mixing replaceable event semanticsRelay returns only latest for kind 0, 3, 10000-19999Don't expect historical versions

Quick Reference

QueryFilter
User's notes{"authors": ["<pk>"], "kinds": [1]}
User's profile{"authors": ["<pk>"], "kinds": [0]}
User's contacts{"authors": ["<pk>"], "kinds": [3]}
User's relay list{"authors": ["<pk>"], "kinds": [10002]}
Replies to event{"kinds": [1], "#e": ["<eid>"]}
Reactions to event{"kinds": [7], "#e": ["<eid>"]}
Zaps on event{"kinds": [9735], "#e": ["<eid>"]}
Reposts of event{"kinds": [6], "#e": ["<eid>"]}
Full thread{"ids": ["<root>"]} + {"kinds": [1], "#e": ["<root>"]}
Comments on content{"kinds": [1111], "#E": ["<root-id>"]}
User's DM relay list{"authors": ["<pk>"], "kinds": [10050]}
All engagement on event{"#e": ["<eid>"], "kinds": [1, 6, 7, 9735]}
Events mentioning user{"#p": ["<pk>"]}
User's feed (notes+reposts+reactions){"authors": ["<pk>"], "kinds": [1, 6, 7]}

See references/filter-patterns.md for the full cookbook with advanced patterns and explanations.

Key Principles

  1. AND within, OR between -- This is the single most important rule. Every condition in one filter is AND'd. Multiple filters are OR'd. There is no other way to combine conditions.
  2. Hex or nothing -- ids, authors, #e, and #p values must be exact 64-character lowercase hex strings. No npub, note1, nprofile, or other NIP-19 encodings. Convert first.
  3. Tag filters are shallow -- #e matches only the first value (index 0) of e tags. You cannot filter by relay hints, markers, or other positional tag values. Those must be filtered client-side.
  4. No negation -- You cannot exclude events matching a condition. If you need "all kind-1 events except from author X," fetch all kind-1 events and filter client-side.
  5. Limit is a suggestion for initial load -- limit tells the relay how many events to return in the initial batch (newest first). It does NOT cap an ongoing subscription. Relays may return fewer than requested.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.6%
按下载量换算27

Claude

29.5%
按下载量换算21

Cursor

18.38%
按下载量换算13

Gemini CLI

9.49%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills