@hcmai/cli 0.2.0 → 0.3.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/README.md +18 -0
- package/dist/index.js +2050 -262
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,3 +25,21 @@ package and are stored locally through the HCM login flow.
|
|
|
25
25
|
|
|
26
26
|
Source and release automation are maintained in
|
|
27
27
|
[CNB](https://cnb.cool/hcm/hcm_nx_cli).
|
|
28
|
+
|
|
29
|
+
## WorkBuddy delivery projects
|
|
30
|
+
|
|
31
|
+
`@hcmai/cli@0.3.0` can synchronize a Chiron Skill and its dependency/file closure
|
|
32
|
+
into a WorkBuddy project while generating a stable project-local launcher:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
hcm skills sync model-query-dsl \
|
|
36
|
+
--target workbuddy \
|
|
37
|
+
--project ./customer-delivery \
|
|
38
|
+
--env production
|
|
39
|
+
|
|
40
|
+
./customer-delivery/.hcm-delivery/bin/hcm query Employee --limit 3 --output json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Use `hcm delivery assess`, `prepare`, and `execute` for the command risk contract.
|
|
44
|
+
The WorkBuddy plugin orchestrates these commands; it does not embed HCM Skills or
|
|
45
|
+
bypass the CLI.
|