create-dql-app 1.11.10 → 1.12.1

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.11.10",
3
+ "version": "1.12.1",
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",
@@ -12,6 +12,12 @@ The core path is:
12
12
  source data -> DQL block -> business_view -> dashboard/app/AI answer
13
13
  ```
14
14
 
15
+ Shared source includes `domains/`, `skills/`, `blocks/`, `notebooks/`, `apps/`,
16
+ tests, and governed learning evidence under `.dql/hints/`, `.dql/traces/`,
17
+ `.dql/evaluations/`, and `.dql/reviews/`. Rebuildable indexes, connectors,
18
+ credentials, and private state remain ignored under their granular `.dql/`
19
+ subdirectories. Do not broadly ignore `.dql/`.
20
+
15
21
  Run `npm run compile` to produce `dql-manifest.json`, the local manifest that
16
22
  connects technical lineage with business lineage.
17
23
 
@@ -1,7 +1,19 @@
1
1
  # DQL
2
- .dql/
3
2
  dql-manifest.json
4
3
  *.run.json
4
+ **/.dql/runs/
5
+ **/.dql/cache/
6
+ **/.dql/imports/
7
+ **/.dql/local/
8
+ **/.dql/runtimes/
9
+ **/.dql/connectors/
10
+ **/.dql/memory/
11
+ **/.dql/migration-staging/
12
+ **/.dql/docker-starter/
13
+ **/.dql/oauth-credentials.json
14
+ **/.dql/provider-settings.json
15
+ **/.dql/mcp-servers.json
16
+ **/.dql-user-prefs.json
5
17
 
6
18
  # Local AI agent client config generated by `dql connect`
7
19
  .mcp.json
@@ -11,7 +11,7 @@
11
11
  "validate": "dql validate"
12
12
  },
13
13
  "devDependencies": {
14
- "@duckcodeailabs/dql-cli": "^1.11.10"
14
+ "@duckcodeailabs/dql-cli": "^1.12.1"
15
15
  },
16
16
  "engines": {
17
17
  "node": ">=20"