Memory

remember-projects

Try it

A project memory that tracks status, milestones, owners, and blockers so nothing stalls silently. Use when an agent manages ongoing work and needs a live picture of every project. Requires a BlueColumn API key (bc_live_*).

What it does

A project memory that tracks status, milestones, owners, and blockers so nothing stalls silently. Use when an agent manages ongoing work and needs a live picture of every project. Requires a BlueColumn API key (bc_live_*).

The skill document

Remember Projects — BlueColumn Skill

Projects die in the gap between "we should" and "we did". This skill keeps a living record of every initiative — where it is, who owns it, what is blocking it — so the agent can surface risk before it becomes a crisis.

Open the project

Store a project the moment it exists, with the outcome, owner, and next milestone.

curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
  -H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "PROJECT: Redesign onboarding flow. Owner: Priya. Goal: cut activation time from 8 to 3 minutes. Next milestone: prototype review Aug 12. Blockers: waiting on design sign-off.", "title": "project - onboarding redesign"}'

Get the live picture

Before any status conversation, pull every project and its current state.

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 projects are active, who owns each, and what is blocked?"}'

Update the milestone

Every meaningful change gets logged so the picture stays current.

curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
  -H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "Onboarding redesign: prototype approved Aug 12. Next: dev handoff Aug 19. New risk: API rate limits on the signup endpoint.", "tags": ["project", "update"]}'

Project workflow

  1. Open — record the goal, owner, and first milestone.
  2. Track — log status changes, decisions, and blockers as they happen.
  3. Surface — before check-ins, recall blockers and overdue milestones and raise them.
  4. Close — store the outcome and what was learned; archive the active thread.

Docs

API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).

Related skills

Tracks email threads, promised actions, and follow-ups so nothing falls through the cracks. Use when an agent manages correspondence and needs to know what was promised, to whom, and by when. Requires a BlueColumn API key (bc_live_*).

Billing memory that tracks invoices, payment status, and follow-ups so revenue is never lost in a thread. Use when an agent handles billing, chases payments, or answers "what is outstanding". Requires a BlueColumn API key (bc_live_*).

Give AI agents Remember docs you've written and read. using BlueColumn persistent memory. Use when an agent maintains documentation and needs to reuse it; when the user wants to store, recall, or search documentation memory context. Requires a BlueColumn API key (bc_live_*).

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_*).

Developer continuity across coding sessions — architecture decisions, TODOs, and handoffs stay searchable. Use when an agent assists on a codebase and needs to resume work exactly where it stopped. Requires a BlueColumn API key (bc_live_*).

Give AI agents Remember GitHub issues and PRs. using BlueColumn persistent memory. Use when an agent tracks repos, issues, and pull requests; when the user wants to store, recall, or search github memory context. Requires a BlueColumn API key (bc_live_*).