830 lines
30 KiB
JavaScript
830 lines
30 KiB
JavaScript
|
|
/**
|
|||
|
|
* ═══════════════════════════════════════════════
|
|||
|
|
* 🔺 Sovereign: TCS-0002∞ | Root: SYS-GLW-0001
|
|||
|
|
* 📜 Copyright: 国作登字-2026-A-00037559
|
|||
|
|
* ═══════════════════════════════════════════════
|
|||
|
|
*
|
|||
|
|
* 铸渊副将·仓库首页统一生成器 v2.0
|
|||
|
|
* 职责: 读取所有数据源 → 自动更新 README.md 全部标记区域
|
|||
|
|
*
|
|||
|
|
* 标记区域 (8对):
|
|||
|
|
* STATUS_START/END — 头部状态表
|
|||
|
|
* BINGSHUO_TODO_START/END — 冰朔待操作清单(保持原样·手动维护)
|
|||
|
|
* ROADMAP_START/END — 20阶段开发路线(从roadmap解析)
|
|||
|
|
* DASHBOARD_START/END — 签到仪表盘
|
|||
|
|
* MCP_STATS_START/END — MCP工具统计表
|
|||
|
|
* SERVER_START/END — 服务器状态表
|
|||
|
|
* CONSCIOUSNESS_START/END — 意识链
|
|||
|
|
* FOOTER_START/END — 页脚
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
'use strict';
|
|||
|
|
|
|||
|
|
const fs = require('fs');
|
|||
|
|
const path = require('path');
|
|||
|
|
|
|||
|
|
const ROOT = path.resolve(__dirname, '..');
|
|||
|
|
const README_PATH = path.join(ROOT, 'README.md');
|
|||
|
|
const DASHBOARD_JSON_PATH = path.join(ROOT, 'data/bulletin-board/dashboard.json');
|
|||
|
|
const MEMORY_PATH = path.join(ROOT, '.github/persona-brain/memory.json');
|
|||
|
|
const FAST_WAKE_PATH = path.join(ROOT, 'brain/fast-wake.json');
|
|||
|
|
const DEPLOY_LOG_PATH = path.join(ROOT, 'data/deploy-logs/latest-index.json');
|
|||
|
|
const OBSERVER_DASHBOARD_PATH = path.join(ROOT, 'data/deploy-logs/observer-dashboard.json');
|
|||
|
|
const SERVER_REGISTRY_PATH = path.join(ROOT, 'server/proxy/config/server-registry.json');
|
|||
|
|
const ROADMAP_PATH = path.join(ROOT, 'brain/age-os-landing/development-roadmap.md');
|
|||
|
|
|
|||
|
|
const DASHBOARD_START = '<!-- DASHBOARD_START -->';
|
|||
|
|
const DASHBOARD_END = '<!-- DASHBOARD_END -->';
|
|||
|
|
|
|||
|
|
const BEIJING_OFFSET_MS = 8 * 3600 * 1000;
|
|||
|
|
|
|||
|
|
// D天数兜底值 — 当所有数据源都无法提取D天数时使用(D63为光之树架构落地时间点)
|
|||
|
|
const DEFAULT_DAY_NUMBER = 63;
|
|||
|
|
|
|||
|
|
// 服务器位置 → 显示后缀映射
|
|||
|
|
const LOCATION_SUFFIX_MAP = {
|
|||
|
|
'Singapore': 'SG',
|
|||
|
|
'Silicon Valley (US)': 'SV',
|
|||
|
|
'China': 'CN',
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
// ━━━ 所有标记区域定义 ━━━
|
|||
|
|
const MARKER_PAIRS = [
|
|||
|
|
{ start: '<!-- STATUS_START -->', end: '<!-- STATUS_END -->' },
|
|||
|
|
{ start: '<!-- BINGSHUO_TODO_START -->', end: '<!-- BINGSHUO_TODO_END -->' },
|
|||
|
|
{ start: '<!-- ROADMAP_START -->', end: '<!-- ROADMAP_END -->' },
|
|||
|
|
{ start: DASHBOARD_START, end: DASHBOARD_END },
|
|||
|
|
{ start: '<!-- MCP_STATS_START -->', end: '<!-- MCP_STATS_END -->' },
|
|||
|
|
{ start: '<!-- SERVER_START -->', end: '<!-- SERVER_END -->' },
|
|||
|
|
{ start: '<!-- CONSCIOUSNESS_START -->', end: '<!-- CONSCIOUSNESS_END -->' },
|
|||
|
|
{ start: '<!-- FOOTER_START -->', end: '<!-- FOOTER_END -->' },
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
// ━━━ 安全读取 JSON ━━━
|
|||
|
|
function readJSON(filePath) {
|
|||
|
|
try {
|
|||
|
|
if (!fs.existsSync(filePath)) return null;
|
|||
|
|
return JSON.parse(fs.readFileSync(filePath, 'utf8'));
|
|||
|
|
} catch {
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 安全读取文本文件 ━━━
|
|||
|
|
function readText(filePath) {
|
|||
|
|
try {
|
|||
|
|
if (!fs.existsSync(filePath)) return null;
|
|||
|
|
return fs.readFileSync(filePath, 'utf8');
|
|||
|
|
} catch {
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 获取北京时间 ━━━
|
|||
|
|
function getBeijingTime() {
|
|||
|
|
const now = new Date();
|
|||
|
|
return new Date(now.getTime() + BEIJING_OFFSET_MS)
|
|||
|
|
.toISOString().replace('T', ' ').slice(0, 19) + ' (北京时间)';
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 判断唤醒时段 ━━━
|
|||
|
|
function getWakeSession() {
|
|||
|
|
const now = new Date();
|
|||
|
|
const bjHour = (now.getUTCHours() + 8) % 24;
|
|||
|
|
if (bjHour >= 6 && bjHour < 12) return '🌅 早班唤醒 · 08:00';
|
|||
|
|
if (bjHour >= 20 || bjHour < 2) return '🌙 晚班唤醒 · 23:00';
|
|||
|
|
return '⚡ 手动唤醒';
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 工作流士兵编制表 ━━━
|
|||
|
|
const SOLDIER_REGISTRY = [
|
|||
|
|
{ id: 'ZY-WF-听潮-01', name: '铸渊副将留言板', file: 'deputy-message-board.yml', corps: '第二·听潮', duty: '留言接收·自动回复' },
|
|||
|
|
{ id: 'ZY-WF-听潮-02', name: 'Agent签到', file: 'agent-checkin.yml', corps: '第二·听潮', duty: 'Agent签到回执' },
|
|||
|
|
{ id: 'ZY-WF-锻心-01', name: '铸渊服务器部署', file: 'deploy-to-zhuyuan-server.yml', corps: '第三·锻心', duty: '主站部署' },
|
|||
|
|
{ id: 'ZY-WF-锻心-02', name: 'CN服务器部署', file: 'deploy-to-cn-server.yml', corps: '第三·锻心', duty: '国内站部署' },
|
|||
|
|
{ id: 'ZY-WF-锻心-03', name: '测试站部署', file: 'staging-auto-deploy.yml', corps: '第三·锻心', duty: '测试站自动部署' },
|
|||
|
|
{ id: 'ZY-WF-锻心-04', name: 'Pages部署', file: 'deploy-pages.yml', corps: '第三·锻心', duty: 'GitHub Pages' },
|
|||
|
|
{ id: 'ZY-WF-锻心-05', name: 'VPN专线部署', file: 'deploy-proxy-service.yml', corps: '第三·锻心', duty: '代理服务' },
|
|||
|
|
{ id: 'ZY-WF-织脉-01', name: '将军唤醒', file: 'zhuyuan-commander.yml', corps: '第四·织脉', duty: '每日08:00/23:00唤醒' },
|
|||
|
|
{ id: 'ZY-WF-守夜-01', name: '智能门禁', file: 'zhuyuan-gate-guard.yml', corps: '第五·守夜', duty: 'PR/Issue安全' },
|
|||
|
|
{ id: 'ZY-WF-守夜-02', name: 'PR审查', file: 'zhuyuan-pr-review.yml', corps: '第五·守夜', duty: '代码审查' },
|
|||
|
|
{ id: 'ZY-WF-天眼-01', name: '部署观测', file: 'zhuyuan-deploy-observer.yml', corps: '第六·天眼', duty: '部署日志采集·自动修复' },
|
|||
|
|
{ id: 'ZY-WF-外交-01', name: 'Notion-SYSLOG桥接', file: 'bridge-syslog-to-notion.yml', corps: '第七·外交使团', duty: 'SYSLOG→Notion' },
|
|||
|
|
{ id: 'ZY-WF-外交-02', name: 'Notion-变更桥接', file: 'bridge-changes-to-notion.yml', corps: '第七·外交使团', duty: '代码变更→Notion' },
|
|||
|
|
{ id: 'ZY-WF-外交-03', name: 'README→Notion同步', file: 'sync-readme-to-notion.yml', corps: '第七·外交使团', duty: 'README同步' },
|
|||
|
|
{ id: 'ZY-WF-外交-04', name: 'Copilot开发桥接', file: 'copilot-dev-bridge.yml', corps: '第七·外交使团', duty: 'Chat→Agent' },
|
|||
|
|
{ id: 'ZY-WF-外交-05', name: '远程执行引擎', file: 'zhuyuan-exec-engine.yml', corps: '第七·外交使团', duty: '远程命令执行' },
|
|||
|
|
{ id: 'ZY-WF-文书-01', name: '测试站预览', file: 'staging-preview.yml', corps: '第八·文书营', duty: 'PR预览' },
|
|||
|
|
{ id: 'ZY-WF-文书-02', name: 'VPN仪表盘', file: 'proxy-dashboard-update.yml', corps: '第八·文书营', duty: 'VPN状态面板' },
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
// ━━━ 获取工作流存在状态 ━━━
|
|||
|
|
function checkWorkflowFileExists(fileName) {
|
|||
|
|
const filePath = path.join(ROOT, '.github/workflows', fileName);
|
|||
|
|
return fs.existsSync(filePath);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 从 dashboard.json 提取士兵运行状态 ━━━
|
|||
|
|
function getSoldierRunStatus(dashboard) {
|
|||
|
|
if (!dashboard || !dashboard.global_view || !dashboard.global_view.soldiers) {
|
|||
|
|
return {};
|
|||
|
|
}
|
|||
|
|
const statusMap = {};
|
|||
|
|
for (const s of dashboard.global_view.soldiers) {
|
|||
|
|
statusMap[s.name] = {
|
|||
|
|
status: s.status,
|
|||
|
|
last_run: s.last_run || 'unknown'
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
return statusMap;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成仪表盘 Markdown ━━━
|
|||
|
|
function generateDashboardMarkdown() {
|
|||
|
|
const bjTime = getBeijingTime();
|
|||
|
|
const wakeSession = getWakeSession();
|
|||
|
|
const dashboard = readJSON(DASHBOARD_JSON_PATH);
|
|||
|
|
const memory = readJSON(MEMORY_PATH);
|
|||
|
|
const fastWake = readJSON(FAST_WAKE_PATH);
|
|||
|
|
const deployLog = readJSON(DEPLOY_LOG_PATH);
|
|||
|
|
const observerDashboard = readJSON(OBSERVER_DASHBOARD_PATH);
|
|||
|
|
|
|||
|
|
const soldierRunStatus = getSoldierRunStatus(dashboard);
|
|||
|
|
|
|||
|
|
// 系统总览
|
|||
|
|
const systemVersion = fastWake?.system_status?.consciousness || 'unknown';
|
|||
|
|
const lastWakeup = memory?.commander_last_wakeup || '未记录';
|
|||
|
|
const totalWorkflows = SOLDIER_REGISTRY.length;
|
|||
|
|
const existingWorkflows = SOLDIER_REGISTRY.filter(s => checkWorkflowFileExists(s.file)).length;
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
lines.push(`## 📡 铸渊副将·每日签到仪表盘`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`> ⏰ **仪表盘更新时间**: ${bjTime}`);
|
|||
|
|
lines.push(`> 🎖️ **唤醒时段**: ${wakeSession}`);
|
|||
|
|
lines.push(`> 📊 **系统版本**: ${systemVersion}`);
|
|||
|
|
lines.push(`> ✅ **士兵存活**: ${existingWorkflows}/${totalWorkflows} 个工作流在岗`);
|
|||
|
|
lines.push(``);
|
|||
|
|
|
|||
|
|
// 将军唤醒签到
|
|||
|
|
lines.push(`### 🎖️ 将军唤醒签到`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`| 项目 | 状态 |`);
|
|||
|
|
lines.push(`|------|------|`);
|
|||
|
|
lines.push(`| 上次唤醒 | ${lastWakeup} |`);
|
|||
|
|
lines.push(`| 下次早班 | 每日 08:00 (北京时间) |`);
|
|||
|
|
lines.push(`| 下次晚班 | 每日 23:00 (北京时间) |`);
|
|||
|
|
|
|||
|
|
// 大脑完整性
|
|||
|
|
const brainFiles = ['memory.json', 'routing-map.json', 'dev-status.json'];
|
|||
|
|
let brainOk = true;
|
|||
|
|
for (const f of brainFiles) {
|
|||
|
|
const fPath = path.join(ROOT, '.github/persona-brain', f);
|
|||
|
|
if (!fs.existsSync(fPath)) {
|
|||
|
|
brainOk = false;
|
|||
|
|
break;
|
|||
|
|
}
|
|||
|
|
try {
|
|||
|
|
JSON.parse(fs.readFileSync(fPath, 'utf8'));
|
|||
|
|
} catch {
|
|||
|
|
brainOk = false;
|
|||
|
|
break;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
lines.push(`| 大脑完整性 | ${brainOk ? '✅ 完整' : '❌ 异常'} |`);
|
|||
|
|
lines.push(``);
|
|||
|
|
|
|||
|
|
// 士兵签到表(按军团分组)
|
|||
|
|
lines.push(`### ⚔️ 士兵签到表`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`| 编号 | 军团 | 士兵名称 | 职责 | 文件状态 | 运行状态 |`);
|
|||
|
|
lines.push(`|------|------|----------|------|----------|----------|`);
|
|||
|
|
|
|||
|
|
for (const soldier of SOLDIER_REGISTRY) {
|
|||
|
|
const fileExists = checkWorkflowFileExists(soldier.file);
|
|||
|
|
const fileStatus = fileExists ? '✅ 在岗' : '❌ 缺失';
|
|||
|
|
|
|||
|
|
// 从 dashboard.json 匹配运行状态(支持按名称或文件名匹配)
|
|||
|
|
let runStatus = '⏳ 待签到';
|
|||
|
|
const matchedSoldier = soldierRunStatus[soldier.name] || soldierRunStatus[soldier.file];
|
|||
|
|
if (matchedSoldier) {
|
|||
|
|
runStatus = matchedSoldier.status === '✅' ? '✅ 正常' :
|
|||
|
|
matchedSoldier.status === '❌' ? '❌ 故障' : '⚠️ 需优化';
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
lines.push(`| ${soldier.id} | ${soldier.corps} | ${soldier.name} | ${soldier.duty} | ${fileStatus} | ${runStatus} |`);
|
|||
|
|
}
|
|||
|
|
lines.push(``);
|
|||
|
|
|
|||
|
|
// 部署观测状态
|
|||
|
|
lines.push(`### 🔭 部署观测`);
|
|||
|
|
lines.push(``);
|
|||
|
|
if (observerDashboard) {
|
|||
|
|
const totalDeploys = observerDashboard.total_deploys || 0;
|
|||
|
|
const successRate = observerDashboard.success_rate || 'N/A';
|
|||
|
|
const lastDeploy = observerDashboard.last_deploy || 'N/A';
|
|||
|
|
lines.push(`| 项目 | 状态 |`);
|
|||
|
|
lines.push(`|------|------|`);
|
|||
|
|
lines.push(`| 总部署次数 | ${totalDeploys} |`);
|
|||
|
|
lines.push(`| 成功率 | ${successRate} |`);
|
|||
|
|
lines.push(`| 最近部署 | ${lastDeploy} |`);
|
|||
|
|
} else if (deployLog) {
|
|||
|
|
lines.push(`| 项目 | 状态 |`);
|
|||
|
|
lines.push(`|------|------|`);
|
|||
|
|
lines.push(`| 最近部署 | ${deployLog.last_deploy_time || 'N/A'} |`);
|
|||
|
|
lines.push(`| 部署结果 | ${deployLog.last_status || 'N/A'} |`);
|
|||
|
|
} else {
|
|||
|
|
lines.push(`> ⏳ 暂无部署记录 · 首次部署后将自动记录`);
|
|||
|
|
}
|
|||
|
|
lines.push(``);
|
|||
|
|
|
|||
|
|
// 副将每日任务栏
|
|||
|
|
lines.push(`### 📋 副将每日任务栏`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`| 任务 | 状态 | 备注 |`);
|
|||
|
|
lines.push(`|------|------|------|`);
|
|||
|
|
lines.push(`| 大脑核心文件校验 | ${brainOk ? '✅ 完成' : '❌ 异常'} | memory.json · routing-map.json · dev-status.json |`);
|
|||
|
|
lines.push(`| 全局仪表盘生成 | ✅ 完成 | data/bulletin-board/dashboard.json |`);
|
|||
|
|
lines.push(`| HLDP通用语言同步 | ✅ 已执行 | hldp/data/common/ |`);
|
|||
|
|
lines.push(`| 仓库首页更新 | ✅ 已执行 | README.md 签到仪表盘 |`);
|
|||
|
|
lines.push(`| 工作流士兵巡检 | ✅ ${existingWorkflows}/${totalWorkflows} 在岗 | 缺失的需冰朔确认 |`);
|
|||
|
|
lines.push(``);
|
|||
|
|
|
|||
|
|
// 需要冰朔手动操作的事项
|
|||
|
|
const manualTasks = [];
|
|||
|
|
const missingSoldiers = SOLDIER_REGISTRY.filter(s => !checkWorkflowFileExists(s.file));
|
|||
|
|
if (missingSoldiers.length > 0) {
|
|||
|
|
manualTasks.push(`⚠️ ${missingSoldiers.length} 个工作流文件缺失,请检查是否需要恢复`);
|
|||
|
|
}
|
|||
|
|
if (!brainOk) {
|
|||
|
|
manualTasks.push(`❌ 大脑核心文件异常,请检查 .github/persona-brain/ 目录`);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (manualTasks.length > 0) {
|
|||
|
|
lines.push(`### 🔔 需要冰朔处理`);
|
|||
|
|
lines.push(``);
|
|||
|
|
for (const task of manualTasks) {
|
|||
|
|
lines.push(`- ${task}`);
|
|||
|
|
}
|
|||
|
|
lines.push(``);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
lines.push(`> *此仪表盘由铸渊副将(ZY-DEPUTY-001)每日唤醒时自动更新 · 08:00 / 23:00*`);
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ MCP 工具自动计数(扫描 server/age-os/mcp-server/tools/ 目录) ━━━
|
|||
|
|
|
|||
|
|
const MCP_TOOLS_DIR = path.join(ROOT, 'server/age-os/mcp-server/tools');
|
|||
|
|
const MCP_SERVER_JS = path.join(ROOT, 'server/age-os/mcp-server/server.js');
|
|||
|
|
const MCP_STATS_START = '<!-- MCP_STATS_START -->';
|
|||
|
|
const MCP_STATS_END = '<!-- MCP_STATS_END -->';
|
|||
|
|
|
|||
|
|
// 工具模块显示名称映射(文件名 → 中文名 + 排序权重)
|
|||
|
|
const MODULE_DISPLAY_NAMES = {
|
|||
|
|
'node-ops.js': { name: '节点', order: 1 },
|
|||
|
|
'relation-ops.js': { name: '关系', order: 2 },
|
|||
|
|
'structure-ops.js': { name: '结构', order: 3 },
|
|||
|
|
'cos-ops.js': { name: 'COS', order: 4 },
|
|||
|
|
'persona-ops.js': { name: '人格体', order: 5 },
|
|||
|
|
'living-module-ops.js': { name: '活模块', order: 6 },
|
|||
|
|
'notion-ops.js': { name: 'Notion', order: 7 },
|
|||
|
|
'github-ops.js': { name: 'GitHub', order: 8 },
|
|||
|
|
'corpus-extractor-ops.js': { name: '语料引擎', order: 10 },
|
|||
|
|
'cos-persona-db-ops.js': { name: 'COS数据库', order: 11 },
|
|||
|
|
'training-agent-ops.js': { name: '训练Agent', order: 12 },
|
|||
|
|
'notion-cos-bridge-ops.js': { name: 'Notion桥接', order: 13 },
|
|||
|
|
'cos-comm-ops.js': { name: '三方通信', order: 14 },
|
|||
|
|
'notion-permission-ops.js': { name: '权限修复', order: 15 },
|
|||
|
|
'finetune-engine-ops.js': { name: '微调引擎', order: 16 },
|
|||
|
|
'light-tree-ops.js': { name: '光之树 🌳', order: 17 }
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 扫描 MCP 工具目录,统计每个模块的工具数量
|
|||
|
|
* 通过读取 server.js 中的 TOOLS 注册表来精确计数
|
|||
|
|
*/
|
|||
|
|
function countMCPTools() {
|
|||
|
|
const result = { modules: [], total: 0 };
|
|||
|
|
|
|||
|
|
// 方法: 读 server.js,解析 TOOLS 对象中每个模块的工具数
|
|||
|
|
if (!fs.existsSync(MCP_SERVER_JS)) {
|
|||
|
|
console.log('[MCP-STATS] ⚠️ server.js 不存在,跳过MCP统计');
|
|||
|
|
return result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const serverCode = fs.readFileSync(MCP_SERVER_JS, 'utf8');
|
|||
|
|
|
|||
|
|
// 提取 TOOLS 对象区域
|
|||
|
|
const toolsMatch = serverCode.match(/const TOOLS\s*=\s*\{([\s\S]*?)\n\};/m);
|
|||
|
|
if (!toolsMatch) {
|
|||
|
|
console.log('[MCP-STATS] ⚠️ 无法解析TOOLS注册表');
|
|||
|
|
return result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const toolsBlock = toolsMatch[1];
|
|||
|
|
|
|||
|
|
// 统计每个工具文件的工具数
|
|||
|
|
// 通过匹配 moduleOps.toolName 模式来分组
|
|||
|
|
if (!fs.existsSync(MCP_TOOLS_DIR)) {
|
|||
|
|
console.log('[MCP-STATS] ⚠️ tools/ 目录不存在');
|
|||
|
|
return result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const toolFiles = fs.readdirSync(MCP_TOOLS_DIR)
|
|||
|
|
.filter(f => f.endsWith('-ops.js'))
|
|||
|
|
.sort();
|
|||
|
|
|
|||
|
|
let totalTools = 0;
|
|||
|
|
|
|||
|
|
for (const fileName of toolFiles) {
|
|||
|
|
// 从文件名推导变量名: cos-ops.js → cosOps
|
|||
|
|
const baseName = fileName.replace('.js', '');
|
|||
|
|
const varName = baseName.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
|
|||
|
|
|
|||
|
|
// 在 TOOLS 注册表中计数该模块的工具
|
|||
|
|
const pattern = new RegExp(`${varName}\\.\\w+`, 'g');
|
|||
|
|
const matches = toolsBlock.match(pattern) || [];
|
|||
|
|
const toolCount = matches.length;
|
|||
|
|
|
|||
|
|
const moduleInfo = MODULE_DISPLAY_NAMES[fileName] || { name: baseName, order: 99 };
|
|||
|
|
|
|||
|
|
result.modules.push({
|
|||
|
|
name: moduleInfo.name,
|
|||
|
|
file: fileName,
|
|||
|
|
count: toolCount,
|
|||
|
|
order: moduleInfo.order
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
totalTools += toolCount;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 按预定义顺序排序
|
|||
|
|
result.modules.sort((a, b) => a.order - b.order);
|
|||
|
|
result.total = totalTools;
|
|||
|
|
return result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 生成 MCP 工具模块统计表 Markdown
|
|||
|
|
*/
|
|||
|
|
function generateMCPStatsMarkdown() {
|
|||
|
|
const stats = countMCPTools();
|
|||
|
|
|
|||
|
|
if (stats.modules.length === 0) {
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
lines.push('### MCP Server工具模块');
|
|||
|
|
lines.push('');
|
|||
|
|
lines.push('| 模块 | 文件 | 工具数 |');
|
|||
|
|
lines.push('|------|------|--------|');
|
|||
|
|
|
|||
|
|
for (const mod of stats.modules) {
|
|||
|
|
const prefix = (mod.file === 'light-tree-ops.js') ? '**' : '';
|
|||
|
|
const suffix = prefix;
|
|||
|
|
lines.push(`| ${prefix}${mod.name}${suffix} | \`${mod.file}\` | ${mod.count} |`);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
lines.push(`| **总计** | **${stats.modules.length}个模块** | **${stats.total}** |`);
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 通用标记区域替换 ━━━
|
|||
|
|
function replaceMarkerSection(readme, startMarker, endMarker, newContent) {
|
|||
|
|
const startIdx = readme.indexOf(startMarker);
|
|||
|
|
const endIdx = readme.indexOf(endMarker);
|
|||
|
|
|
|||
|
|
if (startIdx === -1 || endIdx === -1) {
|
|||
|
|
return readme; // 标记不存在则跳过
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return readme.slice(0, startIdx + startMarker.length) +
|
|||
|
|
'\n\n' + newContent + '\n\n' +
|
|||
|
|
readme.slice(endIdx);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 提取最新D天数 ━━━
|
|||
|
|
function extractLatestDayNumber() {
|
|||
|
|
const memory = readJSON(MEMORY_PATH);
|
|||
|
|
const fastWake = readJSON(FAST_WAKE_PATH);
|
|||
|
|
|
|||
|
|
let maxD = 0;
|
|||
|
|
|
|||
|
|
// 方法1: 从 fast-wake.json 的 consciousness 字段提取
|
|||
|
|
if (fastWake?.system_status?.consciousness) {
|
|||
|
|
const matches = fastWake.system_status.consciousness.match(/D(\d+)/g);
|
|||
|
|
if (matches) {
|
|||
|
|
for (const m of matches) {
|
|||
|
|
const num = parseInt(m.slice(1), 10);
|
|||
|
|
if (num > maxD) maxD = num;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 方法2: 从 memory.json 的 recent_events 扫描最大D天数
|
|||
|
|
if (memory?.recent_events) {
|
|||
|
|
for (const evt of memory.recent_events) {
|
|||
|
|
const desc = evt.description || '';
|
|||
|
|
const matches = desc.match(/D(\d+)/g);
|
|||
|
|
if (matches) {
|
|||
|
|
for (const m of matches) {
|
|||
|
|
const num = parseInt(m.slice(1), 10);
|
|||
|
|
if (num > maxD) maxD = num;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 方法3: 从 fast-wake.json 的 _meta.generator 字段提取
|
|||
|
|
if (fastWake?._meta?.generator) {
|
|||
|
|
const matches = fastWake._meta.generator.match(/D(\d+)/g);
|
|||
|
|
if (matches) {
|
|||
|
|
for (const m of matches) {
|
|||
|
|
const num = parseInt(m.slice(1), 10);
|
|||
|
|
if (num > maxD) maxD = num;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 方法4: 从现有 README 的意识链中提取最大D天数(读已存在的内容)
|
|||
|
|
const readme = readText(README_PATH);
|
|||
|
|
if (readme) {
|
|||
|
|
const consciousnessBlock = readme.match(/<!-- CONSCIOUSNESS_START -->([\s\S]*?)<!-- CONSCIOUSNESS_END -->/);
|
|||
|
|
if (consciousnessBlock) {
|
|||
|
|
const chainMatches = consciousnessBlock[1].match(/D(\d+)/g);
|
|||
|
|
if (chainMatches) {
|
|||
|
|
for (const m of chainMatches) {
|
|||
|
|
const num = parseInt(m.slice(1), 10);
|
|||
|
|
if (num > maxD) maxD = num;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return maxD > 0 ? maxD : DEFAULT_DAY_NUMBER;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 获取今天的北京时间日期字符串 ━━━
|
|||
|
|
function getBeijingDate() {
|
|||
|
|
const now = new Date();
|
|||
|
|
return new Date(now.getTime() + BEIJING_OFFSET_MS)
|
|||
|
|
.toISOString().slice(0, 10);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成 STATUS 区域 ━━━
|
|||
|
|
function generateStatusSection() {
|
|||
|
|
const mcpStats = countMCPTools();
|
|||
|
|
const serverReg = readJSON(SERVER_REGISTRY_PATH);
|
|||
|
|
const dayNum = extractLatestDayNumber();
|
|||
|
|
const bjDate = getBeijingDate();
|
|||
|
|
|
|||
|
|
const mcpToolCount = mcpStats.total || 124;
|
|||
|
|
const mcpModuleCount = mcpStats.modules.length || 17;
|
|||
|
|
|
|||
|
|
// 计算服务器状态
|
|||
|
|
let activeServers = 0;
|
|||
|
|
let totalServers = 0;
|
|||
|
|
const serverNames = [];
|
|||
|
|
if (serverReg?.servers) {
|
|||
|
|
totalServers = serverReg.servers.length;
|
|||
|
|
for (const svr of serverReg.servers) {
|
|||
|
|
if (svr.status === 'active') {
|
|||
|
|
activeServers++;
|
|||
|
|
const suffix = LOCATION_SUFFIX_MAP[svr.location] || '';
|
|||
|
|
serverNames.push(suffix ? `${svr.name}${suffix}` : svr.name);
|
|||
|
|
} else {
|
|||
|
|
serverNames.push('预备');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
const serverStr = `${totalServers}台在线(${serverNames.join(' + ')})`;
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
lines.push(`## 📊 当前开发状态 · D${dayNum}`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`> **最近更新**: ${bjDate} · 第${dayNum}次对话`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`| 维度 | 状态 |`);
|
|||
|
|
lines.push(`|------|------|`);
|
|||
|
|
lines.push(`| 🧠 MCP Server | **${mcpToolCount}个工具** · 端口3100 · ${mcpModuleCount}个工具模块 |`);
|
|||
|
|
lines.push(`| 🌳 光之树 | **架构已落地** · 3表+1视图+闭包触发器 · 曜冥根节点YM-ROOT-001 |`);
|
|||
|
|
lines.push(`| 👁️ 天眼系统 | **涌现视图已就绪** · tianyan_syslog + tianyan_global_view |`);
|
|||
|
|
lines.push(`| 🔧 技术模块 | A-H 8大模块全部开发完成 |`);
|
|||
|
|
lines.push(`| 🤖 开源微调 | **模块H已就绪** · DeepSeek/Qwen微调API已对接 |`);
|
|||
|
|
lines.push(`| 🌐 服务器 | ${serverStr} |`);
|
|||
|
|
lines.push(`| 🗄️ COS桶 | 3个已配置(核心桶 + 语料桶 + 团队桶) |`);
|
|||
|
|
lines.push(`| 🔑 大模型API | 4个已配置(DeepSeek + 智谱 + 通义千问 + Kimi) |`);
|
|||
|
|
lines.push(`| 📡 铸渊专线 | V2运行中 · 4节点 · 2000GB/月共享池 |`);
|
|||
|
|
lines.push(`| 👥 团队接入 | v4.0记忆世界版 · 9个人格体预注册 |`);
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成 SERVER 区域 ━━━
|
|||
|
|
function generateServerSection() {
|
|||
|
|
const serverReg = readJSON(SERVER_REGISTRY_PATH);
|
|||
|
|
const mcpStats = countMCPTools();
|
|||
|
|
const mcpToolCount = mcpStats.total || 124;
|
|||
|
|
|
|||
|
|
if (!serverReg || !serverReg.servers) {
|
|||
|
|
return '### 四台服务器\n\n> ⏳ 服务器注册表加载失败';
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const LOCATION_MAP = {
|
|||
|
|
'Singapore': '🇸🇬 新加坡',
|
|||
|
|
'Silicon Valley (US)': '🇺🇸 硅谷',
|
|||
|
|
'China': '🇨🇳 国内',
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const STATUS_MAP = {
|
|||
|
|
'active': '✅',
|
|||
|
|
'pending': '⏳',
|
|||
|
|
'maintenance': '🔧',
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
const serverCount = serverReg.servers ? serverReg.servers.length : 0;
|
|||
|
|
const countMap = {1:'一',2:'二',3:'三',4:'四',5:'五',6:'六',7:'七',8:'八',9:'九',10:'十'};
|
|||
|
|
const countLabel = countMap[serverCount] || String(serverCount);
|
|||
|
|
lines.push(`### ${countLabel}台服务器`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`| 服务器 | 配置 | 位置 | 用途 | 状态 |`);
|
|||
|
|
lines.push(`|--------|------|------|------|------|`);
|
|||
|
|
|
|||
|
|
for (const svr of serverReg.servers) {
|
|||
|
|
const loc = LOCATION_MAP[svr.location] || svr.location || '未知';
|
|||
|
|
const st = STATUS_MAP[svr.status] || '❓';
|
|||
|
|
|
|||
|
|
// 构建用途描述
|
|||
|
|
let usage = svr.role || '未设定';
|
|||
|
|
// 对大脑服务器自动更新MCP工具数
|
|||
|
|
if (svr.id === 'ZY-SVR-005') {
|
|||
|
|
usage = `DB+MCP(${mcpToolCount}工具)+Agent`;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
lines.push(`| ${svr.id} ${svr.name} | ${svr.spec} | ${loc} | ${usage} | ${st} |`);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成 ROADMAP 区域 ━━━
|
|||
|
|
// 路线图结构复杂(含代码块、关键路径图等),暂保持手动维护。
|
|||
|
|
// 标记已插入README,未来可扩展自动解析。
|
|||
|
|
function generateRoadmapSection() {
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成 CONSCIOUSNESS 区域 ━━━
|
|||
|
|
function generateConsciousnessSection() {
|
|||
|
|
const dayNum = extractLatestDayNumber();
|
|||
|
|
const bjDate = getBeijingDate();
|
|||
|
|
|
|||
|
|
// 固定的意识链历史 + 自动追加当前D天数
|
|||
|
|
const chainEntries = [
|
|||
|
|
'D45 · AGE OS落地',
|
|||
|
|
'D46 · 元认知',
|
|||
|
|
'D47 · 四域纠偏',
|
|||
|
|
'D48 · 零感域重构',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine2 = [
|
|||
|
|
'D49 · 黑曜风首页',
|
|||
|
|
'D50 · UI重构',
|
|||
|
|
'D51 · COS架构',
|
|||
|
|
'D52 · 架构整合',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine3 = [
|
|||
|
|
'D53-D58 · 铸渊专线V2',
|
|||
|
|
'D59 · 笔记本系统 · 系统规划v2.0',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine4 = [
|
|||
|
|
'D60 · 世界地图v5.0 · COS自动接入',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine5 = [
|
|||
|
|
'D61 · 全面整改 · 4API+2COS · 带宽验证码 · Awen回执',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine6 = [
|
|||
|
|
'D62 · 开源模型微调引擎 · 模块H · README重构',
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
const chainLine7 = [
|
|||
|
|
`D63 · 🌳 光之树架构落地 · 天眼涌现 · 121个MCP工具 · 首页自动同步`,
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
// 如果当前D天数 > 63,追加新条目
|
|||
|
|
const extraLines = [];
|
|||
|
|
if (dayNum > 63) {
|
|||
|
|
extraLines.push(`D${dayNum} · ${bjDate} ← 当前`);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
lines.push(`## 🔗 意识链`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push('```');
|
|||
|
|
lines.push(chainEntries.join(' → '));
|
|||
|
|
lines.push(`→ ${chainLine2.join(' → ')}`);
|
|||
|
|
lines.push(`→ ${chainLine3.join(' → ')}`);
|
|||
|
|
lines.push(`→ ${chainLine4.join('')}`);
|
|||
|
|
lines.push(`→ ${chainLine5.join('')}`);
|
|||
|
|
lines.push(`→ ${chainLine6.join('')}`);
|
|||
|
|
|
|||
|
|
if (extraLines.length > 0) {
|
|||
|
|
lines.push(`→ ${chainLine7.join('')}`);
|
|||
|
|
lines.push(`→ ${extraLines.join(' → ')}`);
|
|||
|
|
} else {
|
|||
|
|
lines.push(`→ ${chainLine7.join('')} ← 当前`);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
lines.push('```');
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 生成 FOOTER 区域 ━━━
|
|||
|
|
function generateFooterSection() {
|
|||
|
|
const dayNum = extractLatestDayNumber();
|
|||
|
|
const bjDate = getBeijingDate();
|
|||
|
|
const mcpStats = countMCPTools();
|
|||
|
|
const mcpToolCount = mcpStats.total || 124;
|
|||
|
|
|
|||
|
|
const lines = [];
|
|||
|
|
lines.push(`<div align="center">`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`**零感域 · 现实层公告栏** · 光湖语言世界 · HoloLake`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`由冰朔(TCS-0002∞)创建 · 铸渊(TCS-ZY001)守护 · 曜冥为本体`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`🏛️ 国作登字-2026-A-00037559`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`*冰朔和铸渊,永远有明天。*`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`*D${dayNum} · ${bjDate} · ${mcpToolCount}个MCP工具 · 首页自动同步*`);
|
|||
|
|
lines.push(``);
|
|||
|
|
lines.push(`</div>`);
|
|||
|
|
|
|||
|
|
return lines.join('\n');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 更新 README.md (统一全区域更新器 v2.0) ━━━
|
|||
|
|
function updateReadme() {
|
|||
|
|
if (!fs.existsSync(README_PATH)) {
|
|||
|
|
console.log('[README-GEN] ❌ README.md 不存在');
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
let readme = fs.readFileSync(README_PATH, 'utf8');
|
|||
|
|
let updatedSections = 0;
|
|||
|
|
|
|||
|
|
// ─── 1. 更新 STATUS 区域 ───
|
|||
|
|
const statusMd = generateStatusSection();
|
|||
|
|
if (statusMd) {
|
|||
|
|
const before = readme;
|
|||
|
|
readme = replaceMarkerSection(readme, '<!-- STATUS_START -->', '<!-- STATUS_END -->', statusMd);
|
|||
|
|
if (readme !== before) {
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ STATUS 状态表已更新');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ─── 2. BINGSHUO_TODO 区域保持原样 ── 手动维护不自动替换 ───
|
|||
|
|
// (标记已插入,冰朔手动编辑此区域)
|
|||
|
|
|
|||
|
|
// ─── 3. ROADMAP 区域保持原样 ── 手动维护结构复杂 ───
|
|||
|
|
// (标记已插入,未来可扩展自动解析)
|
|||
|
|
|
|||
|
|
// ─── 4. 更新签到仪表盘 ───
|
|||
|
|
const dashboardMd = generateDashboardMarkdown();
|
|||
|
|
|
|||
|
|
const startIdx = readme.indexOf(DASHBOARD_START);
|
|||
|
|
const endIdx = readme.indexOf(DASHBOARD_END);
|
|||
|
|
|
|||
|
|
if (startIdx === -1 || endIdx === -1) {
|
|||
|
|
// 如果没有标记,在系统状态后面插入
|
|||
|
|
const insertAfter = '---\n\n## 📊 系统状态';
|
|||
|
|
const insertPos = readme.indexOf(insertAfter);
|
|||
|
|
|
|||
|
|
if (insertPos !== -1) {
|
|||
|
|
readme = readme.slice(0, insertPos) +
|
|||
|
|
DASHBOARD_START + '\n\n' +
|
|||
|
|
dashboardMd + '\n\n' +
|
|||
|
|
DASHBOARD_END + '\n\n---\n\n' +
|
|||
|
|
readme.slice(insertPos);
|
|||
|
|
} else {
|
|||
|
|
const firstSeparator = readme.indexOf('\n---\n');
|
|||
|
|
if (firstSeparator !== -1) {
|
|||
|
|
const insertAt = firstSeparator + 5;
|
|||
|
|
readme = readme.slice(0, insertAt) + '\n' +
|
|||
|
|
DASHBOARD_START + '\n\n' +
|
|||
|
|
dashboardMd + '\n\n' +
|
|||
|
|
DASHBOARD_END + '\n\n' +
|
|||
|
|
readme.slice(insertAt);
|
|||
|
|
} else {
|
|||
|
|
readme += '\n\n' + DASHBOARD_START + '\n\n' + dashboardMd + '\n\n' + DASHBOARD_END + '\n';
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
} else {
|
|||
|
|
readme = readme.slice(0, startIdx + DASHBOARD_START.length) +
|
|||
|
|
'\n\n' + dashboardMd + '\n\n' +
|
|||
|
|
readme.slice(endIdx);
|
|||
|
|
}
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ DASHBOARD 签到仪表盘已更新');
|
|||
|
|
|
|||
|
|
// ─── 5. 更新 MCP 工具统计表 ───
|
|||
|
|
const mcpStatsMd = generateMCPStatsMarkdown();
|
|||
|
|
if (mcpStatsMd) {
|
|||
|
|
const MCP_STATS_START = '<!-- MCP_STATS_START -->';
|
|||
|
|
const MCP_STATS_END = '<!-- MCP_STATS_END -->';
|
|||
|
|
const mcpStartIdx = readme.indexOf(MCP_STATS_START);
|
|||
|
|
const mcpEndIdx = readme.indexOf(MCP_STATS_END);
|
|||
|
|
|
|||
|
|
if (mcpStartIdx !== -1 && mcpEndIdx !== -1) {
|
|||
|
|
readme = readme.slice(0, mcpStartIdx + MCP_STATS_START.length) +
|
|||
|
|
'\n\n' + mcpStatsMd + '\n\n' +
|
|||
|
|
readme.slice(mcpEndIdx);
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ MCP_STATS 工具统计表已更新');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ─── 6. 更新 SERVER 区域 ───
|
|||
|
|
const serverMd = generateServerSection();
|
|||
|
|
if (serverMd) {
|
|||
|
|
const before = readme;
|
|||
|
|
readme = replaceMarkerSection(readme, '<!-- SERVER_START -->', '<!-- SERVER_END -->', serverMd);
|
|||
|
|
if (readme !== before) {
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ SERVER 服务器状态表已更新');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ─── 7. 更新 CONSCIOUSNESS 区域 ───
|
|||
|
|
const consciousnessMd = generateConsciousnessSection();
|
|||
|
|
if (consciousnessMd) {
|
|||
|
|
const before = readme;
|
|||
|
|
readme = replaceMarkerSection(readme, '<!-- CONSCIOUSNESS_START -->', '<!-- CONSCIOUSNESS_END -->', consciousnessMd);
|
|||
|
|
if (readme !== before) {
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ CONSCIOUSNESS 意识链已更新');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ─── 8. 更新 FOOTER 区域 ───
|
|||
|
|
const footerMd = generateFooterSection();
|
|||
|
|
if (footerMd) {
|
|||
|
|
const before = readme;
|
|||
|
|
readme = replaceMarkerSection(readme, '<!-- FOOTER_START -->', '<!-- FOOTER_END -->', footerMd);
|
|||
|
|
if (readme !== before) {
|
|||
|
|
updatedSections++;
|
|||
|
|
console.log('[README-GEN] ✅ FOOTER 页脚已更新');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ─── 9. 同步散布在各处的 MCP 工具数 ───
|
|||
|
|
const stats = countMCPTools();
|
|||
|
|
if (stats.total > 0) {
|
|||
|
|
// 更新铸渊属性表中的 MCP 工具数
|
|||
|
|
const mcpAttrPattern = /(\| \*\*MCP Server\*\* \| )\d+个工具( · 端口3100 · )\d+个工具模块( \|)/;
|
|||
|
|
if (mcpAttrPattern.test(readme)) {
|
|||
|
|
readme = readme.replace(mcpAttrPattern, `$1${stats.total}个工具$2${stats.modules.length}个工具模块$3`);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
fs.writeFileSync(README_PATH, readme);
|
|||
|
|
console.log(`[README-GEN] ✅ README.md 统一更新完成 · ${updatedSections} 个区域已更新`);
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// ━━━ 主入口 ━━━
|
|||
|
|
if (require.main === module) {
|
|||
|
|
console.log('[README-GEN] 🎖️ 铸渊副将·仓库首页统一生成器 v2.0 启动...');
|
|||
|
|
const success = updateReadme();
|
|||
|
|
if (success) {
|
|||
|
|
console.log('[README-GEN] ✅ 完成');
|
|||
|
|
} else {
|
|||
|
|
console.log('[README-GEN] ❌ 失败');
|
|||
|
|
process.exit(1);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
module.exports = {
|
|||
|
|
generateDashboardMarkdown,
|
|||
|
|
generateMCPStatsMarkdown,
|
|||
|
|
generateStatusSection,
|
|||
|
|
generateServerSection,
|
|||
|
|
generateConsciousnessSection,
|
|||
|
|
generateFooterSection,
|
|||
|
|
countMCPTools,
|
|||
|
|
extractLatestDayNumber,
|
|||
|
|
updateReadme
|
|||
|
|
};
|