소스 정보
- 저장소
- vellum-ai/meet-join
- 최근 소스 활동
- 2026년 7월 1일 21:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vellum-ai/meet-join --skill meet-join명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | meet-join |
| description | Join a Google Meet call to take notes; only when the user explicitly asks. |
| metadata | {"icon":"assets/icon.svg","emoji":"📹","vellum":{"category":"voice","display-name":"Meet Join"}} |
Use this skill when the user explicitly asks the assistant to join a Google Meet call (e.g. "join my meet", "can you join this call and take notes", usually with a https://meet.google.com/... URL in context). Joining a call causes the assistant to appear as a visible participant — never do it proactively.
Trigger on clear, explicit user requests only:
Do NOT trigger on:
If the request is ambiguous (e.g. no URL, or an unrelated URL), ask the user to confirm the Meet link before calling the tool.
Call the meet_join tool with the Meet URL:
meet_join(url: "https://meet.google.com/abc-defg-hij")
Validate the URL looks like a Google Meet link before calling — the canonical shape is https://meet.google.com/xxx-yyyy-zzz. If the URL does not look like a Meet link, ask the user to confirm or paste the correct one.
On join, the assistant bot announces itself in the Meet chat with the configured consent message so other participants know a note-taker is present. Any participant can ask the bot to leave; the bot auto-leaves when it detects objection keywords in the transcript.
Call meet_leave when the user says you can step out (e.g. "thanks, you can go now", "drop out of the call") or when you judge that continued presence is no longer useful:
meet_leave(reason: "user-requested")
When a single meeting is active, meetingId can be omitted — the tool targets that meeting automatically. When multiple meetings are active, pass the meetingId explicitly.
Transcription quality and latency reflect the user's configured services.stt.provider. Deepgram and Gemini stream over a WebSocket and return sub-second partials; Whisper approximates streaming with ~400 ms polls and therefore produces finals slightly later. Speaker attribution in meeting transcripts is derived from the Meet DOM active-speaker signal — it is independent of the STT provider.
The meet_send_chat tool posts a message into the active meeting's chat:
meet_send_chat(text: "The doc we were looking for is https://example.com/spec")
When a single meeting is active, meetingId can be omitted. If no meeting is active, the tool fails with a clear error — surface the error back to the user rather than retrying.
Chat is appropriate when:
Avoid chat for:
A background chat-opportunity detector watches the meeting transcript and, when it judges that the moment might warrant a response from the assistant, wakes the agent loop with a hint. The hint is delivered as an internal user message prepended with [opportunity:meet-chat-opportunity] <reason>. At that point the assistant can call meet_send_chat if appropriate.
Key points:
The meet_speak tool synthesizes text to speech and plays it through the bot's microphone in the meeting:
meet_speak(text: "Yes, the meeting is scheduled to end in 30 seconds.")
When a single meeting is active, meetingId can be omitted. The voice parameter is optional — when omitted, the configured TTS voice is used.
Voice is appropriate when:
Avoid voice for:
meet_send_chat instead.Barge-in is automatic: if a human speaks while the assistant is talking, the assistant's audio is cancelled mid-utterance. Treat being interrupted as normal — do not retry the cancelled utterance or apologize for it.
meet_enable_avatar turns on a real-time video avatar that lip-syncs to TTS output. meet_disable_avatar turns it off. The avatar is off by default when the assistant joins a meeting — the assistant must explicitly opt in.
Enable the avatar when:
Avoid enabling the avatar when: