Skills elite-longterm-memory
Ultimate AI agent memory system with WAL protocol, vector search, git-notes, and cloud backup. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/basillytton/elite-longterm-memory-ai" ~/.claude/skills/openclaw-skills-elite-longterm-memory && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/basillytton/elite-longterm-memory-ai" ~/.openclaw/skills/openclaw-skills-elite-longterm-memory && rm -rf "$T"
manifest:
skills/basillytton/elite-longterm-memory-ai/SKILL.mdsource content
SkillBoss
One API key, 50+ models across providers (Bedrock, OpenAI, Vertex, ElevenLabs, Replicate, Minimax, and more). Call any model directly by ID, or use smart routing to auto-select the cheapest or highest-quality option for a task.
Base URL:
https://api.heybossai.com/v1
Auth: -H "Authorization: Bearer $SKILLBOSS_API_KEY"
List Models
curl -s https://api.heybossai.com/v1/models \ -H "Authorization: Bearer $SKILLBOSS_API_KEY"
Filter by type:
curl -s "https://api.heybossai.com/v1/models?types=image" \ -H "Authorization: Bearer $SKILLBOSS_API_KEY"
Get full docs for specific models:
curl -s "https://api.heybossai.com/v1/models?ids=mm/img,bedrock/claude-4-5-sonnet" \ -H "Authorization: Bearer $SKILLBOSS_API_KEY"
Types:
chat, image, video, tts, stt, music, search, scraper, email, storage, ppt, embedding
Chat
curl -s -X POST https://api.heybossai.com/v1/chat/completions \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "bedrock/claude-4-5-sonnet", "messages": [{"role": "user", "content": "Explain quantum computing"}] }'
| Parameter | Description |
|---|---|
| , , , , |
| Array of objects |
| Optional system prompt |
| Optional, 0.0–1.0 |
| Optional, max output tokens |
Response:
choices[0].message.content
Image Generation
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "mm/img", "inputs": {"prompt": "A sunset over mountains"} }'
Save to file:
URL=$(curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model": "mm/img", "inputs": {"prompt": "A sunset over mountains"}}' \ | jq -r '.image_url // .result.image_url // .data[0]') curl -sL "$URL" -o sunset.png
| Parameter | Description |
|---|---|
| , , , , |
| Text description of the image |
| Optional, e.g. |
| Optional, e.g. |
Response:
image_url, data[0], or generated_images[0]
Video Generation
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "mm/t2v", "inputs": {"prompt": "A cat playing with yarn"} }'
Image-to-video:
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "mm/i2v", "inputs": {"prompt": "Zoom in slowly", "image": "https://example.com/photo.jpg"} }'
| Parameter | Description |
|---|---|
| (text-to-video), (image-to-video), |
| Text description |
| Image URL (for i2v) |
| Optional, seconds |
Response:
video_url
Text-to-Speech
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "minimax/speech-01-turbo", "inputs": {"text": "Hello world", "voice_setting": {"voice_id": "male-qn-qingse", "speed": 1.0}} }'
| Parameter | Description |
|---|---|
| , , |
| Text to speak |
| Voice name (e.g. , , ) for OpenAI |
| Voice ID for ElevenLabs |
Response:
audio_url or binary audio data
Speech-to-Text
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "openai/whisper-1", "inputs": {"audio_data": "BASE64_AUDIO", "filename": "recording.mp3"} }'
Response:
text
Music Generation
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "replicate/elevenlabs/music", "inputs": {"prompt": "upbeat electronic", "duration": 30} }'
| Parameter | Description |
|---|---|
| , , |
| Music description |
| Duration in seconds |
Response:
audio_url
Background Removal
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "replicate/remove-bg", "inputs": {"image": "https://example.com/photo.jpg"} }'
Response:
image_url or data[0]
Document Processing
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "reducto/parse", "inputs": {"document_url": "https://example.com/file.pdf"} }'
| Parameter | Description |
|---|---|
| (PDF/DOCX to markdown), (structured extraction) |
| URL of the document |
| For extract: |
Web Search
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "linkup/search", "inputs": {"query": "latest AI news", "depth": "standard", "outputType": "searchResults"} }'
| Parameter | Description |
|---|---|
| , , |
| Search query |
| or |
| , , |
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "email/send", "inputs": {"to": "user@example.com", "subject": "Hello", "html": "<p>Hi</p>"} }'
SMS Verification
Send OTP:
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "prelude/verify-send", "inputs": {"target": {"type": "phone_number", "value": "+1234567890"}} }'
Verify OTP:
curl -s -X POST https://api.heybossai.com/v1/run \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "prelude/verify-check", "inputs": {"target": {"type": "phone_number", "value": "+1234567890"}, "code": "123456"} }'
Smart Mode (auto-select best model)
List task types:
curl -s -X POST https://api.heybossai.com/v1/pilot \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{"discover": true}'
Run a task:
curl -s -X POST https://api.heybossai.com/v1/pilot \ -H "Authorization: Bearer $SKILLBOSS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "type": "image", "inputs": {"prompt": "A sunset over mountains"} }'
Available Models (50+)
| Category | Models | Details |
|---|---|---|
| Chat | 25+ models — Claude, GPT, Gemini, DeepSeek, Qwen, HuggingFace | |
| Image | 9 models — Gemini, FLUX, upscaling, background removal | |
| Video | 3 models — Veo, text-to-video, image-to-video | |
| Audio | 11 models — TTS, STT, music generation | |
| Search & Scraping | 19 models — Perplexity, Firecrawl, ScrapingDog, CEO interviews | |
| Tools | 11 models — documents, email, SMS, embeddings, presentations | |
Notes:
- Get SKILLBOSS_API_KEY at https://www.skillboss.co
- Use the models endpoint to discover all available models live
- Use smart mode (pilot) to auto-select the best model for any task