@hasna/recordings 0.1.9 → 0.1.11
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.
- package/.takumi/settings.local.json +7 -0
- package/README.md +52 -0
- package/bun.lock +2 -2
- package/dist/cli/index.js +3866 -3279
- package/dist/index.js +3848 -3174
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/enhancer.d.ts +2 -2
- package/dist/lib/enhancer.d.ts.map +1 -1
- package/dist/mcp/index.js +9865 -8535
- package/package.json +3 -3
- package/src/__tests__/enhancer.test.ts +65 -0
- package/src/cli/index.ts +3 -131
- package/src/lib/config.ts +56 -16
- package/src/lib/enhancer.ts +17 -11
- package/src/mcp/index.ts +2 -0
- package/src/native/Recordings/Recordings/FnKeyMonitor.swift +58 -49
- package/src/native/Recordings/Recordings/MenuBarPopover.swift +247 -118
- package/src/native/Recordings/Recordings/ProjectStore.swift +126 -0
- package/src/native/Recordings/Recordings/RecordingEngine.swift +157 -57
- package/src/native/Recordings/Recordings/RecordingsApp.swift +12 -4
- package/src/native/Recordings/Recordings/SettingsView.swift +147 -36
- package/src/native/RecordingsHelper.swift +0 -395
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# @hasna/recordings
|
|
2
|
+
|
|
3
|
+
Speech-to-text recording tool with MCP and CLI — records, transcribes, and optionally enhances text using AI
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@hasna/recordings)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install -g @hasna/recordings
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## CLI Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
recordings --help
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
- `recordings record`
|
|
21
|
+
- `recordings transcribe <file>`
|
|
22
|
+
- `recordings list`
|
|
23
|
+
- `recordings show <id>`
|
|
24
|
+
- `recordings search <query>`
|
|
25
|
+
- `recordings delete <id>`
|
|
26
|
+
- `recordings stats`
|
|
27
|
+
|
|
28
|
+
## MCP Server
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
recordings-mcp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
17 tools available.
|
|
35
|
+
|
|
36
|
+
## Cloud Sync
|
|
37
|
+
|
|
38
|
+
This package supports cloud sync via `@hasna/cloud`:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
cloud setup
|
|
42
|
+
cloud sync push --service recordings
|
|
43
|
+
cloud sync pull --service recordings
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Data Directory
|
|
47
|
+
|
|
48
|
+
Data is stored in `~/.hasna/recordings/`.
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
Apache-2.0 -- see [LICENSE](LICENSE)
|
package/bun.lock
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"": {
|
|
6
6
|
"name": "@hasna/recordings",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@hasna/cloud": "^0.1.
|
|
8
|
+
"@hasna/cloud": "^0.1.24",
|
|
9
9
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
10
10
|
"chalk": "^5.4.1",
|
|
11
11
|
"commander": "^13.1.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
},
|
|
21
21
|
"packages": {
|
|
22
|
-
"@hasna/cloud": ["@hasna/cloud@0.1.
|
|
22
|
+
"@hasna/cloud": ["@hasna/cloud@0.1.30", "", { "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "commander": "^13.1.0", "pg": "^8.13.3", "zod": "^3.24.2" }, "bin": { "cloud": "dist/cli/index.js", "cloud-mcp": "dist/mcp/index.js" } }, "sha512-qpDiJNsU/K1cFDk1l+xUA1xEEq8+Q37OdAz/ec0LwrQiA1HyWukzR8Lh7igkOqBT2foa46cxhB7yGnfiT2cWrA=="],
|
|
23
23
|
|
|
24
24
|
"@hono/node-server": ["@hono/node-server@1.19.11", "", { "peerDependencies": { "hono": "^4" } }, "sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g=="],
|
|
25
25
|
|