buoy 0.1.0 copy "buoy: ^0.1.0" to clipboard
buoy: ^0.1.0 copied to clipboard

Buoy devtools for Flutter — in-app floating devtools that stream live to the Buoy Desktop dashboard. Umbrella package for the Buoy tool suite.

Buoy for Flutter #

Devtools that live in your Flutter app — and stream live to your desktop and your AI editor.

One dependency wires the whole Buoy suite: a floating in-app devtools menu, the Buoy Desktop dashboard connection, and the Buoy MCP server for AI-editor access to your app's runtime.

Beta — the network inspector ships first; more tools are coming from the React Native suite tool by tool. Vote for what's next on the roadmap.

Install #

flutter pub add buoy

Quick start #

import 'package:buoy/buoy.dart';

void main() {
  if (kDebugMode) {
    BuoyHttpOverrides.install();
    BuoySyncClient(
      deviceName: 'My App',
      deviceId: 'my-app',
      platform: Platform.isIOS ? 'ios' : 'android',
      tools: {'network': networkSyncAdapter},
    ).connect();
    NetworkEventStore.instance.subscribe(() {});
  }
  runApp(const MyApp());
}

See example/ for the in-app panel wiring.

The three surfaces #

  1. In your app — floating bubble → dial → tool panels.
  2. On your desktop — every device's tools, live, in one dashboard.
  3. In your AI editor — the Buoy MCP server reads your app's runtime (network traffic today; more as tools land).

📚 Docs · Roadmap · React Native version

Proprietary software. © Buoy LLC. Terms

0
likes
0
points
198
downloads

Publisher

verified publisherbuoy.gg

Weekly Downloads

Buoy devtools for Flutter — in-app floating devtools that stream live to the Buoy Desktop dashboard. Umbrella package for the Buoy tool suite.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

buoy_core, buoy_network, flutter

More

Packages that depend on buoy