v16.ai 0.1.0 → 0.1.2

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 CHANGED
@@ -13,21 +13,31 @@ curl -fsSL https://v16.ai/install | sh
13
13
  Or via npm:
14
14
 
15
15
  ```bash
16
- npm install -g v16
16
+ npm install -g v16.ai
17
17
  ```
18
18
 
19
19
  ## Quick Start
20
20
 
21
21
  1. **Sign up** at [v16.ai](https://v16.ai)
22
22
 
23
- 2. **Get your token** from [v16.ai/dashboard](https://v16.ai/dashboard)
23
+ 2. **Get your token** from [v16.ai/settings](https://v16.ai/settings)
24
+ - Click "Show token" to reveal your token
25
+ - Click the copy button to copy the full connect command
24
26
 
25
- 3. **Connect your machine:**
27
+ 3. **Connect your machine** (token required):
26
28
  ```bash
27
29
  v16 connect --token YOUR_TOKEN
28
30
  ```
29
31
 
30
- 4. **Start using V16** - Go to [v16.ai](https://v16.ai) and tell the agent what to do
32
+ Or set as environment variable:
33
+ ```bash
34
+ export V16_TOKEN=YOUR_TOKEN
35
+ v16 connect
36
+ ```
37
+
38
+ 4. **Start using V16** - Go to the [dashboard](https://v16.ai/dashboard) and tell the agent what to do
39
+
40
+ > **Note:** A valid token is required to connect. Get yours at [v16.ai/settings](https://v16.ai/settings)
31
41
 
32
42
  ## What V16 Can Do
33
43
 
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ const ora_1 = __importDefault(require("ora"));
48
48
  const puppeteer_1 = __importDefault(require("puppeteer"));
49
49
  // Configuration
50
50
  const DEFAULT_SERVER = process.env.V16_SERVER || 'https://api.v16.ai';
51
- const VERSION = '0.1.0';
51
+ const VERSION = '0.1.2';
52
52
  // State
53
53
  let socket = null;
54
54
  let browser = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v16.ai",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "V16 - General AI Agent. Connect your machine and let AI run code, execute commands, automate browsers, and get real work done.",
5
5
  "author": "V16 <support@v16.ai>",
6
6
  "license": "MIT",