otter-axi 0.1.0 → 1.0.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 +4 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -17,10 +17,13 @@ any agent session or shell, with refresh handled silently.
|
|
|
17
17
|
## Install & authenticate
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
|
|
20
|
+
npm install -g otter-axi # install the CLI on your PATH
|
|
21
|
+
otter-axi auth login # one-time browser approval
|
|
21
22
|
otter-axi doctor # config → credentials → MCP reachable
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
Or run any command ad hoc without installing: `npx -y otter-axi <command>`.
|
|
26
|
+
|
|
24
27
|
Tokens are stored in `~/.config/otter-axi/config.json` (mode `0600`) and refreshed
|
|
25
28
|
automatically; they are never printed. Read-only scopes: `profile:read`, `conversations:read`.
|
|
26
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "otter-axi",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Find and pull Otter.ai meeting transcripts from the terminal with token-efficient output.",
|
|
6
6
|
"bin": {
|
|
@@ -37,6 +37,14 @@
|
|
|
37
37
|
"vitest": "^4.1.9"
|
|
38
38
|
},
|
|
39
39
|
"author": "Jarvus Innovations",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/JarvusInnovations/otter-axi.git"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/JarvusInnovations/otter-axi#readme",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/JarvusInnovations/otter-axi/issues"
|
|
47
|
+
},
|
|
40
48
|
"keywords": [
|
|
41
49
|
"otter",
|
|
42
50
|
"otter.ai",
|