@kvell007/embed-labs-local-bridge 0.1.0-alpha.103 → 0.1.0-alpha.105

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.
Files changed (2) hide show
  1. package/README.md +14 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -128,9 +128,20 @@ refreshes.
128
128
 
129
129
  Current local behavior is intentionally narrow:
130
130
 
131
- - Device discovery can report serial ports, RP2350 UF2 boot volumes,
132
- Rockchip-style USB Loader/Maskrom matches, and TaishanPi USB ECM reachability
133
- at the current default probe address.
131
+ - Device discovery observes OS USB/serial/network changes without claiming or
132
+ opening unrelated peripherals. The main inventory promotes only EmbedLabs
133
+ manageable development-board records: initialized board runtimes, RP2350
134
+ BOOTSEL/UF2 download targets, Rockchip-style USB Loader/Maskrom matches,
135
+ and TaishanPi USB ECM/runtime candidates. Generic USB devices, hubs, cameras,
136
+ debuggers, storage devices, and unrelated serial ports remain diagnostic
137
+ evidence only and are not operation targets.
138
+ - First-use boards that have no initialization image are handled through their
139
+ download mode. RP2350/Pico boards must enumerate as BOOTSEL/UF2, and
140
+ TaishanPi/RK3566 boards must enumerate as Loader/Maskrom/RockUSB or an
141
+ explicit user-selected target before initialization flashing. If an empty
142
+ board does not enumerate at all, the bridge cannot identify it; the user must
143
+ enter the board's download mode or explicitly select the board type before an
144
+ approved initialization flash plan can be built.
134
145
  - Debug tool scans only check PATH and bounded version/help command evidence;
135
146
  they do not open probes, start GDB servers, or create debug sessions.
136
147
  - RP2350 UF2 flashing copies a `.uf2` artifact to a mounted UF2 volume only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kvell007/embed-labs-local-bridge",
3
- "version": "0.1.0-alpha.103",
3
+ "version": "0.1.0-alpha.105",
4
4
  "description": "Go Local Bridge launcher for EmbedLabs local hardware inventory and board workflows. Experimental npm publish.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -18,11 +18,11 @@
18
18
  "embed-local-bridge": "dist/index.js"
19
19
  },
20
20
  "optionalDependencies": {
21
- "@embed-labs/local-bridge-darwin-arm64": "npm:@kvell007/embed-labs-local-bridge-darwin-arm64@0.1.0-alpha.103",
22
- "@embed-labs/local-bridge-linux-arm64": "npm:@kvell007/embed-labs-local-bridge-linux-arm64@0.1.0-alpha.103",
23
- "@embed-labs/local-bridge-linux-x64": "npm:@kvell007/embed-labs-local-bridge-linux-x64@0.1.0-alpha.103",
24
- "@embed-labs/local-bridge-win32-arm64": "npm:@kvell007/embed-labs-local-bridge-win32-arm64@0.1.0-alpha.103",
25
- "@embed-labs/local-bridge-win32-x64": "npm:@kvell007/embed-labs-local-bridge-win32-x64@0.1.0-alpha.103"
21
+ "@embed-labs/local-bridge-darwin-arm64": "npm:@kvell007/embed-labs-local-bridge-darwin-arm64@0.1.0-alpha.105",
22
+ "@embed-labs/local-bridge-linux-arm64": "npm:@kvell007/embed-labs-local-bridge-linux-arm64@0.1.0-alpha.105",
23
+ "@embed-labs/local-bridge-linux-x64": "npm:@kvell007/embed-labs-local-bridge-linux-x64@0.1.0-alpha.105",
24
+ "@embed-labs/local-bridge-win32-arm64": "npm:@kvell007/embed-labs-local-bridge-win32-arm64@0.1.0-alpha.105",
25
+ "@embed-labs/local-bridge-win32-x64": "npm:@kvell007/embed-labs-local-bridge-win32-x64@0.1.0-alpha.105"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public",