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
+4 -4
View File
@@ -6,7 +6,7 @@ Install skills with https://skills.sh/
npx skills add rodydavis/skills
```
| Skill | Description | Command |
|---|---|---|
| [flutter-control-and-screenshot](./skills/flutter_driver_control/SKILL.md) | Guide on how to control a Flutter app using flutter_driver via MCP and capture screenshots. | `npx skills add rodydavis/flutter-control-and-screenshot` |
| [install-flutter-from-git](./skills/install-flutter-from-git/SKILL.md) | Install Flutter SDK via git clone and configure for all platforms | `npx skills add rodydavis/install-flutter-from-git` |
| Skill | Description |
|---|---|
| [flutter-control-and-screenshot](./skills/flutter_driver_control/SKILL.md) | Guide on how to control a Flutter app using flutter_driver via MCP and capture screenshots. |
| [install-flutter-from-git](./skills/install-flutter-from-git/SKILL.md) | Install Flutter SDK via git clone and configure for all platforms |
+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`;
}
});