Install
openclaw skills install capacitiesManage Capacities notes, daily entries, and weblinks.
openclaw skills install capacitiesUse this skill to interact with your Capacities "Second Brain".
CAPACITIES_API_TOKEN: Obtain from Settings > Capacities API in the desktop app.CAPACITIES_SPACE_ID: (Optional) If not provided, the first available space will be used.To add a thought, task, or note to today's daily note:
curl -X POST https://api.capacities.io/save-to-daily-note -H "Authorization: Bearer $CAPACITIES_API_TOKEN" -H "Content-Type: application/json" -d '{"spaceId": "$CAPACITIES_SPACE_ID", "mdText": "Your note here"}'
To save a URL to your space:
curl -X POST https://api.capacities.io/save-weblink -H "Authorization: Bearer $CAPACITIES_API_TOKEN" -H "Content-Type: application/json" -d '{"spaceId": "$CAPACITIES_SPACE_ID", "url": "https://example.com"}'
To find an object's ID:
curl -X POST https://api.capacities.io/lookup -H "Authorization: Bearer $CAPACITIES_API_TOKEN" -H "Content-Type: application/json" -d '{"spaceId": "$CAPACITIES_SPACE_ID", "searchTerm": "My Note"}'
To get all object types and structures:
curl -X GET "https://api.capacities.io/space-info?spaceid=$CAPACITIES_SPACE_ID" -H "Authorization: Bearer $CAPACITIES_API_TOKEN"