source property

  1. @override
CommandSource get source
override

Where this command was loaded from.

Implementation

@override
CommandSource get source => switch (skill.source) {
  SkillSource.user => CommandSource.skills,
  SkillSource.project => CommandSource.skills,
  SkillSource.plugin => CommandSource.plugin,
  SkillSource.bundled => CommandSource.bundled,
  SkillSource.mcp => CommandSource.mcp,
};