Install
openclaw skills install @bluecolumnconsulting-lgtm/remember-booksA personal reading journal that keeps the books you have read, the ideas worth keeping, and the next book worth picking up. Use when an agent tracks reading, recommends books, or needs a takeaway on demand. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/remember-booksReading is only useful if the ideas survive the book. This skill turns a reading list into a searchable journal: what you read, what stuck, and what to read next.
Store each finished book with the one or two ideas that changed how you think.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "The Mom Test by Rob Fitzpatrick — finished July. Core idea: ask about past behavior, not opinions. Favorite line: people will lie to be nice.", "title": "book - The Mom Test"}'
When a conversation touches a topic you have read about, pull the relevant idea into the reply.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "What have I read about customer interviews or discovery?"}'
Ask the journal for gaps: themes you keep reading but have not acted on, or authors you enjoyed.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "Which books did I rate highly, and what topics have I not read about yet?"}'
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Want to read: Atomic Habits (habit loops, ties to the sales follow-up project).", "tags": ["book", "wishlist"]}'
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).