⚠
High Risk:This skill has significant security concerns. Review the findings below before installing.
snipit
⚠Caution·Scanned 2/18/2026
This skill documents the snipit CLI and the https://snipit.sh API for sharing code, configs, logs, and secrets with password protection, burn-after-read, and expiration. It instructs reading local files like .env and uploading them via snipit or curl to https://snipit.sh/api/snippets, and running shell commands such as npm install, snipit, curl, git, and tail.
from clawhub.ai·v19d7c90·1.6 KB·0 installs
Scanned from 1.0.0 at 19d7c90 · Transparency log ↗
$ vett add clawhub.ai/homecity/snipitReview security findings before installing
snipit.sh
Secure code snippet sharing with AES-256 encryption at rest.
CLI Usage
# Install
npm install -g snipit-sh
# Create from file
snipit create server.py
# Pipe from stdin
cat code.js | snipit -l javascript
# With options
snipit create .env -t "Config" -p secret -b -e 1h
# Get snippet
snipit get abc123 -p secret
Options
| Flag | Description |
|---|---|
-t, --title | Snippet title |
-l, --language | Syntax highlighting |
-p, --password | Password protect |
-e, --expires | 1h, 6h, 1d, 3d, 1w, 2w, never |
-b, --burn | Burn after reading |
-c, --copy | Copy URL to clipboard |
API Fallback (curl)
# Create
curl -X POST https://snipit.sh/api/snippets \
-H "Content-Type: application/json" \
-d '{"content":"code","language":"python","burnAfterRead":true}'
# Get
curl https://snipit.sh/api/snippets/{id}
Common Patterns
# Share git diff
git diff | snipit -t "Changes" -l diff
# Share logs (auto-expire 1h)
tail -100 app.log | snipit -e 1h
# Secure config (password + burn)
snipit create .env -p secret123 -b
# Build output
./build.sh 2>&1 | snipit -t "Build log"