Kommodo Skill banner
touchapp touchapp

Kommodo Skill

AI community

Description

Claude Code skill for the Kommodo API. Search recordings, read AI summaries, download transcripts, rename/retag, and publish recordings as pages.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

kommodo-skill

A [Claude Code](https://docs.claude.com/en/docs/claude-code) skill that wraps the [Kommodo](https://kommodo.ai) public API. Ask the agent for "recordings from last week on Acme" and it composes the HTTP calls for you — search, read AI summaries, download transcripts, rename, retag, and publish recordings as pages.

We are actively working on this API. Feedback is welcome! feedback@kommodo.ai


What you get

Seven named tools the agent can invoke by name, each mapped 1:1 to an HTTP endpoint:

Tool What it does
find_recordings Paginated list with filters (date range, title, team member, folder, has-page)
get_recording Full envelope including AI summary, chapters, action items
get_transcript JSON cues or WEBVTT, server-proxied
list_folders Folders you own or have access to
list_team_members Team owner + member list (team-owner-only)
update_recording Rename, retag, update description, move folder (write scope)
create_page Convert a recording into a published page (write scope)

See [`SKILL.md`](SKILL.md) for the full tool reference, [`references/`](references/) for response schemas and filter recipes.

Integrating without an agent (cron jobs, ETL, plain HTTP)? Start at [`references/api-quickstart.md`](references/api-quickstart.md) — Python sample for nightly transcript sync, full endpoint and error tables.


Install (pick one)

One-shot installer

git clone https://github.com/kommodoai/kommodo-skill.git
./kommodo-skill/install.sh

That symlinks `~/.claude/skills/kommodo` back to the cloned repo, so `git pull` upgrades the skill in place.

Variations:

./install.sh --copy                # copy files instead of symlink
./install.sh --project ./my-app    # install into my-app/.claude/skills/kommodo
./install.sh --help

Manual

git clone https://github.com/kommodoai/kommodo-skill.git ~/kommodo-skill
mkdir -p ~/.claude/skills
ln -s ~/