@aibyzero/byz 0.1.4 → 0.1.5
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/CHANGELOG.md +6 -0
- package/dist/cli.js +4 -2
- package/dist/runtime/bundle/chunks/{chunk-QLXFMGH6.js → chunk-WMLOZBQV.js} +1 -1
- package/dist/runtime/bundle/cli.js +1 -1
- package/dist/runtime/bundle/index.js +1 -1
- package/dist/runtime/bundle/rpc-entry.js +1 -1
- package/dist/workflows.js +8 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.1.5 - 2026-08-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Made `byz workflow status` report the effective workflow when no target is given, distinguish active and available `none` states, and avoid unrelated workflow-root checks for `none` ([#20](https://github.com/kingxiaozhe/byz/pull/20)).
|
|
10
|
+
|
|
5
11
|
## 0.1.4 - 2026-08-27
|
|
6
12
|
|
|
7
13
|
### Added
|
package/dist/cli.js
CHANGED
|
@@ -29,10 +29,12 @@ try {
|
|
|
29
29
|
console.error("BYZ updates: byz update (npm-managed global installations only)");
|
|
30
30
|
console.error("BYZ Fast: --fast (thinking=low; optional model: BYZ_FAST_MODEL)");
|
|
31
31
|
console.error("BYZ workflows: --workflow <cm|cm-plugin|none> (default: BYZ_WORKFLOW or cm)");
|
|
32
|
-
console.error(
|
|
32
|
+
console.error(
|
|
33
|
+
"Commands: byz workflow list | byz workflow status [cm|cm-plugin|none] | byz workflow check <cm|cm-plugin>",
|
|
34
|
+
);
|
|
33
35
|
}
|
|
34
36
|
|
|
35
|
-
if (await handleWorkflowCommand(commandArgs)) {
|
|
37
|
+
if (await handleWorkflowCommand(commandArgs, { workflowId: parsedWorkflow.workflowId })) {
|
|
36
38
|
// BYZ-owned command handled without starting the Pi runtime.
|
|
37
39
|
} else if (await handleByzUpdate(commandArgs)) {
|
|
38
40
|
// BYZ release metadata and package target stay independent from Pi.
|