@cxtms/cx-schema 1.3.0 → 1.3.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.
@@ -6,6 +6,23 @@ argument-hint: <entity name or question about fields>
6
6
 
7
7
  Shared domain reference for CargoXplorer entities. Used by `cx-workflow` and `cx-module` skills for entity field names, types, navigation properties, enums, and customValues extension patterns.
8
8
 
9
+ ## Feature File Layout
10
+
11
+ All modules and workflows are organized under feature directories:
12
+
13
+ ```
14
+ features/
15
+ <feature_name>/
16
+ modules/ # UI module YAML files
17
+ workflows/ # Workflow YAML files
18
+ ```
19
+
20
+ When creating new modules or workflows, always place them under the correct feature directory:
21
+ - `features/<feature_name>/modules/<name>-module.yaml`
22
+ - `features/<feature_name>/workflows/<name>.yaml`
23
+
24
+ Use `--feature <feature_name>` with `cx-cli create` to automatically place files in the correct location.
25
+
9
26
  ## Entity Field Reference
10
27
 
11
28
  ### Primary Entities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cxtms/cx-schema",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Schema validation package for CargoXplorer YAML modules",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",