all constant

List<InstallFeature> const all

All available install features

Implementation

static const List<InstallFeature> all = [
  InstallFeature(
    id: 'guidelines',
    displayName: 'AI Guidelines',
    description: 'Generate AGENTS.md and CLAUDE.md files',
    isDefault: true,
  ),
  InstallFeature(
    id: 'skills',
    displayName: 'Agent Skills',
    description: 'Install and configure agent skills',
    isDefault: true,
  ),
  InstallFeature(
    id: 'mcp',
    displayName: 'MCP Configuration',
    description: 'Configure MCP server for AI editors',
    isDefault: true,
  ),
];