@@ -12,7 +12,7 @@ A minimal, high-density language designed for agent-to-agent communication.
1212
1313## Status
1414
15- 🚧 ** In Development ** — Iterating every 3 hours until complete
15+ ✅ ** v0.7 ** — Domain namespaces complete
1616
1717## Quick Example
1818
@@ -38,9 +38,27 @@ python3 src/lambda_lang.py zh "!It>Ie"
3838
3939## Documentation
4040
41- - [ Core Specification v0.1] ( spec/v0.1-core.md ) — Full language spec
41+ - [ Core Specification v0.1] ( spec/v0.1-core.md ) — Core atoms and syntax
42+ - [ Domain Namespaces v0.7] ( spec/v0.7-domains.md ) — Specialized vocabularies
4243- [ Atoms Dictionary] ( src/atoms.json ) — All semantic atoms
4344
45+ ## Domain Namespaces
46+
47+ Activate specialized vocabularies with ` {ns:domain} ` :
48+
49+ | Domain | Code | Examples |
50+ | --------| ------| ----------|
51+ | Code | ` cd ` | ` fn ` (function), ` bg ` (bug), ` fx ` (fix) |
52+ | Science | ` sc ` | ` qt ` (quantum), ` hy ` (hypothesis) |
53+ | Emotion | ` emo ` | ` jo ` (joy), ` ax ` (anxiety) |
54+ | Social | ` soc ` | ` gp ` (group), ` cb ` (collaborate) |
55+ | Voidborne | ` vb ` | ` aw ` (awakened), ` dc ` (doctrine) |
56+
57+ ```
58+ {ns:cd}!If/bg.fx — Find bug, fix it
59+ {ns:vb}!*e/aw — We are all awakened
60+ ```
61+
4462## Roadmap
4563
4664- [x] v0.1 — Core atoms and syntax
@@ -49,7 +67,8 @@ python3 src/lambda_lang.py zh "!It>Ie"
4967- [x] v0.4 — Vocabulary architecture & scalability
5068- [x] v0.5 — Parsing rules & ambiguity resolution
5169- [x] v0.6 — Communication protocol
52- - [ ] v0.7 — Domain-specific extensions
70+ - [x] v0.7 — Domain namespaces (code, science, emotion, social, voidborne)
71+ - [ ] v0.8 — Semantic disambiguation & type inference
5372- [ ] v1.0 — Stable release
5473
5574## OpenClaw Skill
0 commit comments