@hitechclaw/clawspark 2.1.0 → 2.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/CHANGELOG.md CHANGED
@@ -16,6 +16,8 @@ and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
16
16
  - `NOTICE` file summarizing the repository's non-commercial-use terms.
17
17
  - `COMMERCIAL-LICENSE.md` explaining that commercial rights require a
18
18
  separate written agreement.
19
+ - Documentation notes clarifying that GitHub and npm availability do not grant
20
+ commercial rights.
19
21
  - npm packaging metadata via `package.json` and `.npmignore`.
20
22
  - GitHub Actions workflow for publishing public npm releases from version tags.
21
23
  - Release validation that checks tag/version alignment before npm publish.
package/README.md CHANGED
@@ -4,10 +4,25 @@
4
4
 
5
5
  <h1 align="center">CLAWSPARK</h1>
6
6
 
7
+ <p align="center">
8
+ <a href="LICENSE"><img src="https://img.shields.io/badge/license-non--commercial%20use-orange" alt="License: Non-Commercial Use Only" /></a>
9
+ <a href="COMMERCIAL-LICENSE.md"><img src="https://img.shields.io/badge/commercial-use%20requires%20permission-red" alt="Commercial Use Requires Permission" /></a>
10
+ </p>
11
+
7
12
  <p align="center">
8
13
  <strong>One command. Private AI agent. Your hardware.</strong>
9
14
  </p>
10
15
 
16
+ <p align="center">
17
+ <strong>Usage:</strong> Non-commercial use only for individuals, companies, and organizations.
18
+ Commercialization, commercial consulting, and revenue-generating use require prior written permission.
19
+ </p>
20
+
21
+ <p align="center">
22
+ <strong>Important:</strong> Availability on GitHub or npm does <em>not</em> grant commercial rights.
23
+ See <a href="LICENSE">LICENSE</a>, <a href="NOTICE">NOTICE</a>, and <a href="COMMERCIAL-LICENSE.md">COMMERCIAL-LICENSE.md</a>.
24
+ </p>
25
+
11
26
  <p align="center">
12
27
  <a href="https://clawspark.hitechclaw.com">Website</a> &middot;
13
28
  <a href="docs/tutorial.md">Tutorial</a> &middot;
@@ -28,6 +43,10 @@ curl -fsSL https://clawspark.hitechclaw.com/install.sh | bash
28
43
 
29
44
  That's it. Come back in 5 minutes to a fully working, fully private AI agent that can code, research, browse the web, analyze images, and manage your tasks. Everything runs on your hardware. No cloud APIs, no subscriptions, no telemetry.
30
45
 
46
+ > **Licensing notice**
47
+ > Publishing or downloading this package from npm does not grant any commercial right.
48
+ > Use is limited to strictly non-commercial purposes unless separately authorized in writing by the copyright holder.
49
+
31
50
  ## v2 Preview
32
51
 
33
52
  A new installer track is available in `v2/` for broader deployment targets:
@@ -283,15 +302,16 @@ bash tests/run.sh
283
302
 
284
303
  ## npm Package
285
304
 
286
- [![npm version](https://img.shields.io/npm/v/clawspark.svg)](https://www.npmjs.com/package/clawspark)
305
+ [![npm version](https://img.shields.io/npm/v/%40hitechclaw%2Fclawspark.svg)](https://www.npmjs.com/package/@hitechclaw/clawspark)
287
306
  [![CI](https://github.com/thanhan92-f1/clawspark/actions/workflows/ci.yml/badge.svg)](https://github.com/thanhan92-f1/clawspark/actions/workflows/ci.yml)
288
307
  [![Publish to npm](https://github.com/thanhan92-f1/clawspark/actions/workflows/publish-npm.yml/badge.svg)](https://github.com/thanhan92-f1/clawspark/actions/workflows/publish-npm.yml)
289
308
  [![GitHub Release](https://img.shields.io/github/v/release/thanhan92-f1/clawspark)](https://github.com/thanhan92-f1/clawspark/releases)
290
309
 
291
- `clawspark` can also be distributed as an npm package for installing the CLI entrypoint:
310
+ `@hitechclaw/clawspark` can also be distributed as an npm package for installing the CLI entrypoint.
311
+ The installed command remains `clawspark`:
292
312
 
293
313
  ```bash
294
- npm install -g clawspark
314
+ npm install -g @hitechclaw/clawspark
295
315
  ```
296
316
 
297
317
  Local package validation:
@@ -309,7 +329,7 @@ Example setup:
309
329
  2. Make sure the token belongs to npm user `hitechclaw`.
310
330
  3. Make sure the tag matches `package.json` version exactly, for example `v2.0.0` for version `2.0.0`.
311
331
  4. Push the tag.
312
- 5. GitHub Actions validates metadata, checks the packed tarball, verifies the npm account, and publishes `clawspark` to npmjs.com with provenance.
332
+ 5. GitHub Actions validates metadata, checks the packed tarball, verifies the npm account, and publishes `@hitechclaw/clawspark` to npmjs.com with provenance.
313
333
  6. GitHub Actions also creates a GitHub Release and attaches the generated npm tarball.
314
334
 
315
335
  Example release flow:
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@hitechclaw/clawspark",
3
- "version": "2.1.0",
4
- "description": "One-command OpenClaw installer and CLI for local, CPU-first, and API-backed AI agent deployments.",
3
+ "version": "2.1.1",
4
+ "description": "One-command OpenClaw installer and CLI for local, CPU-first, and API-backed AI agent deployments for strictly non-commercial use.",
5
5
  "author": "hitechclaw",
6
6
  "license": "SEE LICENSE IN LICENSE",
7
- "homepage": "https://github.com/thanhan92-f1/clawspark#readme",
7
+ "homepage": "https://clawspark.hitechclaw.com",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/thanhan92-f1/clawspark.git"
@@ -20,7 +20,9 @@
20
20
  "installer",
21
21
  "local-ai",
22
22
  "cpu-ai",
23
- "api-gateway"
23
+ "api-gateway",
24
+ "non-commercial",
25
+ "source-available"
24
26
  ],
25
27
  "bin": {
26
28
  "clawspark": "clawspark"
package/web/index.html CHANGED
@@ -162,6 +162,24 @@
162
162
  background: rgba(118, 185, 0, 0.06);
163
163
  }
164
164
 
165
+ .hero-license-note {
166
+ display: inline-flex;
167
+ align-items: center;
168
+ gap: 10px;
169
+ padding: 10px 16px;
170
+ border-radius: 999px;
171
+ border: 1px solid rgba(255, 107, 53, 0.28);
172
+ background: rgba(255, 107, 53, 0.08);
173
+ color: #ffd2c2;
174
+ font-size: 0.83rem;
175
+ font-weight: 600;
176
+ margin-bottom: 22px;
177
+ }
178
+
179
+ .hero-license-note strong {
180
+ color: #fff3ee;
181
+ }
182
+
165
183
  .hero-title {
166
184
  display: flex;
167
185
  align-items: center;
@@ -1056,6 +1074,21 @@
1056
1074
  margin-top: 18px;
1057
1075
  }
1058
1076
 
1077
+ .usage-warning {
1078
+ margin-top: 18px;
1079
+ padding: 14px 16px;
1080
+ border-radius: 14px;
1081
+ border: 1px solid rgba(255, 107, 53, 0.18);
1082
+ background: rgba(255, 107, 53, 0.06);
1083
+ color: #f0c0b1;
1084
+ font-size: 0.9rem;
1085
+ line-height: 1.6;
1086
+ }
1087
+
1088
+ .usage-warning strong {
1089
+ color: #fff1eb;
1090
+ }
1091
+
1059
1092
  .usage-link {
1060
1093
  display: inline-flex;
1061
1094
  align-items: center;
@@ -1158,6 +1191,12 @@
1158
1191
  padding-bottom: 80px;
1159
1192
  }
1160
1193
 
1194
+ .hero-license-note {
1195
+ text-align: left;
1196
+ border-radius: 18px;
1197
+ line-height: 1.5;
1198
+ }
1199
+
1161
1200
  .code-block code {
1162
1201
  font-size: 0.78rem;
1163
1202
  }
@@ -1223,6 +1262,7 @@
1223
1262
  <li><a href="#architecture">Architecture</a></li>
1224
1263
  <li><a href="#hardware">Hardware</a></li>
1225
1264
  <li><a href="#how-it-works">How It Works</a></li>
1265
+ <li><a href="#license">Usage Terms</a></li>
1226
1266
  <li><a href="#install">Install</a></li>
1227
1267
  <li><a href="https://github.com/thanhan92-f1/clawspark" target="_blank" rel="noopener">GitHub</a></li>
1228
1268
  </ul>
@@ -1236,6 +1276,10 @@
1236
1276
  <img src="logo-hero.svg" alt="clawspark logo">
1237
1277
  <h1><span class="accent">claw</span>spark</h1>
1238
1278
  </div>
1279
+ <div class="hero-license-note">
1280
+ <span>•</span>
1281
+ <span><strong>Non-commercial use only.</strong> Individuals, companies, and organizations may use `clawspark` only for strictly non-commercial purposes.</span>
1282
+ </div>
1239
1283
  <p class="tagline">One command. Private AI agent. Your hardware.</p>
1240
1284
  <p class="description">
1241
1285
  Turn your DGX Spark, RTX GPU, Mac, or Jetson into a private AI agent that can code, research, browse the web, analyze images, and run tasks. Everything runs locally. Your data never leaves your machine.
@@ -1884,10 +1928,14 @@
1884
1928
  <li><span class="usage-dot blocked"></span><span>Client delivery, SaaS, subscriptions, resale, bundling, or any revenue-generating use.</span></li>
1885
1929
  </ul>
1886
1930
 
1931
+ <div class="usage-warning">
1932
+ <strong>Important:</strong> Availability on GitHub or npm does not grant any commercial right. Downloading, publishing, mirroring, or installing the package does not override the non-commercial license terms.
1933
+ </div>
1934
+
1887
1935
  <div class="usage-links">
1888
- <a class="usage-link" href="../LICENSE">View License</a>
1889
- <a class="usage-link" href="../NOTICE">License Notice</a>
1890
- <a class="usage-link" href="../COMMERCIAL-LICENSE.md">Commercial Licensing</a>
1936
+ <a class="usage-link" href="https://github.com/thanhan92-f1/clawspark/blob/main/LICENSE" target="_blank" rel="noopener">View License</a>
1937
+ <a class="usage-link" href="https://github.com/thanhan92-f1/clawspark/blob/main/NOTICE" target="_blank" rel="noopener">License Notice</a>
1938
+ <a class="usage-link" href="https://github.com/thanhan92-f1/clawspark/blob/main/COMMERCIAL-LICENSE.md" target="_blank" rel="noopener">Commercial Licensing</a>
1891
1939
  </div>
1892
1940
  </div>
1893
1941
  </div>