create-dql-app 1.6.33 → 1.6.34
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 +1 -1
- package/templates/starter/README.md +3 -3
- package/templates/starter/dql.config.json +5 -0
- package/templates/starter/notebooks/welcome.dqlnb +1 -1
- package/templates/starter/package.json +1 -1
- package/templates/starter/tests/blocks/.gitkeep +1 -0
- /package/templates/starter/{blocks → domains}/.gitkeep +0 -0
- /package/templates/starter/{business-views → skills}/.gitkeep +0 -0
- /package/templates/starter/{terms → tests/agent-evals}/.gitkeep +0 -0
package/package.json
CHANGED
|
@@ -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.
|
|
53
|
-
3.
|
|
54
|
-
4. Compose business outcomes under `
|
|
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
|
|
@@ -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/`.\
|
|
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
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|