plaud 0.1.0 → 0.1.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.
- package/README.md +31 -24
- package/package.json +15 -2
package/README.md
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
1
|
-
# plaud
|
|
1
|
+
# plaud
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+

|
|
2
5
|
|
|
3
6
|
Export all your Plaud recordings with speaker-labeled transcripts and optional AI summaries.
|
|
4
7
|
|
|
8
|
+
## Disclaimer
|
|
9
|
+
|
|
10
|
+
This is an **unofficial** project (not affiliated with Plaud). It uses a captured Plaud bearer token and private web endpoints, so it may break if Plaud changes their web app.
|
|
11
|
+
|
|
12
|
+
Security note: **do not** share tokens or `*.har` files (HARs often contain `Authorization` headers).
|
|
13
|
+
|
|
14
|
+
## Install (npm)
|
|
15
|
+
|
|
16
|
+
Global (recommended for frequent use):
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm i -g plaud
|
|
20
|
+
plaud auth login
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
No install (convenient for agents/one-offs):
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx -y plaud auth status --json
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Install (skill)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx -y skills add danielgwilson/plaud --skill plaud -g -y
|
|
33
|
+
```
|
|
34
|
+
|
|
5
35
|
## Install (local)
|
|
6
36
|
|
|
7
37
|
```bash
|
|
@@ -76,26 +106,3 @@ Notes:
|
|
|
76
106
|
## Agent-first JSON contract
|
|
77
107
|
|
|
78
108
|
See `docs/CONTRACT_V1.md`.
|
|
79
|
-
|
|
80
|
-
## Install (npm)
|
|
81
|
-
|
|
82
|
-
Global (recommended for frequent use):
|
|
83
|
-
|
|
84
|
-
```bash
|
|
85
|
-
npm i -g plaud
|
|
86
|
-
plaud auth login
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
No install (convenient for agents/one-offs):
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
npx -y plaud auth status --json
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
## Install (skill)
|
|
96
|
-
|
|
97
|
-
Once this lives in a GitHub repo, you’ll be able to add the agent skill with:
|
|
98
|
-
|
|
99
|
-
```bash
|
|
100
|
-
npx -y skills add danielgwilson/plaud --skill plaud -g -y
|
|
101
|
-
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plaud",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI to export Plaud recordings
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Agent-first CLI + skill to export/download Plaud recordings (transcripts, summaries, audio)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Daniel G Wilson",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"plaud",
|
|
10
|
+
"cli",
|
|
11
|
+
"export",
|
|
12
|
+
"transcript",
|
|
13
|
+
"audio",
|
|
14
|
+
"agent",
|
|
15
|
+
"skills"
|
|
16
|
+
],
|
|
8
17
|
"repository": {
|
|
9
18
|
"type": "git",
|
|
10
19
|
"url": "git+https://github.com/danielgwilson/plaud.git"
|
|
@@ -13,6 +22,9 @@
|
|
|
13
22
|
"url": "https://github.com/danielgwilson/plaud/issues"
|
|
14
23
|
},
|
|
15
24
|
"homepage": "https://github.com/danielgwilson/plaud#readme",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
16
28
|
"bin": {
|
|
17
29
|
"plaud": "dist/cli.js"
|
|
18
30
|
},
|
|
@@ -25,6 +37,7 @@
|
|
|
25
37
|
"pretest": "npm run build",
|
|
26
38
|
"test": "tsx --test",
|
|
27
39
|
"start": "node dist/cli.js",
|
|
40
|
+
"prepublishOnly": "npm test",
|
|
28
41
|
"prepare": "npm run build"
|
|
29
42
|
},
|
|
30
43
|
"files": [
|