air-dml 2.1.11 → 2.1.12

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 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  *The Open Standard for AI-Ready Data Modeling*
6
6
 
7
- AIR-DML is an extended DBML (Database Markup Language) parser designed for AI-driven development. It adds powerful features for modern data modeling while maintaining full backward compatibility with standard DBML.
7
+ AIR-DML is a data modeling language designed for AI-driven development. It provides a structured, human- and machine-readable syntax for database schemas enriched with business context.
8
8
 
9
9
  [![npm version](https://badge.fury.io/js/air-dml.svg)](https://www.npmjs.com/package/air-dml)
10
10
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
@@ -21,7 +21,7 @@ Generate ER diagrams from natural language using AI. Mode-ai is the reference im
21
21
 
22
22
  - Natural language to ER diagram generation
23
23
  - Interactive visual editor with drag & drop
24
- - Export to SQL, DBML, and more
24
+ - Export to SQL, AIR-DML, and more
25
25
 
26
26
  <br clear="left"/>
27
27
 
@@ -32,7 +32,7 @@ Generate ER diagrams from natural language using AI. Mode-ai is the reference im
32
32
  🌍 **Multilingual**: Logical names (aliases) in any language
33
33
  🎨 **Visual Design**: Coordinate and color information for diagram rendering
34
34
  🔄 **Polyglot Persistence**: Different database types per area
35
- 📦 **Extends DBML**: Fully compatible with standard DBML syntax
35
+ 📦 **Zero Dependencies**: Independent parser with no external dependencies
36
36
  💬 **Comment Preservation**: Leading comments are preserved and associated with elements
37
37
 
38
38
  ## Installation
@@ -317,17 +317,17 @@ interface Area {
317
317
  }
318
318
  ```
319
319
 
320
- ## Comparison: DBML vs AIR-DML
320
+ ## Key Features At a Glance
321
321
 
322
- | Feature | DBML | AIR-DML |
323
- |---------|------|---------|
324
- | **Focus** | Database schema | AI-ready + Business context |
325
- | **Logical names** | ❌ | ✅ `alias` attribute |
326
- | **Area management** | TableGroup (basic) | Area (extended: CommonColumns, database_type) |
327
- | **Visual info** | ❌ | ✅ Coordinates, colors, sizes |
328
- | **Multi-DB** | Project-level | Area-level (polyglot persistence) |
329
- | **AI optimization** | ❌ | ✅ LLM-friendly design |
330
- | **Comment preservation** | | Leading comments (v1.2.0+) |
322
+ | Feature | Description |
323
+ |---------|-------------|
324
+ | **Logical names** | `alias` attribute for human-readable names in any language |
325
+ | **Classification values** | `values` attribute for enums and status codes |
326
+ | **Area management** | Bounded context grouping with CommonColumns and per-area database type |
327
+ | **Visual layout** | Coordinates, colors, and sizes for diagram rendering |
328
+ | **Multi-DB** | Area-level database type (polyglot persistence) |
329
+ | **AI-optimized** | LLM-friendly syntax designed for generation and interpretation |
330
+ | **Zero dependencies** | Independent recursive descent parser |
331
331
 
332
332
  ## Changelog
333
333
 
@@ -383,13 +383,10 @@ For the complete AIR-DML specification, see [SPECIFICATION.md](./SPECIFICATION.m
383
383
 
384
384
  Apache-2.0 License - see [LICENSE](./LICENSE) file for details.
385
385
 
386
- AIR-DML extends [DBML](https://github.com/holistics/dbml) (also Apache-2.0).
387
-
388
386
  ## Credits
389
387
 
390
388
  - **Created by**: Data-mination Partners
391
- - **Technical collaboration**: Claude Opus 4.5 (Anthropic)
392
- - **Based on**: [@dbml/core](https://www.npmjs.com/package/@dbml/core) by Holistics
389
+ - **Technical collaboration**: Claude Sonnet 4.6 (Anthropic)
393
390
 
394
391
  ## Links
395
392
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "air-dml",
3
- "version": "2.1.11",
3
+ "version": "2.1.12",
4
4
  "description": "AI-Ready Data Modeling Language - Independent AIR-DML parser with zero dependencies",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",