| 35 | |
| 36 | @dataclass |
| 37 | class ParsedAgent: |
| 38 | path: Path |
| 39 | name: str |
| 40 | description: str |
| 41 | model: str | None |
| 42 | has_tools_restriction: bool |
| 43 | tools: list[str] |
| 44 | has_proactive_trigger: bool |
| 45 | skill_references: list[str] |
| 46 | raw_content: str |
| 47 | frontmatter: dict |
| 48 | |
| 49 | |
| 50 | @dataclass |