Claude Code Plugin

Read, search, and summarize your Echosy meeting transcripts directly from Claude Code — Anthropic's CLI for Claude.

What is it?

The Echosy plugin for Claude Code lets you work with your .echo transcript files without leaving the terminal. List meetings, read transcripts, search across all your recordings, and ask Claude to summarize or extract action items — all in one workflow.

Installation

Install from the Echosy releases repository:

/plugin marketplace add woponi/echosy-releases

Or load directly from a local directory:

claude --plugin-dir /path/to/echosy-plugin
You need Claude Code installed to use this plugin. It works with any project that has .echo files.

Commands

/echosy list

List all .echo transcript files in your project.

$ /echosy list
/echosy transcript <file>

Read the full markdown transcript of a recording.

$ /echosy transcript "standup"
/echosy info <file>

Show metadata — date, duration, and segment count.

$ /echosy info "Q1 review"
/echosy summary <file>

Output transcript with metadata header, ready for Claude to summarize.

$ /echosy summary "client call"
/echosy search <keyword>

Search a keyword across all transcripts in the project.

$ /echosy search "budget"
/echosy json <file>

Get raw JSON segments with precise start/end timestamps.

$ /echosy json "interview"

File Resolution

You don't need to type the full filename. The plugin supports flexible matching:

InputWhat it does
transcript/Meeting_2026-03-10.echoFull path — exact match
Meeting_2026-03-10.echoFilename — looks in transcript/ directory
MeetingKeyword — fuzzy matches against all filenames

Typical Workflows

Summarize a meeting

1. /echosy list

2. /echosy summary "standup"

3. "Extract action items from this transcript"

Find a discussion topic

1. /echosy search "pricing"

2. /echosy transcript "client call"

3. "What was decided about pricing?"

The .echo File Format

.echo files are ZIP archives exported by Echosy, containing:

FileDescription
manifest.jsonMetadata — date, duration, segment count, source
transcript.mdHuman-readable markdown transcript with timestamps
transcript.jsonMachine-readable segments with start/end times
audio.flacAudio recording (not read by the plugin)

Configuration

By default, the plugin looks for .echo files in the transcript/ directory under your project root. To change this, set the environment variable:

export ECHOSY_TRANSCRIPT_DIR="/path/to/your/transcripts"

Source Code

The plugin is open source and lives in the echosy-releases repository on GitHub.