cubox-integration

Verified·Scanned 2/18/2026

This skill saves URLs and memos to Cubox via the Cubox Open API using local scripts scripts/save_url.py and scripts/save_memo.py. It reads CUBOX_API_URL and issues HTTP POSTs to https://cubox.pro/c/api/save/YOUR_TOKEN.

from clawhub.ai·vb7a36d8·9.1 KB·0 installs
Scanned from 1.0.0 at b7a36d8 · Transparency log ↗
$ vett add clawhub.ai/liam8/cubox-integration

Cubox Integration Skill

A skill for integrating with Cubox - a powerful read-it-later and bookmarking service.

Features

  • 📎 Save URLs - Bookmark web pages with metadata (title, description, tags, folder)
  • 📝 Save Memos - Quick notes and text snippets
  • 🏷️ Tagging Support - Organize content with tags
  • 📁 Folder Management - Save to specific folders

Quick Start

1. Get Your API URL

  1. Open Cubox (web or app)
  2. Go to Preferences > Extension Center and Automation > API Extension
  3. Enable API Link and copy the URL

2. Set Environment Variable

export CUBOX_API_URL="https://cubox.pro/c/api/save/YOUR_TOKEN"

3. Install Dependencies

pip install requests

4. Usage

Save a URL:

python scripts/save_url.py "https://example.com" --title "Example Site" --tags "web,example"

Save a memo:

python scripts/save_memo.py "Important note to remember" --folder "Notes"

API Reference

Request Format

All requests use JSON format:

{
  "type": "url",
  "content": "https://example.com",
  "title": "Optional Title",
  "description": "Optional Description",
  "tags": ["tag1", "tag2"],
  "folder": "Folder Name"
}

Types

TypeDescription
urlSave a web page URL
memoSave a quick memo/note

Rate Limits

  • 500 API calls per day (Premium users)

Documentation

  • SKILL.md - Detailed skill instructions
  • Cubox API Help - Official documentation

License

MIT