| 49 | |
| 50 | @dataclass |
| 51 | class ParsedPlugin: |
| 52 | path: Path |
| 53 | name: str |
| 54 | skills: list[ParsedSkill] = field(default_factory=list) |
| 55 | agents: list[ParsedAgent] = field(default_factory=list) |
| 56 | plugin_json: dict = field(default_factory=dict) |
| 57 | |
| 58 | |
| 59 | def parse_skill(skill_dir: Path) -> ParsedSkill: |