echook

(β˜… 84)

πŸ”Š echook β€” AI-operated audio notifications for Claude Code, Cursor IDE & Codex CLI β€” 26 hooks, voice + chime themes, TTS, webhooks, rate-limit alerts, status line. Tell your AI agent to install β€” natural language forever after.

Owner Repos

server-google-news β˜… 126

【Star-crossed coders unite!⭐️】Model Context Protocol (MCP) server implementation providing Google News search capabilities via SerpAPI, with automatic news categorization and multi-language support.

TypeScript
douyin-mall-go-template β˜… 53

【Star us and watch this project grow! πŸŒ±β­οΈγ€‘A comprehensive Go e-commerce template project demonstrating best practices in Go web development. Built with Gin framework and MySQL, featuring user authentication, product management, shopping cart, and order processing. Perfect for Go beginners to learn real-world application development.

Go
automotive-repair-management-system β˜… 31

【Star-crossed coders unite!⭐️】A comprehensive web-based automotive repair shop management system built with Flask and MySQL. Features separate interfaces for technicians and administrators to manage repair jobs, customers, parts inventory, and billing.

HTML
tencent-meeting-video-downloader β˜… 28

【Stars are free hugs for code - spread the love! πŸ€—β­οΈγ€‘Chrome extension to easily download Tencent Meeting recording videos with one click. Generate reliable download commands and save recordings locally.

JavaScript
douyin-mall-java-template β˜… 24

【Star us and watch this project grow! πŸŒ±β­οΈγ€‘A Spring Boot-based e-commerce microservices template with comprehensive setup guides. Ideal for learning microservices architecture and building scalable e-commerce applications. Features include user authentication, product management, order processing, and AI integration capabilities.

Java
server-google-jobs β˜… 22

【Every star you give feeds a hungry developer's motivation!⭐️】A Model Context Protocol (MCP) server implementation that provides Google Jobs search capabilities via SerpAPI integration. Features multi-language support, comprehensive search parameters, and smart error handling.

JavaScript

File Explorer

ZIP Download
  • .gitignore
  • AGENTS.md
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • GOVERNANCE.md
  • LICENSE
  • llms.txt
  • README.md
  • SECURITY.md
  • SUPPORT.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

πŸ”

ffplay

View Details β–Ό

A simple and portable media player using the FFmpeg libraries and the SDL library.

ffplay {{path/to/file}}

Play a media file:

ffplay -nodisp {{path/to/file}}

Play audio from a media file without a GUI:

ffmpeg -i {{path/to/file}} -c {{copy}} -f {{media_format}} - | ffplay -

Play media passed by `ffmpeg` through `stdin`:

πŸ”

logout

View Details β–Ό

Exit a login shell.

logout

Exit a login shell:

logout {{exit_code}}

Exit a login shell and specify a return value:

πŸ”

python

View Details β–Ό

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

πŸ”

vim

View Details β–Ό

Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation.
Pressing `<i>` in normal mode enters insert mode. Pressing `<Esc>` goes back to normal mode, which enables the use of Vim commands.
See also: `vimdiff`, `vimtutor`, `nvim`, `gvim`.

vim {{path/to/file}}

Open a file:

vim +{{line_number}} {{path/to/file}}

Open a file at a specified line number:

<:>help<Enter>

View Vim's help manual:

πŸ”

aplay

View Details β–Ό

Sound player for ALSA soundcard driver.

aplay {{path/to/file}}

Play a specific file (sampling rate, bit depth, etc. will be automatically determined for the file format):

aplay {{[-d|--duration]}} 10 {{[-r|--rate]}} 2500 {{path/to/file}}

Play the first 10 seconds of a specific file at 2500 Hz:

aplay {{[-c|--channels]}} 1 {{[-t|--file-type]}} raw {{[-r|--rate]}} 22050 {{[-f|--format]}} mu_law {{path/to/file}}

Play the raw file as a 22050 Hz, mono, 8-bit, Mu-Law `.au` file:

πŸ”

mpg123

View Details β–Ό

Console MPEG audio player.

mpg123 {{path/to/file1.mp3 path/to/file2.mp3 ...}}

Play the specified mp3 files:

cat {{file.mp3}} | mpg123 -

Play the mp3 from `stdin`:

<f>

Jump forward to the next song:

πŸ”

afplay

View Details β–Ό

Command-line audio player.

afplay {{path/to/file}}

Play a sound file (waits until playback ends):

afplay --rate {{2}} {{path/to/file}}

Play a sound file at 2x speed (playback rate):

afplay --rate {{0.5}} {{path/to/file}}

Play a sound file at half speed:

πŸ”

compact

View Details β–Ό

Display or change the compression state of files and directories on NTFS partitions.

compact

Display the compression status of files in the current directory:

compact /c {{path\to\file}}

Compress a specific file:

compact /u {{path\to\file}}

Uncompress a specific file:

// repository documentation