fix(ci): restore green check after upstream API changes

This commit is contained in:
Peter Steinberger
2026-03-27 20:30:27 +00:00
parent 41901c19bf
commit ae7d93adc4
2 changed files with 18 additions and 106 deletions

View File

@@ -1,5 +1,5 @@
import type { Skill } from "@mariozechner/pi-coding-agent";
export function resolveSkillSource(skill: Skill): string {
return skill.source;
return skill.sourceInfo.source;
}