Files
pbakaus_impeccable/api/skills.js
T
Paul BakausandClaude Opus 4.6 c0ba2b8124 Fix Vercel API endpoints for unified skills directory structure
The migration to source/skills/{name}/SKILL.md broke the serverless
functions which still expected flat .md files in source/commands/.
Also adds scripts/** to Vercel includeFiles for patterns API.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 14:55:32 -08:00

45 lines
1.4 KiB
JavaScript

import { readdirSync, readFileSync, statSync, existsSync } from "fs";
import { join, dirname } from "path";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const PROJECT_ROOT = join(__dirname, "..");
export default function handler(req, res) {
try {
const skillsDir = join(PROJECT_ROOT, "source", "skills");
const entries = readdirSync(skillsDir);
const skills = [];
for (const entry of entries) {
const entryPath = join(skillsDir, entry);
if (!statSync(entryPath).isDirectory()) continue;
const skillMd = join(entryPath, "SKILL.md");
if (!existsSync(skillMd)) continue;
const content = readFileSync(skillMd, "utf-8");
const frontmatterMatch = content.match(/^---\n([\s\S]+?)\n---/);
if (frontmatterMatch) {
const frontmatter = frontmatterMatch[1];
const nameMatch = frontmatter.match(/name:\s*(.+)/);
const descMatch = frontmatter.match(/description:\s*(.+)/);
skills.push({
id: entry,
name: nameMatch?.[1]?.trim() || entry,
description: descMatch?.[1]?.trim() || "No description available",
});
}
}
res.status(200).json(skills);
} catch (error) {
console.error("Error in /api/skills:", error);
res.status(500).json({ error: error.message });
}
}