Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

ghostmeetghostmeet 搜索

Agent Skill

ghostmeet 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,344

周安装

468

GitHub Stars

1

下载量

3,707
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ghostmeet(ghostmeet 搜索)
来源仓库:https://github.com/higangssh/ghostmeet
安装命令:
openclaw skills install ghostmeet
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ghostmeet

简介

来自 Ghostmeet 的人工智能会议助手。启动会议、获取实时记录并从任何浏览器会议生成 AI 摘要。

SKILL.md

name
ghostmeet
description
AI meeting assistant via ghostmeet. Start sessions, get live transcripts, and generate AI summaries from any browser meeting.
metadata

Ghostmeet — AI Meeting Assistant

Control ghostmeet from chat. Self-hosted meeting transcription with Whisper + AI summaries.

Prerequisites

ghostmeet backend must be running (Docker):

# Quick start
git clone https://github.com/Higangssh/ghostmeet.git
cd ghostmeet
cp .env.example .env
# Edit .env: set GHOSTMEET_ANTHROPIC_KEY for AI summaries
docker compose up -d

Chrome Extension must be installed in developer mode from extension/ folder.

Default backend: http://127.0.0.1:8877

What This Skill Can Do

  • List sessions → query recorded meeting sessions
  • Fetch transcripts → retrieve full text from a session
  • Generate summaries → trigger AI summary via Claude API (requires GHOSTMEET_ANTHROPIC_KEY)
  • Health check → verify backend is running

What This Skill Cannot Do

  • Start/stop recording → must be done manually via the Chrome Extension
  • Install the Chrome Extension → user must load it in developer mode from extension/ folder
  • Access browser audio → only the Chrome Extension captures audio; this skill only reads API results

Required Environment Variables

  • GHOSTMEET_ANTHROPIC_KEY — required for AI summary generation. Without it, transcription still works but summaries will fail.

API Commands

Health Check

curl -s http://127.0.0.1:8877/api/health

Returns: {"status": "ok", "whisper_model": "base", "device": "cpu"}

List Sessions

curl -s http://127.0.0.1:8877/api/sessions

Returns list of all meeting sessions with IDs, start times, and segment counts.

Get Transcript

curl -s http://127.0.0.1:8877/api/sessions/{session_id}/transcript

Returns full transcript with timestamps and text segments.

Generate Summary

curl -s -X POST http://127.0.0.1:8877/api/sessions/{session_id}/summarize

Triggers AI summary generation (requires GHOSTMEET_ANTHROPIC_KEY). Returns: key decisions, action items, and next steps.

Get Summary

curl -s http://127.0.0.1:8877/api/sessions/{session_id}/summary

Returns previously generated summary.

Workflow

During a Meeting

  1. User joins a meeting (Google Meet, Zoom, Teams) in Chrome
  2. Clicks ghostmeet extension icon → side panel opens
  3. Clicks "Start" → real-time transcription begins
  4. Transcripts appear live in the side panel

After a Meeting

User asks: "Summarize my last meeting"

  1. List sessions → find the latest session ID
  2. Get transcript → review what was discussed
  3. Generate summary → extract key points
  4. Deliver summary to user

Example Interaction

User: "What was discussed in my last meeting?" → curl http://127.0.0.1:8877/api/sessions → get latest session → curl http://127.0.0.1:8877/api/sessions/{id}/transcript → get transcript → Summarize key points for the user

User: "Generate a summary with action items" → curl -X POST http://127.0.0.1:8877/api/sessions/{id}/summarizecurl http://127.0.0.1:8877/api/sessions/{id}/summary → Deliver formatted summary

User: "How many meetings did I have today?" → curl http://127.0.0.1:8877/api/sessions → count today's sessions

Configuration

VariableDefaultDescription
GHOSTMEET_MODELbaseWhisper model (tiny/base/small/medium/large-v3)
GHOSTMEET_LANGUAGEautoForce language (en/ko/ja etc.) or auto-detect
GHOSTMEET_CHUNK_INTERVAL10Transcription interval in seconds
GHOSTMEET_ANTHROPIC_KEYClaude API key for summaries
GHOSTMEET_HOST0.0.0.0Backend bind address
GHOSTMEET_PORT8877Backend port

Model Size Guide

  • tiny (75MB): Fast, lower accuracy. Good for quick notes
  • base (145MB): Balanced. Recommended for most users
  • small (488MB): Better accuracy, slower
  • medium (1.5GB): High accuracy, needs good CPU/GPU
  • large-v3 (3GB): Best accuracy, requires GPU

Usage Guidelines

  1. Always check health first — verify backend is running before other commands
  2. List sessions to find IDs — session IDs are date-based (e.g., 20260308-065021)
  3. Summarize only when asked — summary generation costs API tokens
  4. Format transcripts nicely — don't dump raw JSON, present as readable conversation
  5. Respect privacy — meeting transcripts are sensitive. Never share outside the current chat
  6. If backend is down — suggest docker compose up -d in the ghostmeet directory

Privacy

  • Transcription is 100% local — Whisper runs on your machine, audio never leaves your device
  • Summaries use Anthropic API — when you click Summarize, transcript text is sent to Claude API. If you don't want this, skip the summarize feature; transcription works without it
  • Chrome Extension captures tab audio only — uses chrome.tabCapture API, limited to the active tab. It cannot access other tabs, microphone, or system audio. Audit the extension source in extension/ before installing
  • No telemetry — ghostmeet sends zero analytics or tracking data

Troubleshooting

  • Connection refused → Backend not running. docker compose up -d
  • No sessions → No meetings recorded yet. Chrome Extension must be active during meeting
  • Summary failsGHOSTMEET_ANTHROPIC_KEY not set in .env
  • Poor transcription → Try larger Whisper model or set explicit language

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.52%
按下载量换算3,430

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills