@aipt/cli 0.1.25 → 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 +13 -1
- package/dist/application-runner.js +208 -188
- package/dist/application.js +118 -103
- package/dist/chunk.js +5 -2
- package/dist/optional-runtime.js +24 -24
- package/dist/package-releases/aipt--cli/0.1.26/release.json +29 -0
- package/dist/package-releases/aipt--cli/0.1.28/release.json +29 -0
- package/dist/package-releases/aipt--idp-setup/0.1.3/release.json +31 -0
- package/dist/package-releases/aipt--platform-kernel/0.1.8/release.json +33 -0
- package/docs/bootstrap.md +1 -1
- package/docs/vibe-coding-guide.md +1 -1
- package/documentation-manifest.json +3 -3
- package/package.json +23 -23
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Dyyto Engineering Platform 的正式命令行 Composition Root。CLI 负责工
|
|
|
13
13
|
`C:\Users\<用户名>\Desktop\works\sources`。注意命令中必须输入半角 ASCII `~`,不能输入中文全角“~”。
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
corepack pnpm dlx @aipt/idp-setup@0.1.
|
|
16
|
+
corepack pnpm dlx @aipt/idp-setup@0.1.3 init \
|
|
17
17
|
--root ~/Desktop/works/sources
|
|
18
18
|
|
|
19
19
|
source ~/Desktop/works/sources/config/idp/generated/sources.env
|
|
@@ -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 \
|