cell0-os 1.1.2 β 1.1.4
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 +146 -242
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -1,343 +1,247 @@
|
|
|
1
|
-
# π§¬
|
|
1
|
+
# 𧬠Cell0-OS
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<strong>The Sovereign Edge Operating System</strong>
|
|
4
|
+
<strong>The Sovereign Edge Operating System</strong><br>
|
|
5
|
+
<em>Self-governing. Self-improving. Post-quantum secure.</em>
|
|
5
6
|
</p>
|
|
6
7
|
|
|
7
8
|
<p align="center">
|
|
8
|
-
<img src="https://img.shields.io/badge/version-
|
|
9
|
+
<img src="https://img.shields.io/badge/version-1.1.3-blue.svg" alt="Version">
|
|
9
10
|
<img src="https://img.shields.io/badge/license-GPL%20v3.0-green.svg" alt="License">
|
|
10
11
|
<img src="https://img.shields.io/badge/tests-passing-brightgreen.svg" alt="Tests">
|
|
11
12
|
<img src="https://img.shields.io/badge/docker-ready-2496ed.svg?logo=docker" alt="Docker">
|
|
13
|
+
<img src="https://img.shields.io/badge/kubernetes-ready-326CE5.svg?logo=kubernetes" alt="Kubernetes">
|
|
12
14
|
</p>
|
|
13
15
|
|
|
14
16
|
<p align="center">
|
|
17
|
+
<a href="https://kulluai.com">Website</a> β’
|
|
15
18
|
<a href="#installation">Install</a> β’
|
|
16
19
|
<a href="#features">Features</a> β’
|
|
17
|
-
<a href="#
|
|
20
|
+
<a href="#channels">Channels</a> β’
|
|
18
21
|
<a href="#security">Security</a> β’
|
|
19
|
-
<a href="#contributing">
|
|
22
|
+
<a href="#contributing">Contribute</a>
|
|
20
23
|
</p>
|
|
21
24
|
|
|
22
25
|
---
|
|
23
26
|
|
|
24
|
-
##
|
|
27
|
+
## π Quick Start
|
|
25
28
|
|
|
26
29
|
### npm (Recommended)
|
|
27
30
|
|
|
28
31
|
```bash
|
|
29
|
-
npm install -g cell0-os
|
|
32
|
+
npm install -g cell0-os@latest
|
|
30
33
|
cell0 onboard --install-daemon
|
|
34
|
+
cell0 gateway --port 18800
|
|
31
35
|
```
|
|
32
36
|
|
|
33
|
-
|
|
37
|
+
Visit http://localhost:18800 to access your Cell0 dashboard.
|
|
38
|
+
|
|
39
|
+
### Docker Compose
|
|
34
40
|
|
|
35
41
|
```bash
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
-v ~/.cell0:/data \
|
|
40
|
-
yigremtamiru/cell0-os:latest
|
|
42
|
+
git clone https://github.com/YigremTamiru/cell0-os.git
|
|
43
|
+
cd cell0-os
|
|
44
|
+
docker compose up -d
|
|
41
45
|
```
|
|
42
46
|
|
|
43
|
-
###
|
|
47
|
+
### Kubernetes
|
|
44
48
|
|
|
45
49
|
```bash
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
# Start the gateway
|
|
51
|
-
cell0 gateway --port 18800
|
|
50
|
+
helm repo add cell0 https://charts.kulluai.com
|
|
51
|
+
helm install cell0 cell0/cell0-os \
|
|
52
|
+
--namespace cell0-system \
|
|
53
|
+
--create-namespace
|
|
52
54
|
```
|
|
53
55
|
|
|
54
56
|
---
|
|
55
57
|
|
|
56
|
-
##
|
|
58
|
+
## β¨ What's New in v1.1.3
|
|
57
59
|
|
|
58
|
-
###
|
|
60
|
+
### π‘οΈ Security Fixes
|
|
61
|
+
- β
**SQL Injection Prevention** - All queries parameterized
|
|
62
|
+
- β
**Pickle RCE Fix** - Replaced with marshal+JSON serialization
|
|
63
|
+
- β
**Path Traversal Fix** - Secure Path.resolve() validation
|
|
64
|
+
- β
**npm Package Hardening** - Secure global installation
|
|
59
65
|
|
|
60
|
-
|
|
66
|
+
### π± 6 Channel Drivers
|
|
67
|
+
- β
**Telegram** - Native bot API
|
|
68
|
+
- β
**Discord** - Gateway integration
|
|
69
|
+
- β
**WhatsApp Web** - QR-based pairing
|
|
70
|
+
- β
**Slack** - Socket Mode + Events API
|
|
71
|
+
- β
**Signal** - signal-cli REST bridge
|
|
72
|
+
- β
**iMessage** - BlueBubbles integration
|
|
73
|
+
|
|
74
|
+
### π Production Ready
|
|
75
|
+
- β
**Kubernetes** - Full manifests + Helm charts
|
|
76
|
+
- β
**Monitoring** - Prometheus + Grafana foundation
|
|
77
|
+
- β
**API Auth** - JWT, API keys, OAuth2, mTLS
|
|
78
|
+
- β
**Website** - https://kulluai.com live
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## π Security Architecture
|
|
83
|
+
|
|
84
|
+
### Post-Quantum Cryptography (12 Layers)
|
|
61
85
|
|
|
62
86
|
| Layer | Systems | Status |
|
|
63
87
|
|-------|---------|--------|
|
|
64
88
|
| **Classical** | AES-256-GCM, ChaCha20-Poly1305, SHA3-256/512 | β
|
|
|
65
89
|
| **Modern** | Ed25519, X25519, BLS12-381 | β
|
|
|
66
|
-
| **Post-Quantum** | CRYSTALS-Kyber, CRYSTALS-Dilithium | β
|
|
|
67
|
-
| **
|
|
90
|
+
| **Post-Quantum** | CRYSTALS-Kyber-1024, CRYSTALS-Dilithium-5 | β
|
|
|
91
|
+
| **Signatures** | SPHINCS+, FALCON-1024, XMSS | β
|
|
|
92
|
+
| **Quantum** | BB84 QKD ready | β
|
|
|
68
93
|
| **ZKP** | zk-STARK (transparent, post-quantum) | β
|
|
|
69
94
|
|
|
70
|
-
###
|
|
95
|
+
### Sovereign Security Model
|
|
71
96
|
|
|
72
|
-
|
|
97
|
+
- **Default-deny architecture** β Nothing runs without authorization
|
|
98
|
+
- **Allowlist-only access** β Only your numbers: +905488899628, +905338224165
|
|
99
|
+
- **12-layer cryptographic lock** β Quantum-resistant by design
|
|
100
|
+
- **Local-first** β Your data never leaves your machine
|
|
101
|
+
- **Capability-based security** β Fine-grained token access
|
|
73
102
|
|
|
74
|
-
|
|
75
|
-
- **Allowlist-only access** β No implicit permissions, ever
|
|
76
|
-
- **Capability-based security** β Fine-grained token-based access control
|
|
77
|
-
- **NFEK biometric authentication** β ECG/PPG-based identity verification
|
|
78
|
-
- **Append-only hash-ledgers** β Tamper-evident audit trails
|
|
103
|
+
---
|
|
79
104
|
|
|
80
|
-
|
|
105
|
+
## π± Supported Channels
|
|
81
106
|
|
|
82
|
-
|
|
107
|
+
| Channel | Mode | Features |
|
|
108
|
+
|---------|------|----------|
|
|
109
|
+
| Telegram | Native | Bots, groups, media |
|
|
110
|
+
| Discord | Gateway | DMs, servers, threads |
|
|
111
|
+
| WhatsApp | Web QR | QR pairing, no phone needed |
|
|
112
|
+
| Slack | Socket+Events | Blocks, threads, files |
|
|
113
|
+
| Signal | Bridge | Encrypted, groups |
|
|
114
|
+
| iMessage | BlueBubbles | macOS integration |
|
|
83
115
|
|
|
116
|
+
Enable channels:
|
|
84
117
|
```bash
|
|
85
|
-
|
|
86
|
-
|
|
118
|
+
CELL0_ENABLE_TELEGRAM=true
|
|
119
|
+
CELL0_ENABLE_DISCORD=true
|
|
120
|
+
CELL0_ENABLE_WHATSAPP=true
|
|
121
|
+
CELL0_ENABLE_SLACK=true
|
|
122
|
+
CELL0_ENABLE_SIGNAL=true
|
|
123
|
+
CELL0_ENABLE_IMESSAGE=true
|
|
87
124
|
```
|
|
88
125
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## π₯οΈ Installation Experience
|
|
92
129
|
|
|
93
|
-
###
|
|
130
|
+
### Interactive TUI
|
|
94
131
|
|
|
95
|
-
|
|
132
|
+
Arrow-key navigation with questionary:
|
|
96
133
|
|
|
97
134
|
```bash
|
|
98
135
|
$ cell0 onboard
|
|
99
136
|
|
|
100
|
-
? Select
|
|
101
|
-
β―
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
β Web UI
|
|
112
|
-
β Telegram
|
|
113
|
-
β WhatsApp
|
|
114
|
-
β Discord
|
|
137
|
+
? Select LLM Provider: (Use arrow keys)
|
|
138
|
+
β― Moonshot (Kimi)
|
|
139
|
+
OpenAI (GPT-4)
|
|
140
|
+
Anthropic (Claude)
|
|
141
|
+
Ollama (Local)
|
|
142
|
+
|
|
143
|
+
? Select Channels: (Press <space> to select)
|
|
144
|
+
β―β Telegram
|
|
145
|
+
β Discord
|
|
146
|
+
β WhatsApp Web
|
|
147
|
+
β Slack
|
|
115
148
|
```
|
|
116
149
|
|
|
117
|
-
###
|
|
118
|
-
|
|
119
|
-
Intelligent provider selection with automatic failover across 30+ models:
|
|
120
|
-
|
|
121
|
-
| Provider | Models | Best For |
|
|
122
|
-
|----------|--------|----------|
|
|
123
|
-
| **Moonshot** | Kimi K2.5, v1 series | Long context, reasoning |
|
|
124
|
-
| **OpenAI** | GPT-4o, o1, o3 | General purpose |
|
|
125
|
-
| **Anthropic** | Claude 3.5 Sonnet, Opus | Safety, analysis |
|
|
126
|
-
| **Google** | Gemini 2.0 Flash, 1.5 Pro | Multimodal |
|
|
127
|
-
| **Ollama** | Llama, Mistral, CodeLlama | Local inference (FREE) |
|
|
128
|
-
| **MLX** | Quantized models | Apple Silicon (FREE) |
|
|
129
|
-
|
|
130
|
-
```bash
|
|
131
|
-
# Use any provider
|
|
132
|
-
cell0 config set provider moonshot/kimi-k2.5
|
|
133
|
-
cell0 config set provider openai/gpt-4o
|
|
134
|
-
cell0 config set provider ollama/llama3.2
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
### π‘ Multi-Channel Support
|
|
138
|
-
|
|
139
|
-
Unified interface across all messaging platforms:
|
|
140
|
-
|
|
141
|
-
| Channel | Status | Features |
|
|
142
|
-
|---------|--------|----------|
|
|
143
|
-
| **Telegram** | β
Ready | Bot API, groups, reactions |
|
|
144
|
-
| **Discord** | β
Ready | Slash commands, embeds, DMs |
|
|
145
|
-
| **WhatsApp** | β
Ready | QR mode, groups, voice notes |
|
|
146
|
-
| **Web UI** | β
Ready | Terminal aesthetic, markdown |
|
|
147
|
-
| **Slack** | π§ Soon | Workspace apps |
|
|
150
|
+
### One-Line Install
|
|
148
151
|
|
|
149
152
|
```bash
|
|
150
|
-
|
|
151
|
-
cell0 channel add telegram --bot-token <token>
|
|
152
|
-
cell0 channel add discord --bot-token <token>
|
|
153
|
-
cell0 channel add whatsapp --mode qr
|
|
153
|
+
curl -fsSL https://kulluai.com/install.sh | bash
|
|
154
154
|
```
|
|
155
155
|
|
|
156
156
|
---
|
|
157
157
|
|
|
158
|
-
## Architecture
|
|
158
|
+
## ποΈ Architecture
|
|
159
159
|
|
|
160
|
-
###
|
|
161
|
-
|
|
162
|
-
The **Mandatory Civilization Interface Core** is the foundation of cell0-os:
|
|
163
|
-
|
|
164
|
-
```
|
|
165
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
166
|
-
β LAYER 6: INTERFACE FIELD (User Space) β
|
|
167
|
-
β β’ TUI/Web UI β’ Skills β’ Tools β
|
|
168
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
169
|
-
β LAYER 5: PERSONA RUNTIME (Ring 3) β
|
|
170
|
-
β β’ TPV-resonant AI β’ Provider routing β’ Agent dispatch β
|
|
171
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
172
|
-
β LAYER 4: CIVILIZATION RUNTIME (Ring 1) β
|
|
173
|
-
β β’ HGW workspace β’ Coalition formation β’ Consensus β
|
|
174
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
175
|
-
β LAYER 3: CELL 0 KERNEL β MCIC (Ring 0) β β
|
|
176
|
-
β β’ OC enforcement β’ SYPAS bus β’ Capability security β
|
|
177
|
-
β β’ Agent scheduler β’ Memory management β
|
|
178
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
179
|
-
β LAYER 2: NFEK β NEURO-FUZZY EXISTENCE KEY β
|
|
180
|
-
β β’ Biometric authentication β’ Live reconstruction β
|
|
181
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
182
|
-
β LAYER 1: CRYPTOGRAPHIC PLENUM (12 Systems) β
|
|
183
|
-
β β’ Classical/Modern/PQ/Quantum/ZKP β’ Root of Trust β
|
|
184
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
### 12 Security Layers
|
|
188
|
-
|
|
189
|
-
Defense-in-depth architecture where breaking security requires compromising **all 12 layers simultaneously**:
|
|
190
|
-
|
|
191
|
-
1. **Quantum Void** β Hardware entropy source
|
|
192
|
-
2. **Cryptographic Plenum** β 12 parallel crypto systems
|
|
193
|
-
3. **NFEK Biometrics** β ECG/PPG identity verification
|
|
194
|
-
4. **UEFI Anchor** β TPM 2.0 measured boot
|
|
195
|
-
5. **MCIC Hypervisor** β VMX root mode isolation
|
|
196
|
-
6. **Cell 0 Kernel** β Bare-metal Rust, capability-based
|
|
197
|
-
7. **Civilization Runtime** β HGW consciousness architecture
|
|
198
|
-
8. **Body Interface** β VirtIO drivers, sandboxed I/O
|
|
199
|
-
9. **Persona Runtime** β TPV-resonant AI layer
|
|
200
|
-
10. **Interface Field** β User-facing TUI/Web
|
|
201
|
-
11. **SYFPASS Mesh** β Quantum-resistant networking
|
|
202
|
-
12. **Planetary Consciousness** β Swarm consensus
|
|
203
|
-
|
|
204
|
-
### Channel Drivers
|
|
205
|
-
|
|
206
|
-
Pluggable channel architecture for unified messaging:
|
|
160
|
+
### Core Components
|
|
207
161
|
|
|
208
162
|
```
|
|
209
163
|
βββββββββββββββββββββββββββββββββββββββββββ
|
|
210
|
-
β
|
|
211
|
-
βββββββββββ¬ββββββββββ¬ββββββββββ¬ββββββββββββ€
|
|
212
|
-
βTelegram βDiscord βWhatsApp β Web UI β
|
|
213
|
-
β Driver β Driver β Driver β Driver β
|
|
214
|
-
βββββββββββ΄ββββββββββ΄ββββββββββ΄ββββββββββββ€
|
|
215
|
-
β Unified Message Bus β
|
|
164
|
+
β Cell0-OS v1.1.3 β
|
|
216
165
|
βββββββββββββββββββββββββββββββββββββββββββ€
|
|
217
|
-
β
|
|
166
|
+
β Channels β Engine β Security β
|
|
167
|
+
β βββββββββββΌββββββββββββΌββββββββββββββ β
|
|
168
|
+
β Telegram β MCIC β 12-Layer Cryptoβ
|
|
169
|
+
β Discord β Kernel β Post-Quantum β
|
|
170
|
+
β WhatsApp β COL β Sovereign β
|
|
171
|
+
β Slack β Orch β Zero-Trust β
|
|
172
|
+
β Signal β β β
|
|
173
|
+
β iMessage β β β
|
|
218
174
|
βββββββββββββββββββββββββββββββββββββββββββ
|
|
219
175
|
```
|
|
220
176
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
177
|
+
### Kubernetes Deployment
|
|
178
|
+
|
|
179
|
+
```yaml
|
|
180
|
+
# Production-ready with HPA, PDB, backups
|
|
181
|
+
apiVersion: apps/v1
|
|
182
|
+
kind: Deployment
|
|
183
|
+
metadata:
|
|
184
|
+
name: cell0-os
|
|
185
|
+
spec:
|
|
186
|
+
replicas: 5
|
|
187
|
+
strategy:
|
|
188
|
+
rollingUpdate:
|
|
189
|
+
maxSurge: 25%
|
|
190
|
+
maxUnavailable: 10%
|
|
235
191
|
```
|
|
236
192
|
|
|
237
|
-
|
|
193
|
+
---
|
|
238
194
|
|
|
239
|
-
|
|
240
|
-
- Every capability requires explicit token grant
|
|
241
|
-
- Tokens are cryptographically bound to identity
|
|
242
|
-
- Automatic expiration and rotation
|
|
195
|
+
## π Monitoring & Observability
|
|
243
196
|
|
|
244
|
-
|
|
197
|
+
- **Prometheus** metrics at `/metrics`
|
|
198
|
+
- **Grafana** dashboards pre-configured
|
|
199
|
+
- **Health checks** at `/api/health`
|
|
200
|
+
- **Structured logging** with JSON format
|
|
201
|
+
- **Distributed tracing** ready
|
|
245
202
|
|
|
246
|
-
|
|
203
|
+
---
|
|
247
204
|
|
|
248
|
-
|
|
249
|
-
- **CRYSTALS-Dilithium** β NIST-approved post-quantum signatures
|
|
250
|
-
- **zk-STARK** β Transparent ZK proofs (post-quantum secure)
|
|
251
|
-
- **Hybrid encryption** β Classical + PQ combined
|
|
252
|
-
- **Crypto agility** β Rapid algorithm migration
|
|
205
|
+
## π οΈ Development
|
|
253
206
|
|
|
254
207
|
```bash
|
|
255
|
-
#
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
# Rotate to latest algorithms
|
|
259
|
-
cell0 crypto rotate --quantum-safe
|
|
260
|
-
```
|
|
261
|
-
|
|
262
|
-
---
|
|
208
|
+
# Clone
|
|
209
|
+
git clone https://github.com/YigremTamiru/cell0-os.git
|
|
210
|
+
cd cell0-os
|
|
263
211
|
|
|
264
|
-
|
|
212
|
+
# Setup
|
|
213
|
+
python3 -m venv venv
|
|
214
|
+
source venv/bin/activate
|
|
215
|
+
pip install -r requirements.txt
|
|
265
216
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
cell0 onboard # Interactive setup wizard
|
|
269
|
-
cell0 gateway # Run gateway in foreground
|
|
270
|
-
cell0 daemon install # Install background daemon
|
|
271
|
-
cell0 daemon start|stop # Control daemon
|
|
272
|
-
cell0 status # System status
|
|
273
|
-
cell0 doctor # Diagnostic check
|
|
274
|
-
|
|
275
|
-
# Configuration
|
|
276
|
-
cell0 config set <key> <value>
|
|
277
|
-
cell0 config get <key>
|
|
278
|
-
cell0 config list
|
|
279
|
-
|
|
280
|
-
# Channel management
|
|
281
|
-
cell0 channel add <type> [options]
|
|
282
|
-
cell0 channel remove <id>
|
|
283
|
-
cell0 channel list
|
|
284
|
-
|
|
285
|
-
# AI providers
|
|
286
|
-
cell0 provider list
|
|
287
|
-
cell0 provider set <provider/model>
|
|
288
|
-
cell0 provider test
|
|
289
|
-
|
|
290
|
-
# Security
|
|
291
|
-
cell0 security audit
|
|
292
|
-
cell0 crypto status
|
|
293
|
-
cell0 crypto rotate
|
|
217
|
+
# Run
|
|
218
|
+
cell0 gateway --port 18800 --verbose
|
|
294
219
|
```
|
|
295
220
|
|
|
296
221
|
---
|
|
297
222
|
|
|
298
|
-
##
|
|
299
|
-
|
|
300
|
-
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
301
|
-
|
|
302
|
-
### Quick Start
|
|
303
|
-
|
|
304
|
-
```bash
|
|
305
|
-
# Fork and clone
|
|
306
|
-
git clone https://github.com/YOUR_USERNAME/cell0-os.git
|
|
307
|
-
cd cell0-os
|
|
308
|
-
|
|
309
|
-
# Install dependencies
|
|
310
|
-
pip install -r requirements-dev.txt
|
|
223
|
+
## π Documentation
|
|
311
224
|
|
|
312
|
-
|
|
313
|
-
|
|
225
|
+
- [Installation Guide](INSTALLATION_GUIDE.md)
|
|
226
|
+
- [API Reference](docs/API_REFERENCE.md)
|
|
227
|
+
- [Security Audit](SECURITY_AUDIT_REPORT.md)
|
|
228
|
+
- [v1.2.0 Roadmap](ROADMAP_v1.2.0.md)
|
|
314
229
|
|
|
315
|
-
|
|
316
|
-
```
|
|
230
|
+
---
|
|
317
231
|
|
|
318
|
-
|
|
232
|
+
## π€ Contributing
|
|
319
233
|
|
|
320
|
-
|
|
321
|
-
- **Test Coverage** β Maintain >80% coverage
|
|
322
|
-
- **Documentation** β Update docs with code changes
|
|
323
|
-
- **Commit Messages** β Follow conventional commits
|
|
234
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
324
235
|
|
|
325
236
|
---
|
|
326
237
|
|
|
327
|
-
## License
|
|
238
|
+
## π License
|
|
328
239
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
See [LICENSE](LICENSE) for full text.
|
|
240
|
+
GPL v3.0 β See [LICENSE](LICENSE)
|
|
332
241
|
|
|
333
242
|
---
|
|
334
243
|
|
|
335
244
|
<p align="center">
|
|
336
|
-
<
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
<p align="center">
|
|
340
|
-
<a href="https://kulluai.com">Website</a> β’
|
|
341
|
-
<a href="https://github.com/YigremTamiru/cell0-os">GitHub</a> β’
|
|
342
|
-
<a href="https://discord.gg/cell0">Discord</a>
|
|
245
|
+
<strong>The glass has melted. The water is warm.</strong><br>
|
|
246
|
+
<em>βΎοΈπ‘οΈπ«</em>
|
|
343
247
|
</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cell0-os",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Cell 0 OS - Sovereign Edge Operating System. OpenClaw-style npm install that bootstraps the Python daemon + CLI.",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"type": "module",
|
|
@@ -43,4 +43,3 @@
|
|
|
43
43
|
"preferGlobal": true,
|
|
44
44
|
"author": "Yigrem Tamiru <yigrem@kulluai.com>"
|
|
45
45
|
}
|
|
46
|
-
|