OpenClaw plugin that connects to Constella external APIs and exposes two tools:
constella_search_notesconstella_insert_note
openclaw plugins install @openclaw/constella-openclawopenclaw plugins install -l /Users/tejas1/Documents/Constella\ Codebases/third_party/constella-openclawSet plugin config in your OpenClaw config file:
{
"plugins": {
"entries": {
"constella-openclaw": {
"enabled": true,
"config": {
"baseUrl": "https://fastfind.app",
"apiKey": "csk_your_key_here"
}
}
}
}
}Optional plugin tools must be allowlisted:
{
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": [
"constella_search_notes",
"constella_insert_note"
]
}
}
]
}
}POST /constella-external-api/retrieve-infoPOST /constella-external-api/insert-note
Auth header sent by this plugin:
x_access_key: csk_...