@vibeprospecting/vpai 0.1.4 → 0.1.6
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 +7 -10
- package/dist/{vpai.js → vpai.cjs} +18141 -14841
- package/package.json +5 -4
- package/dist/vpai +0 -0
package/README.md
CHANGED
|
@@ -42,22 +42,21 @@ npm run build
|
|
|
42
42
|
|
|
43
43
|
Produces:
|
|
44
44
|
|
|
45
|
-
- `dist/vpai.js` –
|
|
46
|
-
- `dist/vpai` – Standalone executable (no runtime; Linux/macOS)
|
|
45
|
+
- `dist/vpai.js` – Node-compatible bundle (runs with Node.js)
|
|
47
46
|
|
|
48
47
|
### Run without installing
|
|
49
48
|
|
|
50
49
|
```bash
|
|
51
50
|
npm run call -- <command> [options]
|
|
52
51
|
# or
|
|
53
|
-
|
|
52
|
+
node dist/vpai.js <command> [options]
|
|
54
53
|
```
|
|
55
54
|
|
|
56
55
|
---
|
|
57
56
|
|
|
58
57
|
## Prerequisites
|
|
59
58
|
|
|
60
|
-
- [
|
|
59
|
+
- [Node.js](https://nodejs.org) (required for running and building)
|
|
61
60
|
- OAuth access to Explorium MCP
|
|
62
61
|
|
|
63
62
|
---
|
|
@@ -117,15 +116,13 @@ vpai autocomplete --args '{"field":"linkedin_category","query":"software"}'
|
|
|
117
116
|
|
|
118
117
|
## Production
|
|
119
118
|
|
|
120
|
-
###
|
|
119
|
+
### Deployment
|
|
121
120
|
|
|
122
|
-
|
|
121
|
+
Install via npm for production use. Node.js is required on the target system.
|
|
123
122
|
|
|
124
123
|
```bash
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
# or
|
|
128
|
-
cp dist/vpai ~/bin/vpai
|
|
124
|
+
npm install -g @vibeprospecting/vpai
|
|
125
|
+
# or copy dist/vpai.js and add to PATH (Node.js required)
|
|
129
126
|
```
|
|
130
127
|
|
|
131
128
|
### Auth
|