nolimit-cli 1.0.0 → 1.2.0

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
@@ -1,50 +1,56 @@
1
- # NoLimit CLI
1
+ # nolimit-cli
2
2
 
3
3
  **Free AI coding assistant. No API keys. No subscription.**
4
4
 
5
- Watch a 30-second ad, get 8,000 tokens. That's it.
6
-
7
5
  ## Install
8
6
 
9
7
  ```bash
10
8
  npm install -g nolimit-cli
11
9
  ```
12
10
 
11
+ Or via curl:
12
+
13
+ ```bash
14
+ curl -fsSL https://usenolimit.com/install.sh | bash
15
+ ```
16
+
13
17
  ## Usage
14
18
 
15
19
  ```bash
16
- cd your-project
17
20
  nolimit
18
21
  ```
19
22
 
20
- ## Features
21
-
22
- - **Full Coding Agent** - Read files, write code, run commands
23
- - **Free Forever** - Ads, not subscriptions
24
- - **Zero Config** - No API keys needed
25
- - **Powered by Gemini 2.0 Flash** - Fast, capable AI
23
+ That's it. Start coding.
26
24
 
27
25
  ## How It Works
28
26
 
29
- 1. Run `nolimit` in any project directory
30
- 2. Chat with AI to write, debug, and understand code
31
- 3. When tokens run low, run `/earn` to watch a 30-second ad
27
+ 1. Run `nolimit` in your project
28
+ 2. Chat with AI to write, debug, understand code
29
+ 3. When tokens run low, watch a 30-second ad
32
30
  4. Get 8,000 tokens instantly
33
31
  5. Continue coding
34
32
 
33
+ ## Tokens
34
+
35
+ | Action | Tokens |
36
+ |--------|--------|
37
+ | Welcome bonus | 4,000 |
38
+ | Watch 30s ad | 8,000 |
39
+
35
40
  ## Commands
36
41
 
37
- | Command | Action |
38
- |---------|--------|
39
- | `/earn` | Watch ad to get tokens |
42
+ | Command | Description |
43
+ |---------|-------------|
44
+ | `/earn` | Watch ad for 8K tokens |
40
45
  | `/balance` | Check token balance |
46
+ | `/compact` | Summarize conversation |
41
47
  | `/help` | Show help |
42
48
 
43
49
  ## Links
44
50
 
45
- - Website: https://nolimit.dev
46
- - Issues: https://github.com/yogeba/nolimit/issues
51
+ - Website: https://usenolimit.com
52
+ - GitHub: https://github.com/buzzernetwork/nolimit
47
53
 
48
54
  ---
49
55
 
50
- **No subscription. No API keys. Just code.**
56
+ **Free AI when you need it.**
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "nolimit-cli",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "Free AI coding assistant - No API keys, no subscription",
5
5
  "keywords": ["ai", "coding", "assistant", "cli", "gemini", "free"],
6
6
  "author": "NoLimit",
7
7
  "license": "MIT",
8
- "homepage": "https://nolimit.dev",
8
+ "homepage": "https://usenolimit.com",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "https://github.com/buzzernetwork/nolimit.git"
@@ -8,7 +8,7 @@ const zlib = require('zlib');
8
8
  const { execSync } = require('child_process');
9
9
 
10
10
  // Binary download URL
11
- const DOWNLOAD_BASE = process.env.NOLIMIT_DOWNLOAD_URL || 'https://github.com/buzzernetwork/usenolimit/releases/download/v1.0.0';
11
+ const DOWNLOAD_BASE = process.env.NOLIMIT_DOWNLOAD_URL || 'https://api.usenolimit.com/releases';
12
12
 
13
13
  function getPlatform() {
14
14
  const platform = process.platform;
@@ -52,7 +52,7 @@ async function install() {
52
52
  const platform = getPlatform();
53
53
  const arch = getArch();
54
54
 
55
- console.log(`\n NoLimit CLI Installer`);
55
+ console.log(`\n nolimit installer`);
56
56
  console.log(` Platform: ${platform}-${arch}\n`);
57
57
 
58
58
  const filename = `nolimit-${platform}-${arch}.gz`;
@@ -81,7 +81,7 @@ async function install() {
81
81
  fs.chmodSync(binaryPath, 0o755);
82
82
 
83
83
  console.log(` Installed to ${binaryPath}`);
84
- console.log(`\n ✓ NoLimit installed successfully!`);
84
+ console.log(`\n ✓ nolimit installed`);
85
85
  console.log(` Run 'nolimit' to start.\n`);
86
86
 
87
87
  } catch (error) {