marona 0.8.1 copy "marona: ^0.8.1" to clipboard
marona: ^0.8.1 copied to clipboard

Provider-neutral AI agent runtime and MCP/Skill gateway for Marona Hub connections, managed agents, and bring-your-own-agent integrations.

example/main.dart

import 'package:marona/marona.dart';

Future<void> main() async {
  final marona = Marona();
  try {
    final tools = await marona.hub.connect(apps: ['sda-books']);
    final agent = Agent(
      name: 'Customer Assistant',
      model: 'marona/gpt-5.6',
      instructions: 'Help the customer.',
      tools: tools,
    );
    final result = await Runner.run(
      agent,
      'Download Steps to Christ',
      userId: 'customer_482',
      sessionId: 'chat_91a7',
    );
    print(result.finalOutput);
  } finally {
    marona.close();
  }
}
1
likes
0
points
1.18k
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

Provider-neutral AI agent runtime and MCP/Skill gateway for Marona Hub connections, managed agents, and bring-your-own-agent integrations.

Homepage

Topics

#marona #ai #agents #runtime #sdk

License

unknown (license)

Dependencies

http

More

Packages that depend on marona