fireflies-api 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  TypeScript SDK for [Fireflies.ai](https://fireflies.ai) with realtime transcription streaming.
4
4
 
5
+ > **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.
6
+
5
7
  ## Features
6
8
 
7
9
  - Full GraphQL API coverage
@@ -59,6 +61,32 @@ for await (const chunk of client.realtime.stream('meeting-id')) {
59
61
 
60
62
  For Fireflies API field details, see [docs.fireflies.ai](https://docs.fireflies.ai).
61
63
 
64
+ ## Claude Code Plugin
65
+
66
+ Use Fireflies directly in [Claude Code](https://claude.com/claude-code) with slash commands:
67
+
68
+ ```bash
69
+ # Install the plugin
70
+ /plugin marketplace add BjoernSchotte/fireflies-api
71
+ /plugin install fireflies@fireflies-api
72
+ ```
73
+
74
+ Set your API key before launching Claude Code:
75
+ ```bash
76
+ export FIREFLIES_API_KEY="your-api-key"
77
+ claude
78
+ ```
79
+
80
+ Available commands:
81
+ - `/ff-transcripts` - List, get, analyze transcripts
82
+ - `/ff-search` - Full-text search
83
+ - `/ff-insights` - Meeting analytics
84
+ - `/ff-meetings` - Active meetings, add bot
85
+ - `/ff-realtime` - Live transcription streaming
86
+ - `/ff-export` - Export to markdown/JSON
87
+
88
+ See [Claude Code Plugin docs](docs/claude-code-plugin.md) for full documentation.
89
+
62
90
  ## License
63
91
 
64
92
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fireflies-api",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "description": "TypeScript SDK for Fireflies.ai API with Realtime WebSocket support",
6
6
  "exports": {
@@ -37,7 +37,8 @@
37
37
  "dist"
38
38
  ],
39
39
  "bin": {
40
- "fireflies": "./dist/cli/index.js"
40
+ "fireflies": "./dist/cli/index.js",
41
+ "fireflies-api": "./dist/cli/index.js"
41
42
  },
42
43
  "scripts": {
43
44
  "build": "tsup",