
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fireflies-api
Advanced tools
TypeScript SDK for Fireflies.ai with realtime transcription streaming.
Disclaimer: This is an unofficial, community-built open source SDK. It is NOT affiliated with, endorsed by, or associated with Fireflies.ai Inc. This project provides a TypeScript SDK and CLI that uses the publicly available Fireflies API.
npm install fireflies-api
import { FirefliesClient } from 'fireflies-api';
const client = new FirefliesClient({
apiKey: process.env.FIREFLIES_API_KEY!,
});
// List recent transcripts
const transcripts = await client.transcripts.list({ limit: 10 });
for (const t of transcripts) {
console.log(`${t.title} - ${t.date}`);
}
Stream live transcription from an active meeting:
for await (const chunk of client.realtime.stream('meeting-id')) {
console.log(`${chunk.speaker_name}: ${chunk.text}`);
}
For Fireflies API field details, see docs.fireflies.ai.
Use Fireflies directly in Claude Code with slash commands:
# Install the plugin
/plugin marketplace add BjoernSchotte/fireflies-api
/plugin install fireflies@fireflies-api
Set your API key before launching Claude Code:
export FIREFLIES_API_KEY="your-api-key"
claude
Available commands:
/ff-transcripts - List, get, analyze transcripts/ff-search - Full-text search/ff-insights - Meeting analytics/ff-meetings - Active meetings, add bot/ff-realtime - Live transcription streaming/ff-export - Export to markdown/JSONSee Claude Code Plugin docs for full documentation.
MIT
FAQs
TypeScript SDK for Fireflies.ai API with Realtime WebSocket support
We found that fireflies-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.