
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@marswave/coli
Advanced tools
Core library for Cola. Provides essential capabilities commonly used by agents.
npm install -g @marswave/coli
Usage
$ coli <command> [options]
Commands
asr Transcribe an audio file using speech recognition
tts Speak text using native text-to-speech
cloud-tts Generate speech using ListenHub OpenAPI
Examples
$ coli asr recording.m4a
$ coli asr -j recording.m4a
$ coli tts "Hello world"
$ coli tts -v Samantha -r 200 "Hello world"
$ coli cloud-tts --language en "Hello world"
$ coli cloud-tts --voice cozy-man-english "Hello world"
npm install @marswave/coli
import {ensureModels, runAsr, streamAsr, runTts} from '@marswave/coli';
// ASR
await ensureModels();
await runAsr('recording.m4a', {json: false, model: 'sensevoice'});
// Streaming ASR (see docs/asr.md for details)
await streamAsr(audioSource, {
onResult(result) {
console.log(result.text, result.isFinal ? '(final)' : '(partial)');
},
});
// TTS
await runTts('Hello world', {voice: 'Samantha', rate: 200});
MIT
FAQs
A CLI for the Cola
The npm package @marswave/coli receives a total of 148 weekly downloads. As such, @marswave/coli popularity was classified as not popular.
We found that @marswave/coli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.