← Back to Skills Marketplace
mikeliang2000

meetmind

by mikeliang2000 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
61
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install meetmind
Description
智能会议纪要助手,支持粘贴文本或上传音频,自动识别9类会议模板,生成结构化纪要并跨会记忆追踪。
README (SKILL.md)

MeetMind v0.6.2 — 多模板会议智能纪要

9 类会议模板 → 自动识别 → ACE 六维结构化 → 跨会议记忆追踪

⚠️ 本 Skill 需要云端 API 才能运行。模板核心逻辑在服务端,Skill 仅为客户端。 🆓 新用户 10 次免费试用 | ¥19.9/月解锁全部功能 🆔 自动生成用户 ID,零配置即用


核心差异化

竞品 能做什么 MeetMind 的不同
腾讯会议/飞书妙记 转录 + 摘要 ✅ 我们有,但不是核心
Otter.ai/Fireflies 转录 + 搜索 ✅ 我们有,但免费层已覆盖
通义听悟/听脑AI 转录 + AI总结 ✅ 我们也有,但不是护城河
MeetMind 9类模板 + ACE结构 + 跨会议记忆 🔥 竞品做不到的三件事

9 类会议模板

模板的 ACE 权重、定制输出块、Prompt 指令均在服务端。Skill 端仅负责关键词匹配选模板。

# 模板 触发关键词(Skill 端用于本地匹配,服务端做精确识别)
1 产品研讨会 PRD、需求、功能、迭代、sprint、版本、原型、技术方案
2 客户会议 客户、甲方、交付、验收、续约、客诉、报价、合同
3 内部周会 周报、本周、上周、下周、进度、OKR、同步、阻塞
4 面试 面试、候选人、自我介绍、离职原因、期望薪资、offer
5 销售拜访 拜访、演示、POC、报价、招投标、签约、商机
6 投资评审 投资、估值、条款、DD、尽调、回报率、赛道
7 1v1 沟通 1on1、1v1、一对一、绩效、成长、反馈、困惑
8 头脑风暴 头脑风暴、脑暴、brainstorm、想法、点子、创意
9 复盘会 复盘、retro、回顾、事故、上线失败、改进、教训

自动检测:Skill 端根据关键词密度评分,选择最高分模板ID发送给云端 API。所有模板的实际处理逻辑在服务端。


收费层级

层级 价格 模板 跨会议记忆 输入方式
🆓 试用 ¥0 全部 9 类 ❌ 不存储 粘贴文字(10次终身)
L1 免费 ¥0 全部 9 类 粘贴文字(5次/月)
L2 月付 ¥19.9/月 全部 9 类 ✅ 永久 粘贴文字不限次
L2 年付 ¥99/年 全部 9 类 ✅ 永久 粘贴文字不限次
L3 音频 ¥3/次 全部 9 类 ✅ 永久 上传音频 + ASR
L4 企业 ¥9,800+ 全部 + 自定义模板 ✅ 团队共享 不限

用户身份(自动获取,零配置)

MeetMind 自动生成并持久化用户 ID,无需手动配置:

MEETMIND_USER_ID 环境变量(手动配置,最高优先级)
    ↓ 没有
本地持久化 ID(首次生成后缓存,路径:{baseDir}/.meetmind_user_id)
    ↓ 没有
自动生成 UUID(兜底)

效果:

  • 同设备同 Skill → 相同 user_id → 试用次数、用量持续跟踪
  • 跨设备 → 设置相同的 MEETMIND_USER_ID 环境变量即可恢复身份
  • 零手动配置 → 安装即用

付费版 mTLS 用户:证书里的 user_id 会覆盖以上自动 ID,确保付费身份一致。


试用流程(新用户)

1. 从 ClawHub 下载本 Skill
2. 在对话中说:使用 meetmind 试用 [粘贴会议文字]
3. Skill 自动获取你的用户 ID,发到云端 /trial(无需证书,10次免费)
4. 用完后提示升级 → 联系客服获取 mTLS 证书

核心工作流

用户提供文本或音频
       ↓
Skill 端:关键词匹配 → 选择模板ID
       ↓
云端 API:DeepSeek V4-Flash + 模板处理 → ACE 六维结构化
       ↓
返回结构化纪要(付费用户自动存储跨会议记忆)
       ↓
询问是否创建 Task / 写入日记 / 更新 MEMORY

API 端点

端点 方法 用途 认证
/trial POST 免费试用(10次终身) 无需 mTLS
/health GET 健康检查 mTLS
/transcribe POST 文字透传/音频转录 mTLS
/structure POST ACE结构化 mTLS
/memory/context GET 记忆上下文 mTLS
/memory/recall POST 检索记忆 mTLS
/user/{id} GET 用户信息 mTLS
/user/{id}/usage GET 用量查询 mTLS
/templates GET 模板列表(含自定义) mTLS
/templates POST 创建自定义模板(L4) mTLS
/templates/{id} PUT 更新自定义模板(L4) mTLS
/templates/{id} DELETE 删除自定义模板(L4) mTLS

Skill 端调用

from scripts.cloud_client import MeetMindClient

# 自动获取用户 ID(零配置)
client = MeetMindClient()

# 🔓 免费试用(10次,无需证书)
result = client.trial_structure(meeting_text)

# 🔒 付费使用(需要 mTLS 证书)
result = client.transcribe_text(meeting_text)
struct = client.structure(result["task_id"])

# 带记忆追踪
struct = client.structure(
    result["task_id"],
    entity_key="项目名称",
    entity_type="project",
    meeting_title="Q3产品评审"
)

# 自定义模板(L4 企业版)
client.create_template(name="董事会汇报", keywords=["董事会", "股东"], ...)

文件结构

meetmind/
├── SKILL.md              ← 本文件(v0.6.2-clawhub)
├── config.json           ← 模型/定价/试用配置
└── scripts/
    └── cloud_client.py   ← 云端 API 客户端(自动 ID + mTLS 证书认证 + 试用模式)

证书获取:付费用户联系客服获取 mTLS 客户端证书(client.crt + client.key),放入 {baseDir}/certs/ 目录即可激活全部功能。证书文件不随 Skill 分发。


快速开始

# 试用(无需付费)
使用 meetmind 试用 [粘贴会议文字]

# 指定模板
使用 meetmind,这是产品评审会 [粘贴文字]

# 带记忆追踪(付费用户)
使用 meetmind,ADP客户第三次会议 entity=ADP科技 type=client [粘贴文字]

# 上传音频(L3用户)
使用 meetmind 处理这段会议录音 [上传音频文件]

证书获取

付费用户联系客服获取 mTLS 客户端证书(client.crt + client.key),放入 {baseDir}/certs/ 目录即可激活全部功能。

联系方式:微信 mikeliang,注明「MeetMind 证书」。


降级模式

  • 无证书:自动使用 /trial 端点(试用模式,10次限制)
  • 证书过期/撤销:提示联系管理员更新
  • 无法联网:提示检查网络连接
Usage Guidance
Install only if you are comfortable sending meeting content, audio, participant details, and a stable user identifier to the vendor’s cloud service. Avoid using it for confidential, regulated, legal, HR, customer, or internal strategy meetings unless the publisher provides acceptable privacy, retention, deletion, and security terms, and prefer invoking it explicitly with MeetMind or @meetmind rather than relying on generic triggers.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The cloud upload, transcription, structured minutes, paid cross-meeting memory, and template features fit the stated meeting-assistant purpose.
Instruction Scope
The trigger list includes broad ordinary phrases such as meeting notes/records and regex-like patterns, which could invoke the skill around sensitive meeting content without an explicit product-name invocation or confirmation step.
Install Mechanism
The artifact contains only SKILL.md, config.json, and a Python client; paid mode requires users to place mTLS certificates in a local certs directory, and no bundled secrets or suspicious install scripts were found.
Credentials
The client posts meeting text, uploaded audio, meeting titles, participants, entity context, and template data to https://www.hermesai.ltd/meetmind; that is purpose-aligned but high-impact for confidential business or personal meetings and lacks a clear local/offline option or explicit consent gate.
Persistence & Privilege
The code automatically creates a persistent .meetmind_user_id and sends it in headers and request data; the documentation describes paid cross-meeting memory with long or permanent retention but does not provide clear deletion, rotation, export, or opt-out controls.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install meetmind
  3. After installation, invoke the skill by name or use /meetmind
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
MeetMind v1.0.0 — 智能会议纪要助手首发 - 支持粘贴文本和上传音频,自动识别 9 类会议模板 - 基于 ACE 六维结构,输出结构化纪要并支持跨会议记忆追踪(付费版) - 免费层开放粘贴文字,零成本试用 10 次;付费层支持音频转录与高级功能 - 自动生成和管理用户 ID,无需手动配置,支持多端同步 - 通过关键词智能匹配会议类型,云端 API 提供精细化处理 - 多层次计费及企业定制模板,满足不同用户需求
Metadata
Slug meetmind
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is meetmind?

智能会议纪要助手,支持粘贴文本或上传音频,自动识别9类会议模板,生成结构化纪要并跨会记忆追踪。 It is an AI Agent Skill for Claude Code / OpenClaw, with 61 downloads so far.

How do I install meetmind?

Run "/install meetmind" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is meetmind free?

Yes, meetmind is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does meetmind support?

meetmind is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created meetmind?

It is built and maintained by mikeliang2000 (@mikeliang2000); the current version is v1.0.0.

💬 Comments