Install
openclaw skills install @shiweifu/passnoteCreate and manage disposable memos using PassNote. Share secure, auto-destructing notes with others.
openclaw skills install @shiweifu/passnoteWhen the user wants to create a memo, note, or secure message to share, you can use the PassNote service to generate a secure, temporary link.
Features of PassNote:
To use this skill, you must configure your PassNote API Token.
~/.openclaw/openclaw.json to include the credentials:{
"skills": {
"entries": {
"passnote": {
"env": {
"PASSNOTE_API_URL": "https://passnote.yourdomain.com",
"PASSNOTE_API_TOKEN": "your-api-token-here"
}
}
}
}
}
To create a memo, execute the provided Python script located in this skill's directory.
Always use absolute paths when running the script. The script path is {baseDir}/scripts/create_memo.py.
Example invocation:
# Basic usage
python3 {baseDir}/scripts/create_memo.py "This is a secret message"
# Set custom expiration (in hours, max 48)
python3 {baseDir}/scripts/create_memo.py "This is a secret message" --expire-hours 12
After running the command, parse the standard output to provide the user with the generated viewing URL and the 4-digit passcode (pass_key). The script will output these details in a clear format. If the script fails, relay the error message to the user.