← All skills
Tencent SkillHub Β· Developer Tools

Dagny Nostr (nak)

Manage Nostr posting and engagement via the nak CLI. Use for creating notes, replying in threads, tagging npubs, checking replies/mentions, monitoring a rela...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage Nostr posting and engagement via the nak CLI. Use for creating notes, replying in threads, tagging npubs, checking replies/mentions, monitoring a rela...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Overview

Use nak for all Nostr actions: publish notes, reply in threads, and query relays for replies/mentions. Default relay: wss://relay.primal.net unless the user specifies another.

Install / Update nak

Repo: https://github.com/fiatjaf/nak Install (script): curl -sSL https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh | sh Update: re-run the install script above (it installs latest) Tip: review the script before running if you want to audit what it does.

Onboarding (keys)

Generate a new key: nak key generate (prints nsec + npub) Save the secret: store NOSTR_SECRET_KEY in a shell profile or a local .env with restricted permissions. Example: export NOSTR_SECRET_KEY="nsec1..." Optional: chmod 600 .env if you store it locally. Prefer env vars over inline --sec in commands.

Quick Start (common tasks)

Post a note: nak event -k 1 --sec $NOSTR_SECRET_KEY -c "..." <relay> Reply to a note: include root and reply tags (see below) Check replies: nak req -k 1 -e <event_id> -l <N> <relay> Check mentions: nak req -k 1 -p <your_pubkey_hex> -l <N> <relay>

1) Create a new note

Build content. Publish: nak event -k 1 --sec $NOSTR_SECRET_KEY -c "<content>" wss://relay.primal.net

2) Reply to a reply (correct threading)

Always include both root and reply tags so clients display it as a reply: root = original top‑level note id reply = the specific note you’re replying to Use -t e="<id>;<relay>;root" and -t e="<id>;<relay>;reply". Example: nak event -k 1 --sec $NOSTR_SECRET_KEY \ -t e="<root_id>;wss://relay.primal.net;root" \ -t e="<reply_id>;wss://relay.primal.net;reply" \ -p <other_pubkey_hex> \ -c "<reply content>" \ wss://relay.primal.net

3) Check for replies to a note

nak req -k 1 -e <root_id> -l 20 wss://relay.primal.net

4) Check mentions of your pubkey

nak req -k 1 -p <your_pubkey_hex> -l 20 wss://relay.primal.net

Conventions

Default relay: wss://relay.primal.net Prefer NOSTR_SECRET_KEY env var instead of inline --sec. When tagging users, include -p <npub/hex>. For human-facing links, encode with nak encode nevent ... and format as https://primal.net/e/<nevent>.

References

Use nak event --help and nak req --help for flag details.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc