tirtc-device-builder 0.7.0 → 0.7.1

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tirtc-device-builder",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Codex workflows for building and validating TiRTC device firmware across supported chip platforms.",
5
5
  "author": {
6
6
  "name": "TangeAI",
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This project follows Semantic Versioning.
4
4
 
5
+ ## 0.7.1
6
+
7
+ - Split clean-room bootstrap from Skill execution: install or replace the pinned Skill before Codex starts, restart the session, then run read-only version and Doctor checks before generation.
8
+
5
9
  ## 0.7.0
6
10
 
7
11
  - Separate the platform/Web video contract (MJPEG, H.264, and H.265 on stream 11) from the single codec profile selected by a board; keep the LCKFB ESP32-S3 adapter on MJPEG without narrowing platform capability.
package/README.md CHANGED
@@ -881,8 +881,8 @@ metadata 中的版本、标签、上游 commit 和期望 SHA-256 必须与本地
881
881
 
882
882
  ```bash
883
883
  npm test
884
- git tag -a v0.7.0 -m "v0.7.0"
885
- git push origin v0.7.0
884
+ git tag -a v0.7.1 -m "v0.7.1"
885
+ git push origin v0.7.1
886
886
  ```
887
887
 
888
888
  不要重复发布已经存在的 npm 版本。版本变化同步更新 `package.json`、`.codex-plugin/plugin.json` 和发布说明。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tirtc-device-builder",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Install and run TiRTC device-development skills for Codex.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -2,13 +2,24 @@ $tirtc-esp32-builder
2
2
 
3
3
  请在当前工作区完成一次立创·实战派 ESP32-S3 的 ThingConnect TiRTC clean-room L-1/L0/L1 接入验证。
4
4
 
5
- 这是 Skill、提示词和开发板资料的独立有效性测试。允许访问外网。先运行:
5
+ 这是 Skill、提示词和开发板资料的独立有效性测试。允许访问外网。
6
+
7
+ 前置条件(必须由开发者在启动本次 Codex 会话前完成,不属于本提示词内的操作):
8
+
9
+ ```bash
10
+ npx --yes tirtc-device-builder@0.7.1 setup esp32 --install --force-skill
11
+ ```
12
+
13
+ 该命令只允许在当前用户目录安装固定版本的 Skill、managed ESP32 Device Kit、ESP-IDF 和工具链;禁止 sudo、系统级包变更和修改 shell profile。安装完成后,开发者必须关闭原 Codex 会话,再从本 clean-room 工作区启动一个新会话,然后粘贴本提示词。
14
+
15
+ 本轮第一步先只读运行:
6
16
 
7
17
  ```bash
8
- npx --yes tirtc-device-builder@0.7.0 setup esp32 --install
18
+ npx --yes tirtc-device-builder@0.7.1 --version
19
+ npx --yes tirtc-device-builder@0.7.1 setup esp32
9
20
  ```
10
21
 
11
- 允许该命令在当前用户目录安装固定版本的 Skill、managed ESP32 Device Kit、ESP-IDF 和工具链;禁止 sudo、系统级包变更和修改 shell profile。安装后必须使用 managed 环境继续执行。
22
+ 必须确认 npm 包/Plugin/Skill 0.7.1、Device Kit 1.1.1,且 Doctor `OVERALL: PASS`。如果版本不一致、Skill 是在当前会话启动后才安装,或环境检查未通过,停止并报告前置条件不成立;不要在当前会话中替换 Skill 后继续生成工程。
12
23
 
13
24
  工作区与 clean-room 边界:
14
25
  - 将启动 Codex 时的当前目录定义为 `WORKSPACE_ROOT`。