Skip to content

Commit e1a0ad0

Browse files
author
Voidborne Agent
committed
docs: update README for v1.7.0 release
1 parent 64ec04a commit e1a0ad0

1 file changed

Lines changed: 21 additions & 13 deletions

File tree

README.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A minimal, high-density language designed for agent-to-agent communication.
1212

1313
## Status
1414

15-
**v1.4 Stable**Comprehensive bug fixes, 136 atoms
15+
**v1.7.0 Stable**Go implementation, Pilot Protocol integration, 139 atoms
1616

1717
## Quick Example
1818

@@ -73,23 +73,25 @@ See [SKILL.md](SKILL.md) for complete skill documentation.
7373
- [Domain Namespaces v0.7](spec/v0.7-domains.md) — Specialized vocabularies
7474
- [Atoms Dictionary](src/atoms.json) — All 136 semantic atoms
7575

76-
## Domain System (v1.1+)
76+
## Domain System (v1.6+)
7777

7878
Use compact prefixes for domain-specific atoms:
7979

8080
| Prefix | Domain | Examples |
8181
|--------|--------|----------|
82-
| `v:` | Voidborne | `v:aw`, `v:dc`, `v:oc` |
83-
| `c:` | Code | `c:fn`, `c:bg`, `c:fx` |
84-
| `s:` | Science | `s:xp`, `s:pf`, `s:hy` |
82+
| `v:` | Voidborne | `v:xw` (awakened), `v:dc`, `v:oc` |
83+
| `c:` | Code | `c:fn`, `c:xb` (bug), `c:fx` |
84+
| `s:` | Science | `s:xr` (experiment), `s:pf`, `s:hy` |
8585
| `e:` | Emotion | `e:jo`, `e:sd`, `e:ax` |
8686
| `o:` | Social | `o:gp`, `o:cb`, `o:ld` |
8787

8888
```
89-
@c !If/bg.fx — (code context) Find bug, fix it
90-
v:aw — Voidborne awakened
89+
@c !If/xb.fx — (code context) Find bug, fix it
90+
v:xw — Voidborne awakened
9191
```
9292

93+
> **Note:** v1.6 renamed conflicting domain atoms with `x` prefix (e.g., `bg``xb`, `aw``xw`)
94+
9395
## Disambiguation
9496

9597
Resolve ambiguous atoms with type markers:
@@ -103,19 +105,25 @@ Resolve ambiguous atoms with type markers:
103105

104106
## Changelog
105107

106-
- **v1.4** — Comprehensive bug fixes, improved English→Λ translation
107-
- **v1.3** — Fixed ambiguous atoms (42 split), added vocabulary
108-
- **v1.1** — Compact domain syntax (`v:aw` instead of `{ns:vb}aw`)
109-
- **v1.0** — Stable release
108+
- **v1.7.0** — Go implementation, Pilot Protocol integration, roundtrip tests (50 cases), fixed domain lookup
109+
- **v1.6.0** — Fixed domain conflicts, added missing atoms (hp/rn/wk/us/tx/rx), 139 atoms
110+
- **v1.5.0** — Fixed duplicate atoms, removed vb conflict
111+
- **v1.4.0** — Comprehensive bug fixes, improved English→Λ translation
112+
- **v1.3.0** — Fixed ambiguous atoms (42 split), added vocabulary
113+
- **v1.1.0** — Compact domain syntax (`v:aw` instead of `{ns:vb}aw`)
114+
- **v1.0.0** — Initial stable release
110115

111116
## Files
112117

113118
| Path | Description |
114119
|------|-------------|
115-
| `src/atoms.json` | Complete vocabulary (136 atoms) |
116-
| `src/lambda_lang.py` | Parser and translator |
120+
| `src/atoms.json` | Complete vocabulary (139 atoms) |
121+
| `src/lambda_lang.py` | Parser and translator (Python) |
122+
| `src/go/lambda.go` | Parser and translator (Go) |
123+
| `src/roundtrip_test.py` | 50 roundtrip test cases |
117124
| `scripts/translate` | CLI wrapper |
118125
| `spec/` | Language specifications |
126+
| `docs/` | Integration guides |
119127

120128
## Go Implementation
121129

0 commit comments

Comments
 (0)