@aipt/cli 0.1.26 → 0.1.28

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
@@ -263,6 +263,18 @@ Web Application 锁定 React 19、Vite 8 和 TypeScript 6 的精确版本。Veri
263
263
 
264
264
  本地 Application 配置先通过 `idpctl app config-init` 物化到 `$APP_CONFIG_DIR`,然后再生成和应用部署 Plan:
265
265
 
266
+ 只读检查应优先使用正式 Readiness 命令;它在配置尚未完成时仍返回结构化状态,不创建目录或 Secret:
267
+
268
+ ```bash
269
+ export APP_CONFIG_DIR=/absolute/config/app
270
+ dyyto config readiness --project /absolute/workspace/apps/api --json
271
+ dyyto config readiness --workspace /absolute/workspace --json
272
+ dyyto config readiness --workspace /absolute/workspace --check --json
273
+ dyyto config inspect --project /absolute/workspace/apps/api --json
274
+ ```
275
+
276
+ `readiness` 用于判断 `not-declared | missing | incomplete | ready | invalid`;工作区模式按 `pnpm-workspace.yaml` 和每个 Unit Manifest 稳定发现全部 Application,单项失败不阻断其他结果。`--check` 在全部就绪时退出 0,存在待配置项时退出 3,存在无效配置时退出 4。`inspect` 是严格投影,配置不完整时以非零状态退出。`.env.example` 只用于未迁移历史项目的兼容维护提示,不是正式配置事实源。
277
+
266
278
  ```bash
267
279
  idpctl app config-init \
268
280
  --project /absolute/workspace/apps/api \