beacon_bridge 0.1.3
beacon_bridge: ^0.1.3 copied to clipboard
Desktop companion CLI for beacon_widget. Receives tapped widgets from your running app and copies a paste-ready code reference to your clipboard.
0.1.3 #
- Shorten the package description to pub.dev's recommended 60–180 characters.
- Add an
example/directory walking through a full session. - Set the formatter's page width to 120 to match the codebase, and format accordingly.
0.1.2 #
- Add IDE setup instructions for Android Studio / IntelliJ and VS Code, covering
both halves of the setup: passing
--vmservice-out-fileto your app's run configuration, and running the bridge alongside it (a Shell Script run configuration, or atasks.jsontask). - Document that
~/.pub-cache/binmust be on yourPATHafterdart pub global activate.
0.1.1 #
- Point documentation at the Flutter package's published name,
beacon_widget. The 0.1.0 release referred to it asbeacon, a name pub.dev rejected as too similar to the existingbeaconspackage.
0.1.0 #
Initial release.
- Attaches to a
flutter runyou started yourself — it never spawns or wrapsflutter run, so it works with whatever flavor, device or run configuration you already use. - Discovers the Dart VM Service by watching the file
flutter runwrites with--vmservice-out-file, and reconnects automatically across hot restarts and app relaunches. - Writes
.ref/sel-<id>.jsonplus a cropped.pngfor every selection, and copies a compact, paste-ready[ref] ...line to your clipboard. --format=multilinefor terminal agents that handle newlines; the default is single-line, since many chat inputs treat a newline as "send".- Handles combined multi-widget selections from
beacon_widget's selection stack. - Housekeeping: prunes
.ref/sel-*older than an hour, on startup and periodically while running; warns once if.ref/looks missing from your.gitignore.
Pairs with the beacon_widget Flutter package,
which provides the on-device half.