backboard
Integrate Backboard.io for assistants, threads, memories, and document RAG via a local backend on http://localhost:5100.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chrisk60331/backboardTools
This skill connects to a local Flask backend that wraps the Backboard SDK. The backend must be running on http://localhost:5100.
backboard_create_assistant
Create a new Backboard assistant with a name and system prompt.
Parameters:
name(string, required): Name of the assistantsystem_prompt(string, required): System instructions for the assistant
Example:
{
"name": "Support Bot",
"system_prompt": "You are a helpful customer support assistant."
}
backboard_list_assistants
List all available Backboard assistants.
Parameters: None
backboard_get_assistant
Get details of a specific assistant.
Parameters:
assistant_id(string, required): ID of the assistant
backboard_delete_assistant
Delete an assistant.
Parameters:
assistant_id(string, required): ID of the assistant to delete
backboard_create_thread
Create a new conversation thread for an assistant.
Parameters:
assistant_id(string, required): ID of the assistant to create thread for
backboard_list_threads
List all conversation threads, optionally filtered by assistant.
Parameters:
assistant_id(string, optional): Filter threads by assistant ID
backboard_get_thread
Get a thread with its message history.
Parameters:
thread_id(string, required): ID of the thread
backboard_send_message
Send a message to a thread and get a response.
Parameters:
thread_id(string, required): ID of the threadcontent(string, required): Message contentmemory(string, optional): Memory mode - "Auto", "Readonly", or "off" (default: "Auto")
backboard_add_memory
Store a memory for an assistant that persists across conversations.
Parameters:
assistant_id(string, required): ID of the assistantcontent(string, required): Memory content to storemetadata(object, optional): Additional metadata for the memory
Example:
{
"assistant_id": "asst_123",
"content": "User prefers Python programming and dark mode interfaces",
"metadata": {"category": "preferences"}
}
backboard_list_memories
List all memories for an assistant.
Parameters:
assistant_id(string, required): ID of the assistant
backboard_get_memory
Get a specific memory.
Parameters:
assistant_id(string, required): ID of the assistantmemory_id(string, required): ID of the memory
backboard_update_memory
Update an existing memory.
Parameters:
assistant_id(string, required): ID of the assistantmemory_id(string, required): ID of the memorycontent(string, required): New content for the memory
backboard_delete_memory
Delete a memory.
Parameters:
assistant_id(string, required): ID of the assistantmemory_id(string, required): ID of the memory to delete
backboard_memory_stats
Get memory statistics for an assistant.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chrisk60331-backboard": {
"enabled": true,
"auto_update": true
}
}
}