tirtc-device-builder 0.2.0 → 0.4.0
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/.codex-plugin/plugin.json +1 -1
- package/CHANGELOG.md +19 -0
- package/README.md +657 -362
- package/bin/esp32-kit-metadata.js +8 -0
- package/bin/install-esp32-kit.js +208 -0
- package/bin/setup-esp32.js +796 -0
- package/bin/tirtc-device-builder.js +19 -2
- package/package.json +2 -1
- package/skills/tirtc-esp32-builder/SKILL.md +11 -8
- package/skills/tirtc-esp32-builder/USAGE.md +30 -22
- package/skills/tirtc-esp32-builder/assets/developer-intake-prompt.md +50 -0
- package/skills/tirtc-esp32-builder/assets/hardware-ir-v2.example.json +122 -0
- package/skills/tirtc-esp32-builder/assets/report-template.md +15 -0
- package/skills/tirtc-esp32-builder/references/capability-rules.md +41 -16
- package/skills/tirtc-esp32-builder/references/environment.md +25 -4
- package/skills/tirtc-esp32-builder/references/hardware-ir.md +44 -24
- package/skills/tirtc-esp32-builder/references/porting-risks.md +49 -0
- package/skills/tirtc-esp32-builder/references/reporting.md +5 -1
- package/skills/tirtc-esp32-builder/references/workflow.md +10 -9
- package/skills/tirtc-esp32-builder/scripts/doctor.py +4 -4
- package/skills/tirtc-esp32-builder/scripts/hardware_ir.py +670 -40
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
This project follows Semantic Versioning.
|
|
4
4
|
|
|
5
|
+
## 0.4.0
|
|
6
|
+
|
|
7
|
+
- Add Hardware IR v2 with selected MJPEG, H.264, or H.265 video profiles while retaining schema v1 compatibility.
|
|
8
|
+
- Gate I2C driver-family consistency, I2S/GPIO ownership, audio channel mapping, camera realtime policy, and startup/media memory budgeting.
|
|
9
|
+
- Model Wi-Fi credential methods independently from board hardware: SoftAP, BLE, SmartConfig, factory NVS, development configuration, or documented custom provisioning can be selected from evidence.
|
|
10
|
+
- Block credentials committed to source and require a reprovisioning path plus a selected verification-code/factory/custom binding profile, stored-binding handling, and reset behavior.
|
|
11
|
+
- Bind HIL status to the exact firmware SHA-256 and acceptance level instead of inheriting evidence from older artifacts.
|
|
12
|
+
- Add a board-agnostic developer intake prompt and bring-up risk gates covering sensor identity, TLS/memory, Wi-Fi quality, media counters, and one-variable HIL diagnosis.
|
|
13
|
+
|
|
14
|
+
## 0.3.0
|
|
15
|
+
|
|
16
|
+
- Add reproducible packaging for a minimal, checksummed ESP32-S3 Device Kit release asset.
|
|
17
|
+
- Download, verify, cache, and reuse the pinned Device Kit instead of cloning the full ThingConnect source repository during automatic setup.
|
|
18
|
+
- Add a read-only `setup esp32` check that reports the smallest next action.
|
|
19
|
+
- Add `setup esp32 --install` for resumable user-space installation of the Codex Skill, versioned ESP32 Device Kit, ESP-IDF 5.5.4, and ESP32-S3 tools.
|
|
20
|
+
- Reuse valid existing workspaces and ESP-IDF installations without overwriting them.
|
|
21
|
+
- Keep system package installation and persistent shell-profile changes outside automatic setup.
|
|
22
|
+
- Save a path-only managed configuration and environment helper for later Skill runs.
|
|
23
|
+
|
|
5
24
|
## 0.2.0
|
|
6
25
|
|
|
7
26
|
- Publish the repository as the `tirtc-device-builder` npm package.
|