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

Ailoha agent for Flutter — runtime app inspection, interaction, and debugging from CLIs, AI agents, and IDE tooling.

ailoha_agent #

Ailoha agent for Flutter

Getting started #

Add ailoha_agent to your app dependencies:

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(
  enableNetworkCapture: true,
  enableLogCapture: true,
));

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

ailoha agent status
0
likes
0
points
75
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

Ailoha agent for Flutter — runtime app inspection, interaction, and debugging from CLIs, AI agents, and IDE tooling.

Repository (GitHub)
View/report issues

Topics

#ailoha #devflow #automation #inspection #testing

License

unknown (license)

Dependencies

flutter, path_provider

More

Packages that depend on ailoha_agent