ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

backboard

Integrate Backboard.io for assistants, threads, memories, and document RAG via a local backend on http://localhost:5100.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/chrisk60331/backboard
Or

Tools

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 assistant
  • system_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 thread
  • content (string, required): Message content
  • memory (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 assistant
  • content (string, required): Memory content to store
  • metadata (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 assistant
  • memory_id (string, required): ID of the memory

backboard_update_memory

Update an existing memory.

Parameters:

  • assistant_id (string, required): ID of the assistant
  • memory_id (string, required): ID of the memory
  • content (string, required): New content for the memory

backboard_delete_memory

Delete a memory.

Parameters:

  • assistant_id (string, required): ID of the assistant
  • memory_id (string, required): ID of the memory to delete

backboard_memory_stats

Get memory statistics for an assistant.

Metadata

Stars3683
Views0
Updated2026-04-01
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-chrisk60331-backboard": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.