@constellaapp/openclaw
v0.1.0
Published
OpenClaw plugin for Constella search and note insertion.
Readme
@openclaw/constella-openclaw
OpenClaw plugin that connects to Constella external APIs and exposes two tools:
constella_search_notesconstella_insert_note
Install
From npm (official)
openclaw plugins install @openclaw/constella-openclawLocal dev install
openclaw plugins install -l /Users/tejas1/Documents/Constella\ Codebases/third_party/constella-openclawConfigure
Set plugin config in your OpenClaw config file:
{
"plugins": {
"entries": {
"constella-openclaw": {
"enabled": true,
"config": {
"baseUrl": "https://fastfind.app",
"apiKey": "csk_your_key_here"
}
}
}
}
}Enable the tools
Optional plugin tools must be allowlisted:
{
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": [
"constella_search_notes",
"constella_insert_note"
]
}
}
]
}
}API endpoints used
POST /constella-external-api/retrieve-infoPOST /constella-external-api/insert-note
Auth header sent by this plugin:
x_access_key: csk_...
