Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

geode-transcribe晶洞转录

Agent Skill

geode-transcribe 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,115

周安装

89

GitHub Stars

1

下载量

740
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install geode-transcribe

简介

geode-transcribe 在本地转录音频/视频文件并生成摘要,支持批量处理。

  • 适用于 OpenClaw 中会议记录整理、访谈转写或多媒体内容归档场景。
  • 通过 clawhub 安装,重度用户可按统一费率获得无限制使用权限。
  • 使用前应确保本地算力充足,并注意敏感语音内容的存储安全。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
Geode On-device Transcribe & Summary
description
Transcribe and summarize audio/video files locally. Unlimited usage at a flat rate for heavy users.

GeodeCLI Transcription — OpenClaw Integration Guide

This document describes the recommended async integration between OpenClaw, GeodeCLI, and Geode.app.

Architecture:

  • GeodeCLI: the CLI entry called by OpenClaw.
  • Geode.app: the worker app, launched with --worker.
  • Shared storage: the App Group container group.com.privycloudless.privyecho.

If the Geode app is not installed, OpenClaw should guide the user to install it from the Mac App Store:

  • App Store URL (macOS):

https://apps.apple.com/app/apple-store/id6752685916?pt=127800752&ct=openclaw&mt=8


1. Shared Paths

Both GeodeCLI and Geode.app use the same App Group container:

  • App Group ID: group.com.privycloudless.privyecho
  • Shared root:

~/Library/Group Containers/group.com.privycloudless.privyecho/

  • Recommended audio inbox:

~/Library/Group Containers/group.com.privycloudless.privyecho/CLIInbox/

  • Task JSON directory:

~/Library/Group Containers/group.com.privycloudless.privyecho/CLITasks/

  • Transcript / summary output directory:

~/Library/Group Containers/group.com.privycloudless.privyecho/CLITranscriptions/

If the source audio is outside the shared container, copy it into CLIInbox/ first.


2. Async API

2.1 Submit one task

OpenClaw should call the bundled GeodeCLI:

"/Applications/Geode.app/Contents/Helpers/GeodeCLI" --enqueue-transcription \
  --audio "/Users/.../Library/Group Containers/group.com.privycloudless.privyecho/CLIInbox/audio.m4a" \
  --language zh \
  [--format txt|md|docx] [--summary]

GeodeCLI auto-detects the enclosing Geode.app and launches Geode --worker automatically.

Only during development or non-default installs, you may need:

"/path/to/GeodeCLI" --enqueue-transcription \
  --audio "/Users/.../CLIInbox/audio.m4a" \
  --language zh \
  --app-bundle "/path/to/Geode.app"

Behavior:

  • Async mode accepts exactly one --audio per task.
  • GeodeCLI persists a task JSON file into the App Group container.
  • GeodeCLI launches Geode --worker and returns immediately.

2.2 Success output

  • stdout:

TASK_ID=<uuid>

  • exit code:

0

Example:

TASK_ID=123e4567-e89b-12d3-a456-426614174000

2.3 Error output

  • stderr: Error: <CODE> plus optional English detail lines
  • Exit code:

- 1: runtime error - 2: invalid arguments

Common async-specific codes:

  • TASK_CREATE_FAILED
  • TASK_READ_FAILED
  • WORKER_LAUNCH_FAILED

3. Query Status

After receiving a task id, OpenClaw should poll:

"/Applications/Geode.app/Contents/Helpers/GeodeCLI" --task-status 123e4567-e89b-12d3-a456-426614174000

3.1 Success output

  • stdout: one JSON object
  • Exit code: 0

Example:

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "recordingId": "6a9b17c5-6c9d-4f0b-8401-f0d7f06a5e48",
  "audioPath": "/Users/.../Library/Group Containers/group.com.privycloudless.privyecho/CLIInbox/audio.m4a",
  "language": "zh",
  "outputFormat": "txt",
  "summarize": true,
  "status": "summarizing",
  "transcriptPath": "/Users/.../Library/Group Containers/group.com.privycloudless.privyecho/CLITranscriptions/audio_2026-03-18T07-00-00Z.txt",
  "summaryPath": null,
  "errorCode": null,
  "errorDetail": null,
  "workerId": "pid-12345",
  "createdAt": "2026-03-18T07:00:00Z",
  "updatedAt": "2026-03-18T07:02:10Z",
  "startedAt": "2026-03-18T07:00:02Z",
  "finishedAt": null
}

3.2 Status values

StatusMeaning
queuedTask is persisted and waiting for a worker.
runningTranscription is in progress.
summarizingTranscript is written; AI summary is still running.
succeededTask completed successfully.
failedTask failed. Check errorCode / errorDetail.
cancelledReserved for future use.

3.3 Task status error

  • stderr: Error: TASK_NOT_FOUND
  • Exit code: 1

4. Common Error Codes

These codes may appear in task status JSON:

CodeMeaning
INVALID_ARGSMissing required arguments or invalid usage.
AUDIO_NOT_FOUNDAudio file does not exist.
AUDIO_UNREADABLEAudio file cannot be opened.
NOT_LOGGED_INUser is not logged in to Geode.
INSUFFICIENT_QUOTANot enough transcription quota.
EMPTY_RESULTTranscription returned no text.
OUTPUT_DIR_CREATE_FAILEDFailed to create the output directory.
OUTPUT_WRITE_FAILEDFailed to write an output file.
TRANSCRIPTION_FAILEDInternal transcription failure.
SUMMARY_NOT_LOGGED_INUser is not logged in for AI summary.
SUMMARY_INSUFFICIENT_QUOTANot enough AI summary quota.
SUMMARY_FAILEDAI summary generation failed.
WORKER_INTERRUPTEDThe worker stopped before finishing the task.

5. Recommended Workflow

When the user wants to transcribe an audio file and later retrieve the result:

  1. Copy the source audio into:

~/Library/Group Containers/group.com.privycloudless.privyecho/CLIInbox/

  1. Call:

/Applications/Geode.app/Contents/Helpers/GeodeCLI --enqueue-transcription --audio "P" --language <lang> [--format ...] [--summary]

  1. Read TASK_ID=<uuid> from stdout.
  2. Poll:

/Applications/Geode.app/Contents/Helpers/GeodeCLI --task-status <uuid>

  1. When status becomes succeeded:

- read transcriptPath - read optional summaryPath - copy result files to the user-requested destination if needed

  1. When status becomes failed:

- use errorCode for branching logic - use errorDetail for logs or user-facing context

Recommended polling behavior:

  • first poll after 1 to 2 seconds
  • then every 2 to 5 seconds
  • stop polling when status is succeeded, failed, or cancelled

6. Summary

  • OpenClaw should call the bundled GeodeCLI inside Geode.app for async submission and status polling.
  • GeodeCLI returns TASK_ID=<uuid> immediately.
  • Geode.app performs the actual transcription in --worker mode.
  • Audio, task JSON, transcript, and summary files all live in the shared App Group container.

7. Agent Instructions

  • This skill is designed for asynchronous transcription. Tasks may take a long time to complete.

Submission behavior

  • When the user requests audio transcription, use --enqueue-transcription to submit a task.
  • Always return the TASK_ID immediately after submission.
  • Do NOT wait for transcription to finish (non-blocking behavior).
  • After submission, allow the conversation to continue normally.

Progress & retrieval

  • Only check task status when:

- the user explicitly asks for progress or results, OR - you proactively decide to check in the background (without blocking the user conversation).

  • Poll task status using --task-status <TASK_ID>.

While task is running

  • If the task is still in queued, running, or summarizing:

- Inform the user that the task is still in progress. - Suggest checking again later. - Do NOT block or repeatedly poll in a tight loop.

Completion

  • When status is succeeded:

- Return the transcriptPath. - Return summaryPath if available.

Failure handling

  • When status is failed:

- Explain the failure using errorCode. - Include errorDetail if available. - Suggest corrective actions if applicable (e.g., login, quota, file issues).

Environment handling

  • If the Geode app is not installed:

- Guide the user to install it from the App Store before retrying.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.38%
按下载量换算528

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills