c

cortex-plugin-meeting-transcriber

ESM
v1.0.0MIT

Official CortexPrism plugin

0.00CortexPrism
communicationcortex-plugindevelopmentesmmessagingnotifications

Install Command

$ cortex plugin install marketplace:cortexprism.io/plugins/cortex-plugin-meeting-transcriber
Website RepositoryLicense: MITEntry: mod.ts

Configuration

Plugin Type
ESM
Entry Point
mod.ts
License
MIT

Capabilities

toolsshell:runfs:read

Tags

communicationcortex-plugindevelopmentesmmessagingnotifications

Statistics

Downloads
0
Rating
0.0
/ 5.0
Version
v1.0.0
Published
June 15, 2026

Reviews (0)

No reviews yet. Be the first to rate this plugin!

README

cortex-plugin-meeting-transcriber

Ingest audio/video files, transcribe via Whisper, generate structured meeting notes.

Installation

cortex plugin install marketplace:cortex-plugin-meeting-transcriber
cortex plugin install github:CortexPrism/cortex-plugin-meeting-transcriber
cortex plugin install ./manifest.json

Tools

transcribe_audio

Transcribe an audio/video file.

Parameters:

  • file_path (string, required) — Path to audio or video file
  • language (string, optional) — ISO language code (e.g. "en")
  • model (string, optional, default "base") — tiny, base, small, medium, large
  • output_format (string, optional, default "text") — text, srt, json

summarize_meeting

Generate structured meeting notes from a transcript.

Parameters:

  • transcript (string, required) — Full meeting transcript
  • meeting_title (string, optional) — Title of the meeting
  • participants (string, optional) — Comma-separated names

extract_action_items

Extract action items from a transcript.

Parameters:

  • transcript (string, required) — Full meeting transcript

meeting_search

Search across meeting transcripts.

Parameters:

  • query (string, required) — Search query
  • max_results (number, optional, default 10) — Maximum results

transcribe_status

Check if Whisper is installed.

Configuration

{
  "plugins": {
    "cortex-plugin-meeting-transcriber": {
      "enabled": true,
      "config": {
        "whisperModel": "base",
        "defaultLanguage": "en"
      }
    }
  }
}

Capabilities

  • tools — Provides tool implementations
  • shell:run — Runs Whisper CLI
  • fs:read — Reads audio/video files

License

MIT — See LICENSE file

Published June 15, 2026 · Updated June 15, 2026