@halfagiraf/clawx 0.1.1 → 0.1.3

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.
Files changed (3) hide show
  1. package/README.md +15 -3
  2. package/logo.png +0 -0
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -1,8 +1,20 @@
1
- # Clawx
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/stevenmcsorley/clawx/main/logo.png" alt="Clawx" width="200" />
3
+ </p>
2
4
 
3
- Lean coding/execution agent extracted from [OpenClaw](https://github.com/openclaw/openclaw) core.
5
+ <h1 align="center">Clawx</h1>
4
6
 
5
- Clawx is a terminal-first agent that can create files, write code, run commands, execute over SSH, and iterate until the job is done. It uses the model's own judgment to decide what to build and how.
7
+ <p align="center">
8
+ <a href="https://www.npmjs.com/package/@halfagiraf/clawx"><img src="https://img.shields.io/npm/v/@halfagiraf/clawx" alt="npm version" /></a>
9
+ <a href="https://github.com/stevenmcsorley/clawx/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@halfagiraf/clawx" alt="license" /></a>
10
+ <a href="https://www.npmjs.com/package/@halfagiraf/clawx"><img src="https://img.shields.io/npm/dm/@halfagiraf/clawx" alt="downloads" /></a>
11
+ </p>
12
+
13
+ <p align="center">
14
+ Terminal-first coding agent — runs locally with Ollama, DeepSeek, OpenAI, or any OpenAI-compatible endpoint.
15
+ </p>
16
+
17
+ Clawx is a lean coding/execution agent that can create files, write code, run commands, execute over SSH, and iterate until the job is done. The model decides what to build and how — no file lists, no hand-holding.
6
18
 
7
19
  ## What it does
8
20
 
package/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halfagiraf/clawx",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Terminal-first coding agent — runs locally with Ollama, DeepSeek, OpenAI, or any OpenAI-compatible endpoint",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  "dist/",
13
13
  "README.md",
14
14
  "LICENSE",
15
+ "logo.png",
15
16
  ".env.example",
16
17
  "clawx.json.example"
17
18
  ],