SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/duclm1x1/Dive-Ai --skill cubox-integration명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
| 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"