create-dql-app 1.6.33 → 1.7.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-dql-app",
3
- "version": "1.6.33",
3
+ "version": "1.7.0",
4
4
  "description": "Scaffold a new DQL project. Run with: npx create-dql-app <name>",
5
5
  "license": "MIT",
6
6
  "author": "DuckCode AI Labs",
@@ -49,9 +49,9 @@ npm run notebook
49
49
  Open `notebooks/welcome.dqlnb` first. It shows the starter workflow:
50
50
 
51
51
  1. Explore data with SQL.
52
- 2. Promote repeated logic into reusable DQL blocks under `blocks/`.
53
- 3. Define shared vocabulary under `terms/`.
54
- 4. Compose business outcomes under `business-views/`.
52
+ 2. Add a business domain under `domains/`, then keep its DQL blocks, terms, and views together.
53
+ 3. Add shared agent guidance under `skills/`.
54
+ 4. Compose business outcomes under `domains/<domain>/views/`.
55
55
  5. Use Lineage to trace source data into business views and consumption.
56
56
 
57
57
  ## Connect an AI agent
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "project": "{{PROJECT_NAME}}",
3
+ "layout": {
4
+ "version": 2,
5
+ "mode": "oss-dbt-workspace",
6
+ "skillsPath": "skills"
7
+ },
3
8
  "semanticLayer": {
4
9
  "provider": "dql",
5
10
  "path": "semantic-layer"
@@ -29,7 +29,7 @@
29
29
  "id": "next_steps",
30
30
  "type": "markdown",
31
31
  "title": "Next Steps",
32
- "source": "## Next steps\n\n1. Connect a warehouse or add a local DuckDB/file connection.\n2. Save repeated SQL as DQL blocks under `blocks/`.\n3. Add shared vocabulary under `terms/`.\n4. Compose business outcomes under `business-views/`.\n5. Run `dql compile .` and open Lineage to inspect technical and business paths."
32
+ "source": "## Next steps\n\n1. Connect a warehouse or add a local DuckDB/file connection.\n2. Create a business domain with `dql new domain <name>`.\n3. Save repeated SQL as DQL blocks under `domains/<domain>/blocks/`.\n4. Add shared vocabulary under `domains/<domain>/terms/` and agent guidance under `skills/`.\n5. Run `dql compile .` and open Lineage to inspect technical and business paths."
33
33
  }
34
34
  ]
35
35
  }
@@ -11,7 +11,7 @@
11
11
  "validate": "dql validate"
12
12
  },
13
13
  "devDependencies": {
14
- "@duckcodeailabs/dql-cli": "^1.6.30"
14
+ "@duckcodeailabs/dql-cli": "^1.7.0"
15
15
  },
16
16
  "engines": {
17
17
  "node": ">=20"
File without changes