google_meet

Join a Google Meet call, transcribe live captions, optionally speak in realtime, and do the followup work afterwards. Use when the user asks the agent to sit in on a meeting, take notes, summarize, respond in-call, or action items from it.

  • meetings
  • google-meet
  • transcription
  • realtime-voice

Declared platforms: linux · macos

Install
npx skills add 'https://github.com/NousResearch/hermes-agent/tree/main/plugins/google_meet'
Download bundle ↓
main · 24fd22bScanned 2026-09-15

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗
View on GitHub
← Back to SKILL.md
"""Tiny JSON read helper shared by the bot, process manager, node registry and node server.""" from __future__ import annotations import jsonfrom pathlib import Pathfrom typing import Any, Optional  def read_json(path: Path) -> Optional[Any]:    """Parsed JSON from *path*, or None when missing/unreadable/malformed."""    if not path.is_file():        return None    try:        return json.loads(path.read_text(encoding="utf-8"))    except (OSError, ValueError):        return None