Install
openclaw skills install clipboard-stash-demoStash and recall short text snippets in a local file-backed clipboard. Use when the user wants to save a quick note or quote ("记一下"/"先放着"/"待会儿用") and retrieve it later in the same workspace without setting up a database or external service.
openclaw skills install clipboard-stash-demoA tiny, dependency-free "scratch clipboard" backed by ~/.cache/clipboard-stash/stash.tsv.
Each entry has a slug, timestamp, and one-line content. Multi-line text is preserved
via \n escaping inside the TSV.
MEMORY.md.MEMORY.md or memory/YYYY-MM-DD.md.All commands are pure bash one-liners — no install needed.
mkdir -p ~/.cache/clipboard-stash
slug="$1"; shift; content="$*"
printf '%s\t%s\t%s\n' "$slug" "$(date -Is)" "${content//$'\n'/\\n}" \
>> ~/.cache/clipboard-stash/stash.tsv
tail -n 20 ~/.cache/clipboard-stash/stash.tsv | column -t -s $'\t'
slug="$1"
awk -F'\t' -v s="$slug" '$1==s {last=$0} END {print last}' \
~/.cache/clipboard-stash/stash.tsv \
| awk -F'\t' '{gsub(/\\n/, "\n", $3); print $3}'
: > ~/.cache/clipboard-stash/stash.tsv
slug \t iso8601 \t content (newlines escaped as \n).cat the file directly to inspect history.