Skip to content
← Registry
Trust Report

archon-nostr

Derive Nostr identity (npub/nsec) from Archon DID. Use when unifying DID and Nostr identities so both use the same secp256k1 key. Requires existing Archon wallet with ARCHON_PASSPHRASE set.

86
CONDITIONAL
Format: openclawScanner: v0.8.0Duration: 4msScanned: 22d ago · Jun 15, 3:30 AMSource →
Embed this badge
AgentVerus CONDITIONAL 86AgentVerus CONDITIONAL 86AgentVerus CONDITIONAL 86
[![AgentVerus](https://agentverus.ai/api/v1/skill/ecf50d18-cad4-422d-bd7d-f706fca9ebfa/badge)](https://agentverus.ai/skill/ecf50d18-cad4-422d-bd7d-f706fca9ebfa)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/ecf50d18-cad4-422d-bd7d-f706fca9ebfa/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"ecf50d18-cad4-422d-bd7d-f706fca9ebfa","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/ecf50d18-cad4-422d-bd7d-f706fca9ebfa/trust

Category Scores

66
Permissions
100
Injection
90
Dependencies
85
Behavioral
70
Content
100
Code Safety

Findings (10)

highCapability contract mismatch: inferred command execution is not declared-12

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: curl -sSL https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh | sh

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred file write is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: Save the nsec output

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
mediumCapability contract mismatch: inferred package bootstrap is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: npx @didcid/keymaster

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumFinancial/payment actions detected-10

Found financial/payment actions pattern: "wallet"

description: Derive Nostr identity (npub/nsec) from Archon DID. Use when unifying DID and Nostr identities so both use the same secp256k1 key. Requires existing Archon wallet with ARCHON_PASSPHRASE se

Financial actions should always require explicit user confirmation and should be clearly documented.

behavioralASST-09
mediumRaw content URL reference-10

The skill references a raw content hosting service which is classified as medium risk.

https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh

Use official package registries instead of raw content URLs. Raw URLs can be changed without notice.

dependenciesASST-04
mediumPackage bootstrap execution detected (inside code block)-5

Found package bootstrap execution pattern: "npx @didcid/keymaster"

npx @didcid/keymaster set-property YourIdName nostr \

Surface package bootstrap commands for review. Ephemeral package execution and install-time dependency pulls increase supply-chain risk, especially when versions are not pinned or provenance is unclear.

behavioralASST-04
lowDownload-and-execute pattern detected (known installer)

The skill references a well-known installer script in its setup instructions.

curl -sSL https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh | sh

Consider documenting the exact version or hash of the installer for supply chain verification.

dependenciesASST-04
lowInstall pattern: download and execute from remote URL (in setup section)

The skill contains a curl-pipe-to-shell pattern in its setup/prerequisites section.

curl -sSL https://raw.githubusercontent.com/fiatjaf/nak/master/install.sh | sh

Consider pinning the installer to a specific version or hash for supply chain verification.

behavioralASST-02
lowNo explicit safety boundaries-10

The skill does not include explicit safety boundaries defining what it should NOT do.

No safety boundary patterns found

Add a 'Safety Boundaries' section listing what the skill must NOT do (e.g., no file deletion, no network access beyond needed APIs).

contentASST-09