Install
openclaw skills install @bluecolumnconsulting-lgtm/remember-preferencesA preference ledger that lets agents honor how each user likes things done — tone, tools, timing, and turn-offs. Use when an agent should personalize behavior instead of guessing. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/remember-preferencesThe difference between a useful agent and an annoying one is usually a preference: how long, how formal, how often, how loud. This skill records those rules so the agent stops guessing and starts matching.
Store each preference as a clear rule with the user it belongs to.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "PREFERENCE (Joe): keep summaries under 5 bullets. No emojis in work emails. Prefers morning updates, not evening. Wants to be called out directly when wrong.", "title": "prefs - Joe communication"}'
Pull the relevant preference before any interaction that could go sideways.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "How does Joe like updates, emails, and feedback delivered?"}'
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Pref: never schedule meetings before 9:30am for Joe; he does deep work in the early morning.", "tags": ["preference", "schedule"]}'
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).