gitclaw 0.4.0 → 0.5.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 +18 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,11 +12,12 @@
|
|
|
12
12
|
<h1 align="center">Gitclaw</h1>
|
|
13
13
|
|
|
14
14
|
<p align="center">
|
|
15
|
-
<strong>A universal git-native AI
|
|
15
|
+
<strong>A universal git-native multimodal always learning AI Agent (TinyHuman)</strong><br/>
|
|
16
16
|
Your agent lives inside a git repo — identity, rules, memory, tools, and skills are all version-controlled files.
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
20
|
+
<a href="#one-command-install">Install</a> •
|
|
20
21
|
<a href="#quick-start">Quick Start</a> •
|
|
21
22
|
<a href="#sdk">SDK</a> •
|
|
22
23
|
<a href="#architecture">Architecture</a> •
|
|
@@ -41,7 +42,22 @@ Most agent frameworks treat configuration as code scattered across your applicat
|
|
|
41
42
|
|
|
42
43
|
Fork an agent. Branch a personality. `git log` your agent's memory. Diff its rules. This is **agents as repos**.
|
|
43
44
|
|
|
44
|
-
## Install
|
|
45
|
+
## One-Command Install
|
|
46
|
+
|
|
47
|
+
Copy, paste, run. That's it — no cloning, no manual setup. The installer handles everything:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
bash <(curl -fsSL "https://raw.githubusercontent.com/open-gitagent/gitclaw/main/install.sh?$(date +%s)")
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
This will:
|
|
54
|
+
- Install gitclaw globally via npm
|
|
55
|
+
- Walk you through API key setup (Quick or Advanced mode)
|
|
56
|
+
- Launch the voice UI in your browser at `http://localhost:3333`
|
|
57
|
+
|
|
58
|
+
> **Requirements:** Node.js 18+, npm, git
|
|
59
|
+
|
|
60
|
+
### Or install manually:
|
|
45
61
|
|
|
46
62
|
```bash
|
|
47
63
|
npm install -g gitclaw
|