用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill cubox-integration命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Cubox Integration |
| description | Save web pages and memos to Cubox using the Open API |
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"