InstallConfig constructor

const InstallConfig({
  1. List<String> features = const ['guidelines', 'skills', 'mcp'],
  2. List<String> skills = const [],
  3. List<String> agents = const [],
  4. bool overwrite = false,
  5. String skillsPath = '.ai/skills',
})

Implementation

const InstallConfig({
  this.features = const ['guidelines', 'skills', 'mcp'],
  this.skills = const [],
  this.agents = const [],
  this.overwrite = false,
  this.skillsPath = '.ai/skills',
});