โ† All skills
Tencent SkillHub ยท Security & Compliance

FadNote

Create secure shareable self-destructing notes

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

Create secure shareable self-destructing notes

โฌ‡ 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
package.json, scripts/fadnote.js, 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
1.0.2

Documentation

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

FadNote Skill

Secure self-destructing shareable notes for OpenClaw Create encrypted, one-time-read notes directly from OpenClaw. The server never sees your plaintext.

Overview

PropertyValueNamefadnoteVersion1.0.2AuthoreasyFloydLicenseMITOpen SourceYes โ€” https://github.com/easyFloyd/fadnoteRuntimeNode.js 18+

Installation

# Via ClawHub claw install fadnote # Manual git clone https://github.com/easyFloyd/fadnote.git ln -s $(pwd)/fadnote/openclaw-skill/scripts/fadnote.js ~/.claw/bin/fadnote

Configuration

VariableDefaultDescriptionFADNOTE_URLhttps://fadnote.comFadNote server endpoint

From OpenClaw

user: Secure this API key: sk-abc123xyz claw: I'll create a secure, self-destructing note for that. [runs: echo "sk-abc123xyz" | fadnote] ๐Ÿ”— https://fadnote.com/n/abc123# decryption-key-here Share it with the recipient via any channel and this link will self-destruct after first view.

CLI Usage

Usage: fadnote [options] [text] echo "text" | fadnote [options] Create secure self-destructing notes that can only be viewed once. Options: -h, --help Show this help message and exit --ttl <secs> Time until note expires (default: 86400 = 24h) --json Output JSON with noteId, expiresIn, and decryptionUrl Environment: FADNOTE_URL API endpoint (default: https://fadnote.com) Examples: # Standard fadnote "My secret message" # direct input echo "My secret" | fadnote # from stdin # With options fadnote --ttl 3600 "Expires in 1 hour" # Custom TTL fadnote --json --ttl 7200 "JSON output" # JSON output: # {noteId: string, expiresIn: number, decryptionUrl: string} # File and clipboard input cat file.txt | fadnote --ttl 86400 # from stdin with options pbpaste | fadnote # macOS clipboard xclip -o -selection clipboard | fadnote # from clipboard (Linux with xclip) xsel -b | fadnote # from clipboard (Linux with xsel) Single Output: Single line with the shareable URL. JSON Output: { noteId: string, expiresIn: number, decryptionUrl: string }

Triggers

  • I (OpenClaw) will automatically use the FadNote skill when you say any of:
  • "Secure this [content]"
  • "FadNote this [content]"
  • "Create a secure link for [content]"
  • "Share this securely: [content]"
  • "One-time note: [content]"
  • "Encrypt and share [content]"
  • With email delivery (if email skill is present):
  • "Secure this and email to [recipient]: [content]"
  • "FadNote this to [email]"
  • "Send secure note to [email]"
  • Examples:
  • Secure this API key: sk-live-12345
  • FadNote this password for the server
  • Create a secure link for these credentials
  • Share this securely: my private SSH key
  • One-time note: the meeting location

Security

Client-side encryption โ€” AES-256-GCM with PBKDF2 (600k iterations) Zero knowledge โ€” Server receives only encrypted blobs One-time read โ€” Note deleted immediately after first fetch Auto-expire โ€” Default 24 hour TTL Open Source โ€” Server code is publicly auditable at https://github.com/easyFloyd/fadnote The decryption key is embedded in the URL fragment (#key) and never sent to the server.

Files

openclaw-skill/ โ”œโ”€โ”€ SKILL.md # This file โ””โ”€โ”€ scripts/ โ””โ”€โ”€ fadnote.js # Main CLI script (~160 lines)

Requirements

Node.js 18+ (no external dependencies)

Troubleshooting

ErrorCauseSolutionFADNOTE_URL not setEnvironment variable missingexport FADNOTE_URL=https://fadnote.comEmpty noteNo input providedPipe text into fadnote: echo "secret" | fadnote404 Not FoundServer endpoint wrongCheck FADNOTE_URL points to a running FadNote instanceConnection refusedServer unreachableVerify server is up or use the live serviceCrypto not availableNode.js < 18Upgrade to Node.js 18+

Links

Live Service: https://fadnote.com Source: https://github.com/easyFloyd/fadnote Issues: https://github.com/easyFloyd/fadnote/issues

Category context

Identity, auth, scanning, governance, audit, and operational guardrails.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • scripts/fadnote.js Scripts
  • package.json Config