PluginManifest constructor

const PluginManifest({
  1. required String name,
  2. required String version,
  3. String? description,
  4. PluginAuthor? author,
  5. List<String> commands = const [],
  6. List<String> skills = const [],
  7. List<String> hooks = const [],
  8. List<String> mcpServers = const [],
  9. List<String> outputStyles = const [],
})

Implementation

const PluginManifest({
  required this.name,
  required this.version,
  this.description,
  this.author,
  this.commands = const [],
  this.skills = const [],
  this.hooks = const [],
  this.mcpServers = const [],
  this.outputStyles = const [],
});