mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 11:21:07 +00:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import type { Skill } from "@mariozechner/pi-coding-agent";
|
|
|
|
export function resolveSkillSource(skill: Skill): string {
|
|
return skill.sourceInfo.source ?? "unknown";
|
|
}
|