@blackwell-systems/gcf 0.1.2 → 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 (2) hide show
  1. package/README.md +14 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,9 +6,11 @@
6
6
 
7
7
  # gcf-typescript
8
8
 
9
- TypeScript implementation of [GCF (Graph Compact Format)](https://github.com/blackwell-systems/gcf).
9
+ TypeScript implementation of [GCF (Graph Compact Format)](https://gcformat.com/) — the most token-efficient wire format for LLMs. A drop-in alternative to JSON and TOON for any structured data.
10
10
 
11
- **84% fewer tokens than JSON. 32% fewer than TOON. 100% LLM comprehension accuracy at 500 symbols, where JSON fails.**
11
+ **79% fewer input tokens than JSON. 75% fewer output tokens. 52% smaller than TOON. 100% LLM comprehension at 500 symbols, where JSON fails at 66.7%.**
12
+
13
+ Docs: [gcformat.com](https://gcformat.com/) · [Playground](https://gcformat.com/playground.html) · [GCF vs TOON](https://gcformat.com/guide/vs-toon.html)
12
14
 
13
15
  ## Install
14
16
 
@@ -16,7 +18,7 @@ TypeScript implementation of [GCF (Graph Compact Format)](https://github.com/bla
16
18
  npm install @blackwell-systems/gcf
17
19
  ```
18
20
 
19
- Zero dependencies. TypeScript-first. Includes CLI.
21
+ Zero dependencies. TypeScript-first. Includes CLI. Don't want to change code? Use the [MCP proxy](https://github.com/blackwell-systems/gcf-proxy) for zero-code adoption.
20
22
 
21
23
  ## CLI
22
24
 
@@ -191,11 +193,16 @@ GCF wins on every dataset except deeply nested config (75 tokens on a 618-token
191
193
 
192
194
  Reproducible: [blackwell-systems/toon@gcf-comparison](https://github.com/blackwell-systems/toon/tree/gcf-comparison)
193
195
 
194
- ## Related
196
+ ## Links
195
197
 
196
- - [Specification](https://github.com/blackwell-systems/gcf) (grammar, encoding rules, design constraints)
197
- - [gcf-go](https://github.com/blackwell-systems/gcf-go) (Go implementation)
198
- - [TOON benchmark fork](https://github.com/blackwell-systems/toon/tree/gcf-comparison) (reproducible token counts)
198
+ - [Documentation](https://gcformat.com/)
199
+ - [Playground](https://gcformat.com/playground.html)
200
+ - [Specification](https://github.com/blackwell-systems/gcf)
201
+ - [Go library](https://github.com/blackwell-systems/gcf-go)
202
+ - [Python library](https://github.com/blackwell-systems/gcf-python)
203
+ - [MCP Proxy](https://github.com/blackwell-systems/gcf-proxy) (zero-code adoption)
204
+ - [GCF vs TOON](https://gcformat.com/guide/vs-toon.html)
205
+ - [TOON benchmark fork](https://github.com/blackwell-systems/toon/tree/gcf-comparison)
199
206
 
200
207
  ## License
201
208
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blackwell-systems/gcf",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "TypeScript implementation of GCF (Graph Compact Format) - token-optimized wire format for LLM tool responses",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",