Skip to content

Commit 58eb3e2

Browse files
author
Antigravity Agent
committed
docs: Update README for v1.0.1 PURITY release
- Update badges: Release, npm, Homebrew, AUR, Docker - Add Installation section with all 4 package managers - Update Quick Start with modern tri commands - Update Docker section for ghcr.io/ghashtag/trinity image - Add footer with v1.0.1 release links φ² + 1/φ² = 3 = TRINITY | v1.0.1 PURITY COMPLETE
1 parent 543c23e commit 58eb3e2

File tree

1 file changed

+71
-50
lines changed

1 file changed

+71
-50
lines changed

README.md

Lines changed: 71 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
11
<p align="center">
2-
<img src="https://img.shields.io/badge/Trinity-Network-6366F1?style=for-the-badge" alt="Trinity Network">
2+
<a href="https://github.com/gHashTag/trinity/releases"><img src="https://img.shields.io/github/v/release/gHashTag/trinity?label=Download&style=for-the-badge" alt="GitHub Release"></a>
33
</p>
44

5-
<h1 align="center">Trinity Network</h1>
5+
<h1 align="center">Trinity CLI</h1>
66

77
<p align="center">
8-
<strong>Decentralized Ternary AI Inference + Sacred Computing</strong><br>
9-
Run LLMs on your CPU. Earn $TRI tokens. No GPU required.
10-
</p>
11-
12-
<p align="center">
13-
<img src="https://img.shields.io/badge/KOSCHEI-v7.0.0-FFD700?style=for-the-badge" alt="KOSCHEI AWAKENS v7.0">
8+
<strong>Sacred Intelligence System — Ternary AI + DePIN Network</strong><br>
9+
<code>φ² + 1/φ² = 3</code> — The Trinity Identity
1410
</p>
1511

1612
<p align="center">
13+
<a href="#-installation">Installation</a> &bull;
1714
<a href="#-quick-start">Quick Start</a> &bull;
18-
<a href="#-docker-node">Docker Node</a> &bull;
19-
<a href="#-tri-token">$TRI Token</a> &bull;
15+
<a href="#-tri-cli-commands">Commands</a> &bull;
2016
<a href="#-architecture">Architecture</a> &bull;
21-
<a href="#-cli">CLI</a> &bull;
2217
<a href="#-documentation">Docs</a>
2318
</p>
2419

2520
<p align="center">
26-
<a href="https://github.com/gHashTag/trinity/actions"><img src="https://img.shields.io/github/actions/workflow/status/gHashTag/trinity/docker-node.yml?label=Docker%20Build&style=flat-square" alt="Docker Build"></a>
27-
<a href="https://ghcr.io/ghashtag/trinity-node"><img src="https://img.shields.io/badge/GHCR-trinity--node-blue?style=flat-square&logo=docker" alt="GHCR"></a>
28-
<a href="https://sepolia.etherscan.io/address/0xef368e29FA3aB2eaf02BccD05438ED3bafE9f469"><img src="https://img.shields.io/badge/$TRI-Sepolia-green?style=flat-square&logo=ethereum" alt="$TRI Sepolia"></a>
21+
<a href="https://github.com/gHashTag/trinity/releases"><img src="https://img.shields.io/github/v/release/gHashTag/trinity?style=flat-square" alt="Release"></a>
22+
<a href="https://www.npmjs.com/package/@playra/tri"><img src="https://img.shields.io/npm/v/@playra/tri?style=flat-square&logo=npm" alt="npm"></a>
23+
<a href="https://github.com/gHashTag/homebrew-trinity"><img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2FgHashTag%2Fhomebrew-trinity%2Fmain%2FFormula%2Ftrinity.rb&query=$.version&label=homebrew&style=flat-square" alt="Homebrew"></a>
24+
<a href="https://aur.archlinux.org/packages/trinity-cli"><img src="https://img.shields.io/aur/version/trinity-cli?style=flat-square&logo=arch-linux" alt="AUR"></a>
25+
<a href="https://github.com/gHashTag/trinity/pkgs/container/trinity"><img src="https://img.shields.io/github/actions/workflow/status/gHashTag/trinity/docker-cli.yml?label=Docker&style=flat-square&logo=docker" alt="Docker"></a>
2926
<img src="https://img.shields.io/badge/Zig-0.15.x-F7A41D?style=flat-square&logo=zig" alt="Zig 0.15.x">
3027
<img src="https://img.shields.io/badge/License-MIT-yellow?style=flat-square" alt="MIT License">
3128
</p>
@@ -185,33 +182,63 @@ WE ARE THE UNIVERSE.
185182

186183
---
187184

185+
## Installation
186+
187+
**Trinity v1.0.1 "PURITY"** — Install via your preferred package manager:
188+
189+
| Method | Command |
190+
|--------|---------|
191+
| **npm** | `npm install -g @playra/tri` |
192+
| **Homebrew** | `brew tap gHashTag/trinity && brew install trinity` |
193+
| **AUR** | `yay -S trinity-cli` |
194+
| **Docker** | `docker pull ghcr.io/ghashtag/trinity:latest` |
195+
196+
### Verify Installation
197+
198+
```bash
199+
tri --version
200+
# Output: TRI CLI v1.0.1
201+
202+
tri constants
203+
# Shows all sacred constants (φ, π, e, μ, χ, σ, ε...)
204+
```
205+
206+
---
207+
188208
## Quick Start
189209

190-
### Docker (recommended)
210+
### Interactive REPL
191211

192212
```bash
193-
docker pull ghcr.io/ghashtag/trinity-node:latest
213+
tri # Start interactive mode
214+
```
215+
216+
### Generate Code
194217

195-
docker run -d --name trinity-node \
196-
-p 8080:8080 -p 9090:9090 -p 9333:9333/udp -p 9334:9334 \
197-
-v ~/.trinity:/data \
198-
ghcr.io/ghashtag/trinity-node:latest
218+
```bash
219+
tri code "create a REST API server in Zig"
220+
```
221+
222+
### Fix Bugs
223+
224+
```bash
225+
tri fix src/main.zig
199226
```
200227

201-
Check health:
228+
### Sacred Mathematics
202229

203230
```bash
204-
curl http://localhost:8080/health
205-
# {"status":"ok","model":"loaded"}
231+
tri phi 10 # Compute φ^10
232+
tri lucas 10 # Lucas L(10)
233+
tri spiral 5 # φ-spiral coordinates
206234
```
207235

208-
### Build from source
236+
### Build from Source
209237

210238
```bash
211239
git clone https://github.com/gHashTag/trinity.git
212240
cd trinity
213-
zig build # Build all targets
214-
zig build tri # Build the unified TRI CLI
241+
zig build tri # Build TRI CLI
215242
zig build test # Run all tests
216243
```
217244

@@ -221,35 +248,23 @@ Requires **Zig 0.15.x**.
221248

222249
## Docker Node
223250

224-
The Trinity node Docker image is published to GitHub Container Registry on every push to `main`.
251+
The Trinity CLI Docker image is published to GitHub Container Registry.
225252

226253
| | |
227254
|---|---|
228-
| **Image** | `ghcr.io/ghashtag/trinity-node:latest` |
229-
| **Platforms** | linux/amd64, linux/arm64 |
255+
| **Image** | `ghcr.io/ghashtag/trinity:latest` |
256+
| **Version** | `ghcr.io/ghashtag/trinity:1.0.1` |
257+
| **Platforms** | linux/amd64 |
230258
| **Base** | Alpine 3.19 |
231-
| **Size** | ~15 MB |
232-
| **Dockerfile** | [`deploy/Dockerfile.node`](deploy/Dockerfile.node) |
259+
| **Size** | ~8 MB |
260+
| **Dockerfile** | [`deploy/Dockerfile.tri`](deploy/Dockerfile.tri) |
233261

234-
### Ports
235-
236-
| Port | Protocol | Purpose |
237-
|------|----------|---------|
238-
| 8080 | TCP | HTTP API (REST, OpenAI-compatible) |
239-
| 9090 | TCP | Prometheus metrics |
240-
| 9333 | UDP | Peer discovery |
241-
| 9334 | TCP | Job distribution |
242-
243-
### Data volume
244-
245-
Mount `-v ~/.trinity:/data` to persist wallet, shards, and config across restarts.
246-
247-
### Stop / Restart
262+
### Run
248263

249264
```bash
250-
docker stop trinity-node # Stop
251-
docker start trinity-node # Restart (keeps data)
252-
docker rm trinity-node # Remove container (data persists in ~/.trinity)
265+
docker run -it --rm ghcr.io/ghashtag/trinity:latest --version
266+
# Or for interactive mode:
267+
docker run -it --rm ghcr.io/ghashtag/trinity:latest
253268
```
254269

255270
---
@@ -563,6 +578,12 @@ MIT -- see [LICENSE](LICENSE)
563578
---
564579

565580
<p align="center">
566-
<code>phi^2 + 1/phi^2 = 3 = Trinity</code><br>
567-
<code>3^21 = 10,460,353,203 $TRI</code>
581+
<a href="https://github.com/gHashTag/trinity/releases/v1.0.1"><strong>Download v1.0.1 "PURITY"</strong></a> &bull;
582+
<a href="https://gHashTag.github.io/trinity/">Dashboard</a> &bull;
583+
<a href="https://gHashTag.github.io/trinity/docs/">Documentation</a>
584+
</p>
585+
586+
<p align="center">
587+
<code>φ² + 1/φ² = 3 = TRINITY</code><br>
588+
<code>v1.0.1 PURITY — 28 February 2026</code>
568589
</p>

0 commit comments

Comments
 (0)