update readme

This commit is contained in:
2026-01-27 12:27:09 -08:00
parent 154253c3bc
commit ad37eda106
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -72,8 +72,8 @@ function main() {
readmeContent += '| Skill | Description | Command |\n';
readmeContent += '|---|---|---|\n';
readmeContent += '| Skill | Description |\n';
readmeContent += '|---|---|\n';
skillFiles.forEach(file => {
const content = fs.readFileSync(file, 'utf8');
@@ -86,7 +86,7 @@ function main() {
// Escape pipes in description just in case
const description = (frontmatter.description || '').replace(/\|/g, '\\|');
readmeContent += `| [${frontmatter.name}](./${relativePath}) | ${description} | \`npx skills add rodydavis/${frontmatter.name}\` |\n`;
readmeContent += `| [${frontmatter.name}](./${relativePath}) | ${description} |\n`;
}
});