# Send FadNote to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fadnote",
    "name": "FadNote",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/easyFloyd/fadnote",
    "canonicalUrl": "https://clawhub.ai/easyFloyd/fadnote",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fadnote",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fadnote",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "scripts/fadnote.js",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fadnote"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fadnote",
    "downloadUrl": "https://openagent3.xyz/downloads/fadnote",
    "agentUrl": "https://openagent3.xyz/skills/fadnote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fadnote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fadnote/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: easyFloyd
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fadnote)
- [Send to Agent page](https://openagent3.xyz/skills/fadnote/agent)
- [JSON manifest](https://openagent3.xyz/skills/fadnote/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fadnote/agent.md)
- [Download page](https://openagent3.xyz/downloads/fadnote)