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

Ailoha agent for Flutter — runtime app inspection, interaction, and debugging.

ailoha_agent #

Ailoha agent for Flutter

Getting started #

Add ailoha_agent as a dev dependency:

dev_dependencies:
  ailoha_agent: ^0.1.0

Usage #

Initialize the agent early in your app, guarded by kDebugMode so it never ships in release builds:

import 'package:flutter/foundation.dart';
import 'package:ailoha_agent/ailoha_agent.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  if (kDebugMode) {
    await initAgent();
  }

  runApp(const MyApp());
}

Custom options #

await initAgent(AgentOptions(
  enableProfiler: true,
));

Once the agent is running, use the Ailoha CLI to connect:

ailoha status
0
likes
0
points
75
downloads

Publisher

unverified uploader

Weekly Downloads

Ailoha agent for Flutter — runtime app inspection, interaction, and debugging.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on ailoha_agent