| 24 | // ── Types ────────────────────────────────────────────────────────── |
| 25 | |
| 26 | interface SkillTask { |
| 27 | name: string; |
| 28 | task: string; |
| 29 | url?: string; |
| 30 | judge_context: string[]; |
| 31 | max_steps?: number; |
| 32 | } |
| 33 | |
| 34 | interface TaskResult { |
| 35 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected