modscape 1.0.7 → 1.0.8

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.
package/README.ja.md CHANGED
@@ -113,6 +113,13 @@ modscape dev ./models
113
113
  ```
114
114
  - **永続化**: レイアウトやメタデータの変更は、直接ファイルに書き戻されます(オートセーブ対応)。
115
115
 
116
+ ### 新規モデルの作成
117
+ ```bash
118
+ modscape new models/sales/customer.yaml
119
+ ```
120
+ - **再帰的作成**: 指定したパスの親ディレクトリが存在しない場合、自動的に作成します。
121
+ - **ボイラープレート**: ドメイン、3階層ネーミング、リレーション、リネージの例が含まれた有効なYAMLファイルを生成します。
122
+
116
123
  ### ビルドモード (静的サイト)
117
124
  ```bash
118
125
  modscape build ./models -o docs-site
package/README.md CHANGED
@@ -129,6 +129,13 @@ modscape dev ./models
129
129
  ```
130
130
  - **Persistence**: Layout and metadata changes are saved directly to your files (supports Auto-save).
131
131
 
132
+ ### Create New Model
133
+ ```bash
134
+ modscape new models/sales/customer.yaml
135
+ ```
136
+ - **Recursive Scaffolding**: Automatically creates parent directories if they don't exist.
137
+ - **Boilerplate**: Generates a valid YAML model with examples of domains, tri-layer naming, relationships, and lineage.
138
+
132
139
  ### Build Mode (Static Site)
133
140
  ```bash
134
141
  modscape build ./models -o docs-site
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modscape",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Modscape: A YAML-driven data modeling visualizer CLI",
5
5
  "repository": {
6
6
  "type": "git",
package/src/index.js CHANGED
@@ -16,7 +16,7 @@ const program = new Command();
16
16
  program
17
17
  .name('modscape')
18
18
  .description('Modscape: A YAML-driven data modeling visualizer CLI')
19
- .version('1.0.7');
19
+ .version('1.0.8');
20
20
 
21
21
  program
22
22
  .command('init')
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "visualizer",
3
3
  "private": true,
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",