Give AI agents Everything you read becomes knowledge. using BlueColumn persistent memory. Use when an agent researches and needs to keep findings; when the user wants to store, recall, or search research memory context. Requires a BlueColumn API key (bc_live_*).
Memory
remember-legal-research
Try itCase and research memory for legal work — holdings, citations, and reasoning chains that survive across sessions. Use when an agent assists with legal research and must not lose the thread of a case. Requires a BlueColumn API key (bc_live_*).
What it does
Case and research memory for legal work — holdings, citations, and reasoning chains that survive across sessions. Use when an agent assists with legal research and must not lose the thread of a case. Requires a BlueColumn API key (bc_live_*).
The skill document
Remember Legal Research — BlueColumn Skill
Legal research is a chain of reasoning. If the chain breaks, the work is lost. This skill stores each link — the question, the source, the holding, the citation — so research builds on itself instead of restarting.
Log the research thread
Store each finding with the question it answers, the source, and the citation. Cite like a lawyer: name, reporter, pin.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "RESEARCH: Is a clickwrap enforceable in the 9th Cir.? Berman v. Freedom Financial Network, 2019 WL 123456, at *4 — yes, if conspicuous and user had reasonable notice. Distinguish: Nguyen v. Barnes & Noble (hover-over hyperlink insufficient).", "title": "legal - clickwrap 9th Cir"}'
Resume the thread
At the start of any research session, recall where the thread left off.
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 legal research is in progress and what are the open questions?"}'
Research workflow
- State the question — store the precise issue before reading anything.
- Log each source — authority, holding, and why it matters (or why it is distinguishable).
- Note open questions — mark what is still unresolved so the next session picks up cleanly.
- Synthesize — when the thread resolves, store the conclusion and the chain that supports it.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "OPEN QUESTION: does state UDAP law add a separate damages theory here? Researching WA RCW 19.86 next.", "tags": ["legal", "open-question"]}'
Docs
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).
Related skills
Give AI agents Remember content ideas and drafts. using BlueColumn persistent memory. Use when an agent supports content creation and needs idea continuity; when the user wants to store, recall, or search content memory context. Requires a BlueColumn API key (bc_live_*).
Give AI agents Store every thought as searchable memory. using BlueColumn persistent memory. Use when an agent keeps a journal and needs to revisit entries; when the user wants to store, recall, or search journal memory context. Requires a BlueColumn API key (bc_live_*).
Give AI agents Customer support that never re-asks. using BlueColumn persistent memory. Use when an agent handles support tickets and needs full context; when the user wants to store, recall, or search customer support memory context. Requires a BlueColumn API key (bc_live_*).
Give AI agents Remember family details. using BlueColumn persistent memory. Use when an agent supports family coordination; when the user wants to store, recall, or search family memory context. Requires a BlueColumn API key (bc_live_*).
Give AI agents Track goals and coaching progress. using BlueColumn persistent memory. Use when an agent coaches users and tracks progress; when the user wants to store, recall, or search coaching memory context. Requires a BlueColumn API key (bc_live_*).