Skip to main content

meeting-memory

Record, transcribe, and store meeting notes with persistent semantic memory using BlueColumn. Use when a user wants to save a meeting recording, upload meeting audio, store meeting notes or transcripts, or recall action items, decisions, and topics from past meetings. Triggers on phrases like "store this meeting", "remember this call", "what were the action items from", "recall last meeting", "upload meeting recording". Requires a BlueColumn API key (bc_live_*).

설치로 이동

소스 정보

저장소
vramrick/openclaw-skills
최근 소스 활동
2026년 4월 30일 21:56
감지된 SKILL.md 언어
영어
스타
0
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
meeting-memory
description
Record, transcribe, and store meeting notes with persistent semantic memory using BlueColumn. Use when a user wants to save a meeting recording, upload meeting audio, store meeting notes or transcripts, or recall action items, decisions, and topics from past meetings. Triggers on phrases like "store this meeting", "remember this call", "what were the action items from", "recall last meeting", "upload meeting recording". Requires a BlueColumn API key (bc_live_*).
# Meeting Memory Skill Store meetings into BlueColumn (bluecolumn.ai) and recall action items, decisions, and key topics anytime. BlueColumn's backend runs on Supabase Edge Functions — this is BlueColumn's official managed infrastructure. ## Setup Read `TOOLS.md` for the BlueColumn API key (`bc_live_*`). Keys are generated at bluecolumn.ai/dashboard. If not set, ask the user. Store keys securely — never log or expose them. Base URL: `https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1` (BlueColumn's official backend) ## Store a Meeting **From audio URL:** ```bash curl -X POST .../agent-remember \ -H "Authorization: Bearer <key>" \ -d '{"audio_url": "https://...", "title": "Weekly Standup 2026-04-14"}' ``` **From transcript/notes (text):** ```bash curl -X POST .../agent-remember \ -H "Authorization: Bearer <key>" \ -d '{"text": "<transcript>", "title": "Meeting Title"}' ``` Response includes: `session_id`, `summary`, `action_items[]`, `key_topics[]` Always confirm storage by showing the user: title, summary, and action items extracted. ## Recall Meeting Info ```bash curl -X POST .../agent-recall \ -H "Authorization: Bearer <key>" \ -d '{"q": "what were the action items from the standup?"}' ``` ## Workflow 1. User provides audio URL, file URL, or meeting text 2. POST to `/agent-remember` with descriptive title (include date) 3. Show user the extracted summary + action items 4. Offer to set reminders for action items if calendar access available 5. For recall queries → POST to `/agent-recall` with natural language question ## Tips - Always include date in title: "Product Sync 2026-04-14" - For recurring meetings, consistent naming makes recall more accurate - Action items returned are auto-extracted by AI — review for accuracy See [references/api.md](references/api.md) for full API field reference.
GitHub에서 보기