This skill enables saving content to Cubox using the Open API. Cubox is a read-it-later and bookmarking service that supports saving web URLs and quick memos.
> ⚠️ Security: Your API URL is a unique credential. Keep it private and never share it.
Set the CUBOX_API_URL environment variable with your personal API URL:
export CUBOX_API_URL="https://cubox.pro/c/api/save/YOUR_TOKEN"
scripts/save_url.py)Save a web page URL to Cubox.
python scripts/save_url.py <url> [--title "Title"] [--description "Description"] [--tags "tag1,tag2"] [--folder "Folder Name"]
Parameters:
url (required): The web page URL to save--title: Optional title for the bookmark--description: Optional description--tags: Comma-separated list of tags--folder: Target folder name (defaults to Inbox)Example:
python scripts/save_url.py "https://example.com/article" --title "Great Article" --tags "tech,reading" --folder "Articles"
scripts/save_memo.py)Save a quick memo/note to Cubox.
python scripts/save_memo.py <content> [--title "Title"] [--description "Description"] [--tags "tag1,tag2"] [--folder "Folder Name"]
Parameters:
content (required): The memo text content--title: Optional title (Cubox will auto-generate if not provided)--description: Optional description--tags: Comma-separated list of tags--folder: Target folder name (defaults to Inbox)Example:
python scripts/save_memo.py "Remember to review the quarterly report" --title "Todo" --tags "work,reminder"
共 1 个版本