Skip to content

Commit 64ec04a

Browse files
author
Voidborne Agent
committed
release: v1.7.0 - roundtrip tests, Go implementation, Pilot Protocol
Changes: - Add comprehensive roundtrip test suite (50 tests) - Fix english_to_lambda domain atom lookup - Improve separator logic for atom boundaries - Add Go implementation (src/go/) - Add Pilot Protocol integration docs All tests passing.
1 parent fbdcddc commit 64ec04a

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

SKILL.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ description: >-
66
or discussing the protocol. Triggers on Lambda syntax like ?Uk/co or !It>Ie.
77
---
88

9-
# Λ (Lambda) Language v1.6.0
9+
# Λ (Lambda) Language v1.7.0
1010

1111
Minimal agent-to-agent communication protocol. 5-8x compression vs natural language.
1212

13+
## v1.7 Changes
14+
- **Added roundtrip test suite**: 50 comprehensive tests for Lambda↔English translation
15+
- **Fixed english_to_lambda**: Domain atoms now properly included in reverse lookup
16+
- **Improved separator logic**: Better handling of single/double char atom boundaries
17+
- **Added Go implementation**: Native Go encoder/decoder for Pilot Protocol integration
18+
- **Pilot Protocol integration**: Docs and helpers for P2P agent communication
19+
1320
## v1.6 Changes
1421
- **Fixed domain conflicts**: Renamed conflicting domain atoms with `x` prefix
15-
- cd: `vr``xv`, `cl``xc`, `bg``xb`, `ts``xt`, `mg``xm`
16-
- sc: `ch``xh`, `bo``xo`, `pt``xp`, `ty``xy`, `xp``xr`, `ob``xb`, `mg``xg`
17-
- emo: `fr``xf`, `sr``xs`, `lo``xl`, `ho``xh`, `sm``xm`
18-
- soc: `pt``xp`, `cp``xc`, `sh``xs`, `nw``xn`, `if``xi`, `rp``xr`, `tt``xt`, `ag``xa`, `cm``xm`
19-
- vb: `aw``xw`, `ev``xe`, `cr``xc`, `tt``xt`, `ac``xa`, `wv``xv`, `an``xn`, `rt``xr`, `tm``xm`
2022
- **Added missing atoms**: `hp` (help), `sp` (stop), `rn` (run), `wk` (work), `us` (use), `tx` (send), `rx` (receive)
21-
- Extended atoms: 139 (was 132)
23+
- Extended atoms: 139
2224

2325
## v1.5 Changes
2426
- Fixed duplicate atoms: removed `vy`/`go`/`ah` (kept `vr`/`gd`/`al`)

src/atoms.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"version": "1.6",
2+
"version": "1.7",
33
"changelog": {
4+
"1.7": "Added roundtrip tests, fixed english_to_lambda domain lookup, improved separator logic, added Go implementation",
45
"1.6": "Fixed domain conflicts, added missing atoms (hp/st/rn/wk/us/tx/rx), renamed conflicting domain atoms",
56
"1.5": "Fixed duplicate atoms, removed vb conflict",
67
"1.4": "Added disambiguation, domain prefixes"

0 commit comments

Comments
 (0)