#!/usr/bin/env node /** * Export unified dashboard data by reading files directly (placeholder for SQLite version): * - .kilo/agents/*.md (YAML frontmatter: model, mode, color, description) * - kilo-meta.json (model assignments, categories, fallback info) * - model-benchmarks-verified.json (IF scores, context window) * - agent-versions.json (real history with dates, commits, reasons) * * Run: node agent-evolution/scripts/export-db-to-json.cjs */ // For now, we'll just use the direct export approach const exportData = require('./export-data-direct.cjs'); // Export the data for use by other scripts module.exports = exportData;