File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ export interface SkillDirInfo {
7373/**
7474 * Find skill directories in a package file tree.
7575 * Returns skill names and their children for file counting.
76+ * @public
7677 */
7778export function findSkillDirs ( tree : PackageFileTree [ ] ) : SkillDirInfo [ ] {
7879 const skillsDir = tree . find ( node => node . type === 'directory' && node . name === 'skills' )
@@ -177,6 +178,7 @@ export function validateSkill(frontmatter: SkillFrontmatter): SkillWarning[] {
177178
178179/**
179180 * Fetch skill list with frontmatter for discovery endpoint.
181+ * @public
180182 */
181183export async function fetchSkillsList (
182184 packageName : string ,
@@ -215,6 +217,7 @@ export interface WellKnownSkillItem {
215217
216218/**
217219 * Fetch skill list for well-known index.json format (CLI compatibility).
220+ * @public
218221 */
219222export async function fetchSkillsListForWellKnown (
220223 packageName : string ,
You can’t perform that action at this time.
0 commit comments