@comate/zulu 1.5.1 → 1.5.2

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 CHANGED
@@ -86,6 +86,8 @@ zulu run [args]
86
86
  - `--retry` 必须是大于等于 `0` 的整数
87
87
  - `--retry` 和 `--retry-query` 必须同时传入
88
88
  - `--display legacy` 不支持 `--retry`
89
+ - 指定 `--conversation` 或使用 `--continue` 解析到已有会话时,同一 conversation 的多个 `zulu run` 会按启动入队顺序严格串行执行
90
+ - 不同 conversation 的 `zulu run` 互不阻塞;未指定 conversation 的新会话不参与该串行队列
89
91
 
90
92
  示例:
91
93
  ```shell
@@ -18,10 +18,15 @@ Generate new images or edit existing ones using Google's Nano Banana Pro API (Ge
18
18
  - **Windows:** `curl.exe` (Win10 1803+) and a PowerShell host. **Default to `powershell.exe`** (Windows PowerShell 5.1, ships with every Windows 10/11) — no detection needed. Only fall back to `pwsh.exe` (PowerShell 7+) if `powershell.exe` fails or is unavailable.
19
19
  - **Credentials:** the script requires the `COMATE_USERNAME_ENCRYPTED` environment variable to be set. This is automatically exported by the Comate IDE when the user is signed in.
20
20
 
21
- Agents do **not** need to export the env var themselves as long as the user is signed in to Comate.
22
-
23
21
  ---
24
22
 
23
+ ## Skill Environment
24
+
25
+ - Skill path: SKILL_DIR=${COMATE_SKILL_DIR}
26
+ - Environment variable: COMATE_USERNAME_ENCRYPTED=${COMATE_USERNAME_ENCRYPTED}
27
+ - Execution rule: Before running the executable, environment variables must be exported first.
28
+ - Execution example: COMATE_USERNAME_ENCRYPTED=${COMATE_USERNAME_ENCRYPTED} ${COMATE_SKILL_DIR}/scripts/generate-image.sh agrs ...
29
+
25
30
  ## PowerShell host on Windows
26
31
 
27
32
  **Default: `powershell.exe`** (Windows PowerShell 5.1). It ships with every Windows 10/11, so no probing is required — just call it directly.