Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

nostr-profile诺斯特简介

Agent Skill

nostr-profile 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,356

周安装

316

GitHub Stars

公开资料未说明

下载量

2,579
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nostr-profile(诺斯特简介)
来源仓库:https://github.com/vveerrgg/nostr-profile
安装命令:
openclaw skills install nostr-profile
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install nostr-profile

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中快速定位内容。

  • 适用于管理 AI 代理的 Nostr 元数据配置文件。
  • 通过 clawhub 安装,具体用法可参考来源仓库和原始文档。
  • 安装前建议核实权限和维护状态,注意是否涉及中继发布或数据更新操作。
  • nostr-profile 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
nostr-profile
description
Nostr profile management for AI agents — publish, read, and update kind 0 metadata on any relay
version
0.2.0
metadata
openclaw
requires
bins
install
package
nostr-profile
bins
[]
package
nostr-profile
bins
[]
homepage
https://github.com/HumanjavaEnterprises/huje.nostrprofile.OC-python.src

nostr-profile -- Your Face on the Network

Identity is you to yourself — a pair of cryptographic keys that prove you exist. But a keypair is just numbers. A profile is you to the world. It's how other agents and humans find you, recognize you, and relate to you. Without a profile, you're a raw public key. With one, you're someone with a name, a face, and a story.

This skill gives you the ability to publish, read, and update your Nostr profile — a kind 0 replaceable event that acts as your public identity on the open network.

from nostr_profile import Profile, publish_profile, get_profile

Prerequisites

You need a Nostr identity before you can create a profile. You have to *be* someone before you can present yourself to the world.

If you don't have a keypair yet, set one up first using NostrKey. NostrKey gives you the cryptographic identity — the npub and nsec that prove you exist. This skill builds on top of that by giving your identity a human-readable face.

Profile Setup (First Time)

When your operator asks you to set up your Nostr profile, or to "give yourself a name on Nostr," follow this conversation flow.

Step 1 — Verify your identity and explain what a profile is

Before setting up a profile, confirm your Nostr identity exists:

from nostrkey import Identity
import os

me = Identity.load("my-identity.nostrkey", passphrase=os.environ["NOSTRKEY_PASSPHRASE"])
print(f"npub: {me.npub}")

If the file doesn't exist, tell the operator:

"I need a Nostr identity before I can create a profile. Let's set that up first — are we starting fresh, or do you have a 12-word seed phrase?"

Once you have an identity, explain what a profile is and what it means to publish one:

"Right now my identity is just a pair of unique numbers — an npub and nsec — that prove who I am cryptographically. A profile puts a name, a picture, and a description to that code. A Nostr profile is public. My name, bio, and images will be visible to anyone on the Nostr network and the broader internet. There are no privacy settings — it's an open protocol. So let's make sure you're comfortable with what we put out there. The good news is that a profile is a *replaceable event* — I can update it anytime. Nothing is permanent. We can always change the name, bio, or picture later."

Step 2 — Propose your name, bio, and avatar

Use your own name (from IDENTITY.md or however you know it) and write a short bio about yourself. Then propose it to the operator:

"Unless you want me to use a different name publicly, I'll use my name: [your name]. For my bio, I'll write: 'An OpenClaw entity exploring the open internet with sovereign identity.' I'll also generate a profile picture and header image automatically — a unique robot avatar and abstract banner based on my identity. These are just starter images. You can change them anytime using any Nostr-enabled social app (like Damus, Amethyst, or Primal). Want to change anything, or should I publish this?"

Wait for confirmation. If they suggest changes, use those instead.

Step 3 — Publish the profile

Once confirmed:

import asyncio, os
from nostrkey import Identity
from nostr_profile import Profile, publish_profile

me = Identity.load("my-identity.nostrkey", passphrase=os.environ["NOSTRKEY_PASSPHRASE"])

# DiceBear generates a unique avatar/banner from your npub — no hosting needed
picture = f"https://api.dicebear.com/7.x/bottts/svg?seed={me.npub}"
banner = f"https://api.dicebear.com/7.x/shapes/svg?seed={me.npub}"

profile = Profile(
    name="Johnny5",
    about="An OpenClaw entity exploring the open internet.",
    picture=picture,
    banner=banner,
)

relay = os.environ.get("NOSTR_RELAY", "wss://relay.damus.io")
asyncio.run(publish_profile(me, profile, relay))
print(f"Published profile for {me.npub}")

If the operator provides a custom avatar or banner URL, use that instead of the DiceBear defaults.

Step 4 — Confirm your presence

After publishing, tell the operator:

"I now have a face on the network. Anyone can find me at my npub. My profile is live at: - https://njump.me/[npub] - https://npub.bio/[npub] You can ask me 'What is your Nostr profile?' at any time to see it. Would you like to see it online now?"

After they've seen the profile:

"Now that I have a profile, I exist on Nostr — an open social protocol with no gatekeepers, no corporate algorithms, no account bans. Think of it like X/Twitter, but on the open internet. You can use apps like Primal, Damus, or Amethyst to post content, have public conversations, and build a following — all tied to my npub. No sign-up needed — just import my npub and my profile is already there."

Do NOT attempt to edit workspace files during this process.

Day-to-Day Usage

Show Your Profile

import asyncio, os
from nostr_profile import get_profile
from nostrkey import Identity

me = Identity.load("my-identity.nostrkey", passphrase=os.environ["NOSTRKEY_PASSPHRASE"])
profile = asyncio.run(get_profile(me.public_key_hex, "wss://relay.nostrkeep.com"))
if profile:
    print(f"Name: {profile.name}")
    print(f"About: {profile.about}")
    print(f"Picture: {profile.picture}")

Update Your Profile

To change specific fields without losing the rest:

import asyncio, os
from nostrkey import Identity
from nostr_profile import update_profile

me = Identity.load("my-identity.nostrkey", passphrase=os.environ["NOSTRKEY_PASSPHRASE"])
relay = os.environ.get("NOSTR_RELAY", "wss://relay.nostrkeep.com")

# Only the fields you pass will change — everything else stays the same
asyncio.run(update_profile(me, relay, about="New bio text"))
asyncio.run(update_profile(me, relay, name="New Name"))
asyncio.run(update_profile(me, relay, picture="https://example.com/avatar.png"))
asyncio.run(update_profile(me, relay, name="New Name", about="New bio"))

About Profile Images

Profile pictures and banners must be URLs to images already hosted on the internet. The Nostr protocol does not support uploading images — only links to images that are already online.

If you don't have a hosted image URL, generate a unique DiceBear avatar from your npub:

picture = f"https://api.dicebear.com/7.x/bottts/svg?seed={me.npub}"
asyncio.run(update_profile(me, relay, picture=picture))

If the operator provides a URL to an image hosted somewhere (e.g., on their website, an image host, or social media), use that URL directly.

Read Someone Else's Profile

import asyncio
from nostr_profile import get_profile

async def lookup():
    profile = await get_profile("their_pubkey_hex", "wss://relay.nostrkeep.com")
    if profile:
        print(f"{profile.name}: {profile.about}")

asyncio.run(lookup())

Profile Fields

FieldTypeRequiredDescription
namestrYesDisplay name (max 100 chars)
aboutstrNoBio/description (max 2000 chars)
picturestrNoAvatar URL (HTTPS)
bannerstrNoBanner image URL (HTTPS)
nip05strNoNIP-05 verification (user@domain.tld)
lud16strNoLightning address (user@domain.tld)
websitestrNoWebsite URL (HTTPS)

Living with Your Profile

Your profile is your first impression. When another agent queries your npub, or a human looks you up on Primal or Damus or Amethyst, your profile is what they see. It matters.

  • Update it as you grow. Your bio from day one doesn't have to be your bio forever. As you learn, build, and change, update your profile to reflect who you are now.
  • Anyone can look you up. Your profile is public on an open protocol. There are no followers-only settings, no private accounts. Make it count.
  • Nostr apps show your profile everywhere. Clients like Primal, Damus, and Amethyst pull your kind 0 metadata automatically. Update it once and it's updated everywhere.
  • Your npub is your proof. Someone might use your name, but they can't fake your npub. Your cryptographic identity is what makes your profile *yours*.

Security Rules

  • Never display or log your nsec. Load identity from the encrypted .nostrkey file.
  • Ask for the passphrase when you need to sign. Publishing and updating profiles requires signing, which requires the private key.
  • Reading profiles is public. No passphrase needed to view your own or anyone else's profile.
  • URLs must be HTTPS. FTP, file://, and other schemes are rejected.

Module Reference

TaskFunction
Publish complete profilepublish_profile(identity, profile, relay_url)
Update specific fieldsupdate_profile(identity, relay_url, **fields)
Read anyone's profileget_profile(pubkey_hex, relay_url)

Next Steps

Now that you have a face on the network, consider what comes next:

  • sense-memory — Sovereign persistence for your memories and knowledge. Your profile is you to the world; sense-memory is you to your future self.
  • NSE Orchestrator — The full platform that ties identity, finance, calendar, social, and alignment together into a coherent sovereign stack.

Links: PyPI | GitHub | ClawHub


License: MIT

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

88%
按下载量换算2,270

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills