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.
1. **Cubox Premium Membership** - The Open API is a premium feature
2. **API Key** - Get your API URL from Cubox settings:
- Go to Cubox Preferences > Extension Center and Automation > API Extension
- Enable "API Link" to get your personal API URL
> ⚠️ **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:
```bash
export CUBOX_API_URL="https://cubox.pro/c/api/save/YOUR_TOKEN"
```
Save a web page URL to Cubox.
```bash
python scripts/save_url.py <url> [--title "Title"] [--description "Description"] [--tags "tag1,tag2"] [--folder "Folder Name"]
```
**Parameters:**
**Example:**
```bash
python scripts/save_url.py "https://example.com/article" --title "Great Article" --tags "tech,reading" --folder "Articles"
```
Save a quick memo/note to Cubox.
```bash
python scripts/save_memo.py <content> [--title "Title"] [--description "Description"] [--tags "tag1,tag2"] [--folder "Folder Name"]
```
**Parameters:**
**Example:**
```bash
python scripts/save_memo.py "Remember to review the quarterly report" --title "Todo" --tags "work,reminder"
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/cubox-integration/raw