We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bac2d39 + 47d7f60 commit e2d57c9Copy full SHA for e2d57c9
1 file changed
packages/intent/src/staleness.ts
@@ -476,8 +476,10 @@ export async function checkStaleness(
476
const skillFiles = findSkillFiles(skillsDir)
477
const skillMetas: Array<SkillMeta> = skillFiles.map((filePath) => {
478
const fm = parseFrontmatter(filePath)
479
- const relName = toPosixPath(relative(skillsDir, filePath))
480
- .replace(/[/\\]SKILL\.md$/, '')
+ const relName = toPosixPath(relative(skillsDir, filePath)).replace(
+ /[/\\]SKILL\.md$/,
481
+ '',
482
+ )
483
return {
484
name: typeof fm?.name === 'string' ? fm.name : relName,
485
relName,
0 commit comments