workflows indicate web_bundle file inclusions

This commit is contained in:
Brian Madison
2025-09-29 20:19:14 -05:00
parent 023edd1b7b
commit 9934224230
147 changed files with 740 additions and 478 deletions

View File

@@ -212,7 +212,7 @@ class WebBundler {
if (await fs.pathExists(agentsPath)) {
const files = await fs.readdir(agentsPath);
for (const file of files) {
if (file.endsWith('.md')) {
if (file.endsWith('.md') && !file.toLowerCase().includes('readme')) {
const agentPath = path.join(agentsPath, file);
const content = await fs.readFile(agentPath, 'utf8');
const agentXml = this.extractAgentXml(content);
@@ -732,7 +732,7 @@ class WebBundler {
const files = await fs.readdir(agentsPath);
for (const file of files) {
if (file.endsWith('.md')) {
if (file.endsWith('.md') && !file.toLowerCase().includes('readme')) {
agents.push(file);
}
}