Install
openclaw skills install @bluecolumnconsulting-lgtm/remember-birthdaysA personal date radar for birthdays and anniversaries. Use when an agent should greet someone on time, never double-book a celebration, or answer "whose special day is coming up". Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/remember-birthdaysPeople remember you when you remember their day. This skill keeps a searchable calendar of the dates that matter — birthdays, anniversaries, memorial days — so an agent can greet the right person at the right moment.
Save each date the moment you learn it. Include the person's name, the date, and what kind of day it is.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Jane Almeida — birthday March 14. Wedding anniversary November 2 (married 2019).", "title": "dates - Jane Almeida"}'
Before any greeting task, ask which dates are approaching so you never surprise a user with a missed one.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "Whose birthday or anniversary is in the next 14 days?"}'
Use the quick-note endpoint with the birthday tag for lightweight additions without a title:
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Marcus — birthday June 3, prefers no public mention.", "tags": ["birthday", "privacy"]}'
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).