MCPcopy Create free account
hub / github.com/Microck/opencode-studio / getSkills

Function getSkills

client-next/src/lib/api.ts:282–285  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

280}
281
282export async function getSkills(): Promise<SkillInfo[]> {
283 const { data } = await api.get<SkillInfo[]>('/skills');
284 return data;
285}
286
287export async function getSkill(name: string): Promise<SkillFile> {
288 const { data } = await api.get<SkillFile>(`/skills/${name}`);

Callers 1

AppProviderFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected