ai-project-manage-cli 4.0.2 → 4.0.3

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -634,6 +634,11 @@ function runConnect(opts) {
634
634
  for await (const event of run.stream()) {
635
635
  if (event.type === "status") {
636
636
  console.log(`[Status]`, event.message || event.status);
637
+ if (event.status === "ERROR") {
638
+ console.log("===============================================");
639
+ console.log(JSON.stringify(event, null, 2));
640
+ console.log("===============================================");
641
+ }
637
642
  continue;
638
643
  }
639
644
  if (event.type === "assistant") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-project-manage-cli",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "命令行工具:后续用于调用平台后端 API 完成运维与自动化操作",
5
5
  "type": "module",
6
6
  "private": false,