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

otterai-cliotterai CLI 搜索

Agent Skill

otterai-cli 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,577

周安装

361

GitHub Stars

公开资料未说明

下载量

3,004
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install otterai-cli

简介

用于查找、下载和管理 Otter.ai 平台的会议录音与文字记录。

  • 适用于需要检索历史通话内容、转录文本或音频素材的场景。
  • 支持关键词搜索与会话分类,便于快速定位特定讨论片段。
  • 使用前需完成 Otter.ai 账户授权与 API 接入配置。
  • 注意:仅能访问用户授权范围内的数据,不得用于未授权内容抓取。

SKILL.md

name
otterai-cli
description
Use when the user mentions Otter, Otter.ai, or wants to find, search, download, export, or manage meeting notes, transcripts, recordings, or audio from calls, standups, syncs, or interviews.
version
1.1.0
metadata
openclaw
requires
bins
env
install
uv tool install otterai-cli

Otter.ai CLI

CLI for interacting with Otter.ai meeting notes and transcripts via the otter command.

Prerequisites

Install with:

uv tool install otterai-cli

Upgrade with:

uv tool upgrade otterai-cli

Authenticate with:

otter login

Credentials are stored in your OS keychain via keyring, with ~/.otterai/config.json as fallback.

You can also use environment variables (OTTERAI_USERNAME, OTTERAI_PASSWORD), which take highest precedence.

Commands

Speeches (Meeting Notes)

otter speeches list                          # list all speeches
otter speeches list --days 7                 # last 7 days
otter speeches list --folder "Work"          # by folder name (case-insensitive)
otter speeches list --folder 123456          # by folder ID
otter speeches list --page-size 10           # limit results
otter speeches list --source owned           # only owned speeches (default)
otter speeches list --source shared          # only shared speeches
otter speeches list --source all             # all speeches
otter speeches list --json                   # JSON output

otter speeches get SPEECH_ID                 # get speech details + full transcript
otter speeches get SPEECH_ID --json

otter speeches search "keyword" SPEECH_ID    # search within a speech
otter speeches search "keyword" SPEECH_ID --size 100

otter speeches download SPEECH_ID -f txt     # formats: txt, pdf, mp3, docx, srt, md
otter speeches download SPEECH_ID -f pdf -o my_file
otter speeches download SPEECH_ID -f md      # markdown (generated locally from transcript data)
otter speeches download SPEECH_ID -f md -o meeting-notes
otter speeches download SPEECH_ID -f md --frontmatter-fields "title,summary,speakers"
otter speeches download SPEECH_ID -f md --frontmatter-fields none

otter speeches upload recording.mp4          # upload audio for transcription

otter speeches rename SPEECH_ID "New Title"
otter speeches trash SPEECH_ID               # move to trash
otter speeches trash SPEECH_ID --yes         # skip confirmation

otter speeches move SPEECH_ID --folder "Work"
otter speeches move ID1 ID2 ID3 --folder "Work"
otter speeches move SPEECH_ID --folder "New Folder" --create  # auto-create folder

Speakers

otter speakers list
otter speakers list --json
otter speakers create "Speaker Name"
otter speakers tag SPEECH_ID SPEAKER_ID          # list segments, then tag
otter speakers tag SPEECH_ID SPEAKER_ID -t UUID  # tag specific segment
otter speakers tag SPEECH_ID SPEAKER_ID --all    # tag all segments

Folders

otter folders list
otter folders list --json
otter folders create "My Folder"
otter folders create "My Folder" --json
otter folders rename FOLDER_ID "New Name"

Groups

otter groups list
otter groups list --json

Auth & Config

otter login                  # authenticate (saves to keyring)
otter user                   # show current user
otter logout                 # clear credentials
otter config show            # show config
otter config clear           # clear config

Important: Speech IDs

Otter.ai speeches have two identifiers:

  • speech_id (e.g. 7KR9X3VNPLQ8JTMS) -- internal ID, does NOT work with API
  • otid (e.g. Xp4mRtK9wLs2vNcQjY7hBfA3eZd) -- used in all CLI commands

All CLI commands expect the otid. Use otter speeches list to find them, or:

otter speeches list --json | jq '.speeches[].otid'

Markdown Frontmatter

When downloading as md, YAML frontmatter is included by default. Customize with --frontmatter-fields:

# Use defaults
otter speeches download SPEECH_ID -f md

# Pick specific fields
otter speeches download SPEECH_ID -f md --frontmatter-fields "title,speech_id,summary"

# Disable frontmatter
otter speeches download SPEECH_ID -f md --frontmatter-fields none

Default fields: title, summary, speakers, start_time, end_time, duration_seconds, source, speech_id, folder, folder_id

All available fields: title, summary, speakers, start_time, end_time, duration_seconds, source, speech_id, folder, folder_id, otid, created_at, transcript_updated_at, language, transcript_count, process_status

Note: speech_id in frontmatter is the Otter internal speech_id; the SPEECH_ID argument in commands still expects the otid.

Usage Examples

List recent meetings:

otter speeches list --days 7

Get a transcript:

otter speeches list --days 1           # find the speech ID
otter speeches get SPEECH_ID           # get full transcript

Search for a topic across meetings:

otter speeches list --days 30 --json   # find relevant speech IDs
otter speeches search "budget" SPEECH_ID

Download as markdown:

otter speeches list                    # find the speech ID
otter speeches download SPEECH_ID -f md

Download as PDF:

otter speeches list                    # find the speech ID
otter speeches download SPEECH_ID -f pdf

Filter by folder:

otter speeches list --folder "Work"

Organize meetings into folders:

otter folders create "Q1 Planning"
otter speeches move SPEECH_ID --folder "Q1 Planning"

Upload a recording:

otter speeches upload recording.mp4

Notes

  • Most commands support --json for machine-readable output. Prefer --json when you need to parse or extract specific data.
  • When asked about a specific meeting, first list recent speeches to find the otid, then use speeches get to retrieve the transcript.
  • For broad searches across meetings, list speeches first, then search within each relevant one.
  • Download supports txt, pdf, mp3, docx, srt, and md formats. The md format is generated locally from transcript data and includes speaker labels with YAML frontmatter.
  • Both speeches list --folder and speeches move --folder accept a folder name (case-insensitive) or a numeric folder ID. Use otter folders list to see available folders and their IDs.
  • Use -n / --page-size to limit the number of results (not --limit).
  • --source defaults to owned. Use shared or all to include shared speeches.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.17%
按下载量换算2,318

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills