add skill script

This commit is contained in:
2026-01-27 12:00:14 -08:00
parent f460eb8d92
commit a5c570496b
4 changed files with 55 additions and 2 deletions
+17 -1
View File
@@ -1,3 +1,19 @@
/**
* Copyright 2026 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const fs = require('fs');
const path = require('path');
@@ -44,7 +60,7 @@ function main() {
console.log('Scanning for skills...');
const skillFiles = findSkillFiles(skillsDir);
let readmeContent = '# Set of skills by @rodydavis\n\n';
let readmeContent = '# Agent Skills by @rodydavis\n\n';
skillFiles.forEach(file => {
const content = fs.readFileSync(file, 'utf8');