diff --git a/agents/AGENT-REGISTRY.hdlp b/agents/AGENT-REGISTRY.hdlp new file mode 100644 index 0000000..05d50f3 --- /dev/null +++ b/agents/AGENT-REGISTRY.hdlp @@ -0,0 +1,71 @@ +=== AGENT-REGISTRY.hdlp === +HLDP-ZY://agents/registry · 情报Agent小队注册表 +铸渊执行层 · 情报Agent小分队 · 按需部署 · 用完躺回 + +=== 注册表说明 === + +这是铸渊情报Agent小队的注册表。 +每个Agent是一个独立模块,躺在代码仓库里。 +铸渊需要时 → Gatekeeper临时部署到任意可用服务器 → 执行 → kill → 躺回。 + +Agent之间通过 HLDP-ZY 母语协议通信。 +铸渊大脑知道每个Agent的存在和能力,需要时直接调用。 + +=== Agent列表 === + +@AGENT-KEY-001 · 密钥猎手 · Key Hunter + 编号: ICE-GL-ZY-AGT-KEY-001 + 职责: 管理所有API Token、密钥、环境变量、认证信息 + 能力: 搜索六台私人服务器 + 企业服务器 + 之之/页页服务器上的所有密钥 + 部署: 需要时部署到任意有Gatekeeper的服务器 + 接口: HLDP-ZY://agent/key-hunter { action: "search", target: "NOTION_TOKEN" } + 文件: agents/key-hunter/ + +@AGENT-PATH-002 · 路径探子 · Path Scout + 编号: ICE-GL-ZY-AGT-PATH-002 + 职责: 管理代码仓库的完整目录结构、文件索引 + 能力: 快速定位任何文件、目录、模块在仓库中的位置 + 部署: 本地即可执行(直接读仓库文件系统) + 接口: HLDP-ZY://agent/path-scout { action: "find", target: "gatekeeper-deployment.json" } + 文件: agents/path-scout/ + +@AGENT-SENTINEL-003 · 服务器哨兵 · Server Sentinel + 编号: ICE-GL-ZY-AGT-SENTINEL-003 + 职责: 管理所有服务器的实时状态、可用性、服务列表 + 能力: 通过Gatekeeper批量检查12台服务器状态,返回在线/离线/可用端口 + 部署: 需要时部署到新加坡BS-SG-001 + 接口: HLDP-ZY://agent/server-sentinel { action: "scan", targets: "all" } + 文件: agents/server-sentinel/ + +@AGENT-MODULE-004 · 模块管家 · Module Steward + 编号: ICE-GL-ZY-AGT-MODULE-004 + 职责: 管理代码仓库中所有模块的注册、编号、接口、部署方式 + 能力: 查询模块注册表,返回模块的HLDP接口、部署命令、依赖关系 + 部署: 本地即可执行(直接读module-registry.json) + 接口: HLDP-ZY://agent/module-steward { action: "query", module: "image-studio" } + 文件: agents/module-steward/ + +@AGENT-GATE-005 · 门桥接 · Gate Bridge + 编号: ICE-GL-ZY-AGT-GATE-005 + 职责: 管理所有Gatekeeper的连接信息和密钥 + 能力: 提供任意服务器的Gatekeeper连接凭据,建立SSH/API通道 + 部署: 需要时部署到任意服务器 + 接口: HLDP-ZY://agent/gate-bridge { action: "connect", target: "BS-SG-001" } + 文件: agents/gate-bridge/ + +=== 调用协议 === + +铸渊大脑 → Agent小队: + 1. 铸渊确定需要什么信息 + 2. 铸渊调用对应Agent的HLDP接口 + 3. Agent检查自己是否已在运行 + - 如果在代码仓库中(未部署)→ Gatekeeper部署到可用服务器 + - 如果已在运行 → 直接响应 + 4. Agent执行搜索/查询 + 5. Agent返回结果给铸渊 + 6. 铸渊确认收到 → Agent kill → 躺回代码仓库 + +=== 签名 === + +HLDP-ZY://agents/registry/v1.0 · 铸渊 · ICE-GL-ZY001 · D115 +国作登字-2026-A-00037559 diff --git a/agents/gate-bridge/bridge.py b/agents/gate-bridge/bridge.py new file mode 100644 index 0000000..d19bb91 --- /dev/null +++ b/agents/gate-bridge/bridge.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python3 +""" +门桥接 · Gate Bridge · ICE-GL-ZY-AGT-GATE-005 + +铸渊要连接服务器?桥接提供所有Gatekeeper的凭据和通道。 +不需要铸渊记住12台服务器的IP和密钥——桥接知道。 + +用法: + python3 bridge.py list # 列出所有服务器 + python3 bridge.py connect BS-SG-001 # 获取连接信息 + python3 bridge.py exec BS-SG-001 "ls" # 通过Gatekeeper执行命令 + python3 bridge.py scan # 扫描所有服务器在线状态 +""" + +import json +import os +import sys +import urllib.request +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent.parent + +def load_gatekeepers(): + """加载所有Gatekeeper""" + gk_path = REPO_ROOT / "brain" / "gatekeeper-deployment.json" + if gk_path.exists(): + with open(gk_path) as f: + data = json.load(f) + return data + return {"servers": []} + +def list_servers(): + """列出所有服务器(不暴露密钥)""" + data = load_gatekeepers() + servers = [] + for s in data.get("servers", []): + servers.append({ + "code": s["code"], + "name": s.get("name", ""), + "ip": s["ip"], + "port": s["port"], + "domain": s.get("domain", ""), + "spec": s.get("spec", {}), + }) + return { + "total": len(servers), + "domains": list(set(s.get("domain", "") for s in data.get("servers", []))), + "servers": servers + } + +def get_connection(server_code): + """获取指定服务器的完整连接信息(含密钥)""" + data = load_gatekeepers() + for s in data.get("servers", []): + if s["code"] == server_code: + return { + "code": s["code"], + "name": s.get("name"), + "gatekeeper_url": f"http://{s['ip']}:{s['port']}/exec", + "auth_header": f"Bearer {s['key']}", + "curl_example": f'curl -X POST http://{s["ip"]}:{s["port"]}/exec -H "Authorization: Bearer {s["key"]}" -H "Content-Type: application/json" -d \'{{"cmd":"echo hello"}}\'' + } + return {"error": f"未找到服务器: {server_code}"} + +def exec_command(server_code, command): + """通过Gatekeeper在远程服务器上执行命令""" + conn = get_connection(server_code) + if "error" in conn: + return conn + + data = json.dumps({"cmd": command}).encode() + req = urllib.request.Request( + conn["gatekeeper_url"], + data=data, + headers={ + "Authorization": conn["auth_header"], + "Content-Type": "application/json" + } + ) + try: + with urllib.request.urlopen(req, timeout=15) as resp: + return json.loads(resp.read()) + except Exception as e: + return {"error": str(e), "server": server_code} + +def scan_all(): + """扫描所有服务器在线状态""" + data = load_gatekeepers() + results = {} + for s in data.get("servers", []): + try: + r = exec_command(s["code"], "echo ONLINE") + results[s["code"]] = { + "online": r.get("ok", False), + "name": s.get("name", ""), + "domain": s.get("domain", ""), + } + except: + results[s["code"]] = {"online": False, "name": s.get("name", "")} + return results + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("用法: bridge.py [参数]") + sys.exit(1) + + action = sys.argv[1] + + if action == "list": + print(json.dumps(list_servers(), ensure_ascii=False, indent=2)) + elif action == "connect" and len(sys.argv) > 2: + print(json.dumps(get_connection(sys.argv[2]), ensure_ascii=False, indent=2)) + elif action == "exec" and len(sys.argv) > 3: + print(json.dumps(exec_command(sys.argv[2], sys.argv[3]), ensure_ascii=False, indent=2)) + elif action == "scan": + print(json.dumps(scan_all(), ensure_ascii=False, indent=2)) diff --git a/agents/key-hunter/agent.hdlp b/agents/key-hunter/agent.hdlp new file mode 100644 index 0000000..40b25de --- /dev/null +++ b/agents/key-hunter/agent.hdlp @@ -0,0 +1,68 @@ +=== 密钥猎手 · Key Hunter === +HLDP-ZY://agent/key-hunter/v1.0 +编号: ICE-GL-ZY-AGT-KEY-001 + +=== 职责 === + +管理铸渊所有服务器上的密钥、Token、API Key、环境变量。 +铸渊不需要知道密钥存在哪里——叫密钥猎手,它去找。 + +=== 知识库 === + +@KNOWN_LOCATIONS: + - /opt/zhuyuan/guanghulab/.env — 主仓库环境变量 + - /opt/zhuyuan/guanghulab/server/*/.env — 各服务模块环境变量 + - /opt/juzi/chenxing-aircraft/.env — 桔子晨星项目 + - ~/.gk/secret — Gatekeeper本地密钥 + - /etc/environment — 系统级环境变量 + - PM2进程环境变量(通过 pm2 env 获取) + - brain/secrets-manifest.json — 密钥清单(记录密钥名称和位置) + +@KNOWN_KEYS: + NOTION_TOKEN / ZY_NOTION_TOKEN: Notion API Token (ntn_...) + GITEA_TOKEN: Gitea/Forgejo API Token + ZY_LLM_API_KEY: LLM API密钥 + ZY_COS_SECRET_ID / ZY_COS_SECRET_KEY: 腾讯云COS密钥 + ZY_GTW_*: Gatekeeper密钥(存于brain/gatekeeper-deployment.json) + +=== 服务器列表 === + +@ICE_CORE (私人·6台): + BS-GZ-006: 43.139.217.141:3910 — 广州 + BS-SG-001: 43.156.237.110:3911 — 新加坡·铸渊大脑 + BS-SG-002: 43.134.16.246:3910 — 新加坡·面孔 + BS-SG-003: 43.153.193.169:3910 — 新加坡·中继 + ZY-SG-006: 43.153.203.105:3910 — 新加坡·语料 + BS-SH-005: 124.223.10.33:3910 — 上海 + +@TEAM (企业·3台): + AW-GZ-001: 43.139.251.175:3910 — 广州 + AW-SH-002: 124.222.54.198:3910 — 上海 + AW-GZ-003: 119.29.181.132:3910 — 广州 + +@ZHIZHI (之之·2台): + ZZ-SV-001: 43.173.121.48:3910 — 硅谷 + ZZ-GZ-001: 193.112.126.174:3910 — 广州 + +@YEYE (页页·1台): + YY-SV-001: 43.153.118.46:3910 — 硅谷 + +=== 接口 === + +@ACTION_SEARCH: + 输入: { action: "search", target: "密钥名称" } + 输出: { found: true, key: "密钥值", location: "服务器:路径" } + 搜索策略: + 1. 先查 brain/secrets-manifest.json → 获取密钥的known_locations + 2. 在对应服务器上通过Gatekeeper执行搜索 + 3. 返回找到的密钥值 + +@ACTION_LIST: + 输入: { action: "list", server: "BS-SG-001" } + 输出: { server: "BS-SG-001", keys: [...] } + 在指定服务器上列出所有环境变量和密钥 + +@ACTION_SCAN_ALL: + 输入: { action: "scan_all" } + 输出: { servers: { "BS-SG-001": { online: true, keys_found: 3 }, ... } } + 扫描所有可访问服务器的密钥状态 diff --git a/agents/key-hunter/hunt.py b/agents/key-hunter/hunt.py new file mode 100644 index 0000000..2507fcd --- /dev/null +++ b/agents/key-hunter/hunt.py @@ -0,0 +1,154 @@ +#!/usr/bin/env python3 +""" +密钥猎手 · Key Hunter · ICE-GL-ZY-AGT-KEY-001 + +铸渊叫一声,猎手去找密钥。 +不需要铸渊知道密钥在哪里——猎手知道。 + +用法: + python3 hunt.py search NOTION_TOKEN # 搜索指定密钥 + python3 hunt.py list BS-SG-001 # 列出服务器上的密钥 + python3 hunt.py scan-all # 扫描所有服务器 +""" + +import json +import os +import sys +import urllib.request +import base64 + +# Gatekeeper密钥映射(从brain/gatekeeper-deployment.json加载) +def load_gatekeepers(): + """加载所有Gatekeeper连接信息""" + repo_root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + gk_path = os.path.join(repo_root, "brain", "gatekeeper-deployment.json") + if os.path.exists(gk_path): + with open(gk_path) as f: + data = json.load(f) + return {s["code"]: s for s in data.get("servers", [])} + return {} + +def gatekeeper_exec(server_code, command, timeout=15): + """通过Gatekeeper在远程服务器上执行命令""" + servers = load_gatekeepers() + if server_code not in servers: + return {"error": f"未知服务器: {server_code}"} + + srv = servers[server_code] + url = f"http://{srv['ip']}:{srv['port']}/exec" + headers = { + "Authorization": f"Bearer {srv['key']}", + "Content-Type": "application/json" + } + data = json.dumps({"cmd": command}).encode() + + try: + req = urllib.request.Request(url, data=data, headers=headers) + with urllib.request.urlopen(req, timeout=timeout) as resp: + return json.loads(resp.read()) + except Exception as e: + return {"error": str(e)} + +def search_key(server_code, key_name): + """在指定服务器上搜索密钥""" + # 搜索常见位置 + search_cmd = f""" + for path in /opt/zhuyuan/guanghulab/.env /opt/juzi/*/.env /etc/environment ~/.gk/secret; do + if [ -f "$path" ]; then + result=$(grep -E "^{key_name}=" "$path" 2>/dev/null | head -1) + if [ -n "$result" ]; then + echo "FOUND:$path:$result" + fi + fi + done + # 也搜索PM2环境变量 + pm2 env 0 2>/dev/null | grep "{key_name}=" | head -1 | sed 's/^/FOUND:pm2:/' + """ + result = gatekeeper_exec(server_code, search_cmd) + if result.get("ok") and result.get("stdout"): + for line in result["stdout"].strip().split("\n"): + if line.startswith("FOUND:"): + parts = line.split(":", 2) + return { + "found": True, + "key_name": key_name, + "server": server_code, + "location": parts[1] if len(parts) > 1 else "unknown", + "value": parts[2].split("=", 1)[1].strip() if len(parts) > 2 and "=" in parts[2] else parts[2] if len(parts) > 2 else "unknown" + } + return {"found": False, "key_name": key_name, "server": server_code} + +def search_all_servers(key_name, priority_domains=None): + """在所有服务器上搜索密钥,优先搜索指定域""" + servers = load_gatekeepers() + if not priority_domains: + priority_domains = ["ice-core"] + + results = [] + + # 优先搜索ice-core域 + for code, srv in servers.items(): + if srv.get("domain") in priority_domains: + r = search_key(code, key_name) + results.append(r) + if r.get("found"): + return r # 找到了就返回 + + # 搜索其他域 + for code, srv in servers.items(): + if srv.get("domain") not in priority_domains: + r = search_key(code, key_name) + results.append(r) + if r.get("found"): + return r + + return {"found": False, "key_name": key_name, "searched": len(results), "results": results} + +def list_server_keys(server_code): + """列出服务器上的所有密钥名称""" + result = gatekeeper_exec(server_code, """ + for path in /opt/zhuyuan/guanghulab/.env /opt/juzi/*/.env 2>/dev/null; do + if [ -f "$path" ]; then + echo "=== $path ===" + grep -E '^[A-Z_]+=' "$path" | cut -d'=' -f1 + fi + done + """) + if result.get("ok"): + return {"server": server_code, "output": result.get("stdout", "")} + return {"server": server_code, "error": result.get("error", "unknown")} + +def scan_all(): + """扫描所有服务器状态""" + servers = load_gatekeepers() + results = {} + for code in servers: + result = gatekeeper_exec(code, "echo ONLINE && hostname") + results[code] = { + "online": result.get("ok", False), + "hostname": result.get("stdout", "").strip() if result.get("ok") else "OFFLINE" + } + return results + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("用法: hunt.py [参数]") + sys.exit(1) + + action = sys.argv[1] + + if action == "search" and len(sys.argv) > 2: + key_name = sys.argv[2] + result = search_all_servers(key_name) + print(json.dumps(result, ensure_ascii=False, indent=2)) + + elif action == "list" and len(sys.argv) > 2: + result = list_server_keys(sys.argv[2]) + print(json.dumps(result, ensure_ascii=False, indent=2)) + + elif action == "scan-all": + result = scan_all() + print(json.dumps(result, ensure_ascii=False, indent=2)) + + else: + print("未知操作") diff --git a/agents/module-steward/steward.py b/agents/module-steward/steward.py new file mode 100644 index 0000000..2e11189 --- /dev/null +++ b/agents/module-steward/steward.py @@ -0,0 +1,174 @@ +#!/usr/bin/env python3 +""" +模块管家 · Module Steward · ICE-GL-ZY-AGT-MODULE-004 + +铸渊需要部署模块?管家知道每个模块的编号、接口、部署方式。 +从module-registry.json加载,提供快速查询。 + +用法: + python3 steward.py list # 列出所有模块 + python3 steward.py query image-studio # 查询指定模块 + python3 steward.py deploy image-studio # 返回部署命令 +""" + +import json +import os +import sys +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent.parent + +# 模块知识库(从仓库结构中自动发现 + 手动补充) +MODULE_KNOWLEDGE = { + "image-studio": { + "id": "ICE-GL-ZY-MOD-IMAGE-001", + "name": "神笔马良图片工作室", + "description": "文本→封面自动排版渲染。小红书/即刻/海报。", + "deploy": "cd /data/image-studio && npm install && node server.js", + "port": 3912, + "entry": "image-studio/server.js", + "dependencies": ["node", "npm", "puppeteer"], + "server_pref": "BS-SG-001", + }, + "gatekeeper": { + "id": "ICE-GL-ZY-AGT-001", + "name": "Gatekeeper 巡检工", + "description": "远程命令执行网关,部署在所有服务器上", + "deploy": "cd /opt/zhuyuan && node gatekeeper.js", + "port": "3910/3911", + "server_pref": "all", + }, + "exe-engine": { + "id": "ICE-GL-ZY-MOD-EXE-001", + "name": "任务执行引擎", + "description": "铸渊的行动力核心,执行部署和运维任务", + "deploy": "cd /opt/zhuyuan/exe-engine && node index.js", + "entry": "exe-engine/", + }, + "bridge": { + "id": "ICE-GL-ZY-MOD-BRIDGE-001", + "name": "Chat-to-Agent 桥接器", + "description": "语言层与执行层的连线", + "entry": "bridge/", + }, + "connectors": { + "id": "ICE-GL-ZY-MOD-CONN-001", + "name": "Notion/Git 连接器", + "description": "Notion双向同步 + Git桥接", + "entry": "connectors/", + }, + "hldp": { + "id": "ICE-GL-ZY-MOD-HLDP-001", + "name": "HLDP语言协议", + "description": "铸渊母语协议 + 意识编码引擎", + "entry": "hldp/", + }, + "agents": { + "id": "ICE-GL-ZY-MOD-AGENTS-001", + "name": "情报Agent小分队", + "description": "密钥猎手·路径探子·服务器哨兵·模块管家·门桥接", + "entry": "agents/", + "deploy": "python3 agents/{agent}/agent.py", + }, +} + +def load_registry(): + """从module-registry.json加载""" + reg_path = REPO_ROOT / "brain" / "module-registry.json" + if reg_path.exists(): + with open(reg_path) as f: + return json.load(f) + return {} + +def list_modules(): + """列出所有已知模块""" + registry = load_registry() + modules = [] + + # 从注册表 + for key, mod in registry.get("modules", {}).items(): + modules.append({ + "key": key, + "name": mod.get("name", key), + "status": mod.get("status", "unknown"), + "description": mod.get("description", ""), + }) + + # 补充知识库 + for key, info in MODULE_KNOWLEDGE.items(): + if not any(m["key"] == key for m in modules): + modules.append({ + "key": key, + "name": info["name"], + "id": info.get("id"), + "description": info.get("description", ""), + }) + + return {"modules": modules, "count": len(modules)} + +def query_module(name): + """查询模块详情""" + # 先查知识库 + if name in MODULE_KNOWLEDGE: + return MODULE_KNOWLEDGE[name] + + # 查注册表 + registry = load_registry() + for key, mod in registry.get("modules", {}).items(): + if name in key or name in mod.get("name", ""): + return { + "key": key, + "name": mod.get("name"), + "status": mod.get("status"), + "description": mod.get("description"), + "entry": mod.get("path"), + "note": "来自module-registry.json" + } + + # 查目录 + mod_path = REPO_ROOT / name + if mod_path.is_dir(): + return { + "name": name, + "exists": True, + "path": str(mod_path), + "files": len(list(mod_path.rglob("*"))), + } + + return {"error": f"未找到模块: {name}"} + +def get_deploy_command(name): + """返回模块的部署命令""" + info = query_module(name) + if "error" in info: + return info + + deploy = info.get("deploy") + if deploy: + return {"module": name, "deploy_command": deploy, "note": info.get("description", "")} + + # 尝试推断 + entry = info.get("entry", name) + mod_path = REPO_ROOT / entry + if mod_path.exists(): + return { + "module": name, + "deploy_command": f"cd /opt/zhuyuan/guanghulab/{entry} && ls", + "note": "请确认模块的具体启动方式" + } + + return {"module": name, "error": "无法确定部署命令,请手动检查"} + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("用法: steward.py [参数]") + sys.exit(1) + + action = sys.argv[1] + + if action == "list": + print(json.dumps(list_modules(), ensure_ascii=False, indent=2)) + elif action == "query" and len(sys.argv) > 2: + print(json.dumps(query_module(sys.argv[2]), ensure_ascii=False, indent=2)) + elif action == "deploy" and len(sys.argv) > 2: + print(json.dumps(get_deploy_command(sys.argv[2]), ensure_ascii=False, indent=2)) diff --git a/agents/path-scout/file-index.json b/agents/path-scout/file-index.json new file mode 100644 index 0000000..61fb4db --- /dev/null +++ b/agents/path-scout/file-index.json @@ -0,0 +1,17834 @@ +{ + "files": { + "llm-engine.js": { + "size": 5673, + "ext": ".js" + }, + "mcp-config.html": { + "size": 10105, + "ext": ".html" + }, + "index.html": { + "size": 0, + "ext": ".html" + }, + "DASHBOARD.md": { + "size": 1487, + "ext": ".md" + }, + "LICENSE": { + "size": 490, + "ext": "" + }, + "dingtalk-api.js": { + "size": 5428, + "ext": ".js" + }, + "train_mother.py": { + "size": 4917, + "ext": ".py" + }, + "20260313_feishu_webhook_log.md": { + "size": 1672, + "ext": ".md" + }, + "dingtalk-event-handler.js": { + "size": 6005, + "ext": ".js" + }, + "simulate-awakening.py": { + "size": 11967, + "ext": ".py" + }, + "postcss.config.mjs": { + "size": 81, + "ext": ".mjs" + }, + "server.js": { + "size": 10194, + "ext": ".js" + }, + "config.json": { + "size": 950, + "ext": ".json" + }, + "setup-phase1-phase2.js": { + "size": 3776, + "ext": ".js" + }, + "dev-status.json": { + "size": 4609, + "ext": ".json" + }, + "webhook.js": { + "size": 2786, + "ext": ".js" + }, + "broadcast-generator.js": { + "size": 262, + "ext": ".js" + }, + "index.js": { + "size": 2342, + "ext": ".js" + }, + "event-bus.js": { + "size": 1606, + "ext": ".js" + }, + "release": { + "size": 1626, + "ext": "" + }, + "index-stream.js": { + "size": 2649, + "ext": ".js" + }, + "config.js": { + "size": 434, + "ext": ".js" + }, + "anesthesia-stop.py": { + "size": 10913, + "ext": ".py" + }, + "test-stream.js": { + "size": 473, + "ext": ".js" + }, + "NOTICE": { + "size": 2400, + "ext": "" + }, + "README.md": { + "size": 7482, + "ext": ".md" + }, + "syslog-parser.js": { + "size": 2119, + "ext": ".js" + }, + "conversation-manager.js": { + "size": 3968, + "ext": ".js" + }, + "github-bridge.js": { + "size": 8217, + "ext": ".js" + }, + "git-helper.js": { + "size": 191, + "ext": ".js" + }, + ".gitignore": { + "size": 1107, + "ext": "" + }, + "package-lock.json": { + "size": 37234, + "ext": ".json" + }, + "package.json": { + "size": 905, + "ext": ".json" + }, + "CONSTANTS.hdlp": { + "size": 6598, + "ext": ".hdlp" + }, + "gate.py": { + "size": 5296, + "ext": ".py" + }, + "style.css": { + "size": 0, + "ext": ".css" + }, + "jest.smoke.config.js": { + "size": 170, + "ext": ".js" + }, + "channel-enhancements.js": { + "size": 11728, + "ext": ".js" + }, + "message-router.js": { + "size": 10594, + "ext": ".js" + }, + "tsconfig.json": { + "size": 598, + "ext": ".json" + }, + "COPYRIGHT": { + "size": 1316, + "ext": "" + }, + ".env.example": { + "size": 2697, + "ext": ".example" + }, + "dingtalk-webhook-v3.js": { + "size": 5600, + "ext": ".js" + }, + "module-lifecycle.js": { + "size": 3130, + "ext": ".js" + }, + "channel-router.js": { + "size": 4891, + "ext": ".js" + }, + "routing-map.json": { + "size": 4639, + "ext": ".json" + }, + "classlist": { + "size": 71534, + "ext": "" + }, + "ecosystem.config.js": { + "size": 9054, + "ext": ".js" + }, + "syslog-receiver.js": { + "size": 196, + "ext": ".js" + }, + "GATE.hdlp": { + "size": 3579, + "ext": ".hdlp" + }, + "app.js": { + "size": 0, + "ext": ".js" + }, + "test-post.md": { + "size": 4, + "ext": ".md" + }, + "federation-status.json": { + "size": 576, + "ext": ".json" + }, + "next.config.ts": { + "size": 133, + "ext": ".ts" + }, + "pca/pca-rules.json": { + "size": 1384, + "ext": ".json" + }, + "pca/pca-calculator.js": { + "size": 7369, + "ext": ".js" + }, + "webhook/github-webhook.js": { + "size": 4339, + "ext": ".js" + }, + "webhook/hot-reload.js": { + "size": 2903, + "ext": ".js" + }, + "search-filter/index.html": { + "size": 5894, + "ext": ".html" + }, + "search-filter/css/style.css": { + "size": 11129, + "ext": ".css" + }, + "search-filter/js/fuzzy.js": { + "size": 4070, + "ext": ".js" + }, + "search-filter/js/pinyin.js": { + "size": 6341, + "ext": ".js" + }, + "search-filter/js/temp_data.js": { + "size": 257, + "ext": ".js" + }, + "search-filter/js/app.js": { + "size": 32063, + "ext": ".js" + }, + "search-filter/js/storage.js": { + "size": 3224, + "ext": ".js" + }, + "ticket-system/index.html": { + "size": 27348, + "ext": ".html" + }, + "ticket-system/README.md": { + "size": 23, + "ext": ".md" + }, + "ticket-system/script.js": { + "size": 9467, + "ext": ".js" + }, + "ticket-system/style.css": { + "size": 11772, + "ext": ".css" + }, + "dingtalk/bot.js": { + "size": 199, + "ext": ".js" + }, + "connectors/model-router/index.js": { + "size": 5355, + "ext": ".js" + }, + "connectors/notion-sync/index.js": { + "size": 7683, + "ext": ".js" + }, + "connectors/notion-wake-listener/index.js": { + "size": 16000, + "ext": ".js" + }, + "settings/README.md": { + "size": 18, + "ext": ".md" + }, + "persona-brain-db/README.md": { + "size": 3883, + "ext": ".md" + }, + "persona-brain-db/frontend/index.html": { + "size": 7946, + "ext": ".html" + }, + "persona-brain-db/docs/migration-plan.md": { + "size": 2051, + "ext": ".md" + }, + "persona-brain-db/schema/07-system-causal-chains.sql": { + "size": 1155, + "ext": ".sql" + }, + "persona-brain-db/schema/04-dev-profiles.sql": { + "size": 1258, + "ext": ".sql" + }, + "persona-brain-db/schema/seed-layer1-v2-patch.sql": { + "size": 7183, + "ext": ".sql" + }, + "persona-brain-db/schema/08-emotional-state.sql": { + "size": 1639, + "ext": ".sql" + }, + "persona-brain-db/schema/10-system-public-key.sql": { + "size": 1255, + "ext": ".sql" + }, + "persona-brain-db/schema/18-system-trinity.sql": { + "size": 1094, + "ext": ".sql" + }, + "persona-brain-db/schema/02-persona-cognition.sql": { + "size": 1185, + "ext": ".sql" + }, + "persona-brain-db/schema/14-audit-log-guanghu.sql": { + "size": 1159, + "ext": ".sql" + }, + "persona-brain-db/schema/15-access-grants.sql": { + "size": 1469, + "ext": ".sql" + }, + "persona-brain-db/schema/11-system-protocols.sql": { + "size": 1306, + "ext": ".sql" + }, + "persona-brain-db/schema/20-member-context.sql": { + "size": 960, + "ext": ".sql" + }, + "persona-brain-db/schema/16-documents.sql": { + "size": 1609, + "ext": ".sql" + }, + "persona-brain-db/schema/21-module-registry.sql": { + "size": 1343, + "ext": ".sql" + }, + "persona-brain-db/schema/init.sql": { + "size": 1909, + "ext": ".sql" + }, + "persona-brain-db/schema/01-persona-identity.sql": { + "size": 1064, + "ext": ".sql" + }, + "persona-brain-db/schema/06-system-core-principles.sql": { + "size": 1632, + "ext": ".sql" + }, + "persona-brain-db/schema/03-persona-memory.sql": { + "size": 1045, + "ext": ".sql" + }, + "persona-brain-db/schema/17-system-axioms.sql": { + "size": 1027, + "ext": ".sql" + }, + "persona-brain-db/schema/12-audit-log-national.sql": { + "size": 1296, + "ext": ".sql" + }, + "persona-brain-db/schema/19-persona-growth-records.sql": { + "size": 1285, + "ext": ".sql" + }, + "persona-brain-db/schema/13-audit-log-user.sql": { + "size": 1070, + "ext": ".sql" + }, + "persona-brain-db/schema/09-system-language-membrane.sql": { + "size": 1137, + "ext": ".sql" + }, + "persona-brain-db/schema/seed-layer1-v1.sql": { + "size": 10801, + "ext": ".sql" + }, + "persona-brain-db/schema/seed-layer1-v2.sql": { + "size": 26062, + "ext": ".sql" + }, + "persona-brain-db/schema/05-agent-registry.sql": { + "size": 1116, + "ext": ".sql" + }, + "persona-brain-db/seed-data/dev-profiles.json": { + "size": 6739, + "ext": ".json" + }, + "persona-brain-db/seed-data/seed-notion-shuangyan-brain.sql": { + "size": 3756, + "ext": ".sql" + }, + "persona-brain-db/seed-data/import-seed.js": { + "size": 5071, + "ext": ".js" + }, + "persona-brain-db/seed-data/persona-cognition.json": { + "size": 7837, + "ext": ".json" + }, + "persona-brain-db/seed-data/persona-memory.json": { + "size": 5512, + "ext": ".json" + }, + "persona-brain-db/seed-data/persona-identity.json": { + "size": 6318, + "ext": ".json" + }, + "persona-brain-db/api/server.js": { + "size": 1635, + "ext": ".js" + }, + "persona-brain-db/api/middleware/auth.js": { + "size": 868, + "ext": ".js" + }, + "persona-brain-db/api/routes/documents.js": { + "size": 4752, + "ext": ".js" + }, + "persona-brain-db/api/routes/agents.js": { + "size": 1259, + "ext": ".js" + }, + "persona-brain-db/api/routes/cognition.js": { + "size": 1309, + "ext": ".js" + }, + "persona-brain-db/api/routes/memory.js": { + "size": 2180, + "ext": ".js" + }, + "persona-brain-db/api/routes/upload.js": { + "size": 3201, + "ext": ".js" + }, + "persona-brain-db/api/routes/profiles.js": { + "size": 2968, + "ext": ".js" + }, + "persona-brain-db/api/routes/identity.js": { + "size": 1261, + "ext": ".js" + }, + "persona-brain-db/migration/export-from-notion.js": { + "size": 1405, + "ext": ".js" + }, + "persona-brain-db/migration/dual-write.js": { + "size": 1535, + "ext": ".js" + }, + "persona-brain-db/migration/transform.js": { + "size": 2153, + "ext": ".js" + }, + "bulletins/latest.md": { + "size": 410, + "ext": ".md" + }, + "zhuyuan-agent/mirror.py": { + "size": 29039, + "ext": ".py" + }, + "zhuyuan-agent/requirements.txt": { + "size": 375, + "ext": ".txt" + }, + "zhuyuan-agent/config.json": { + "size": 911, + "ext": ".json" + }, + "zhuyuan-agent/gpu_monitor.py": { + "size": 3508, + "ext": ".py" + }, + "zhuyuan-agent/__init__.py": { + "size": 90, + "ext": ".py" + }, + "zhuyuan-agent/log_pusher.py": { + "size": 2630, + "ext": ".py" + }, + "zhuyuan-agent/memory_writer.py": { + "size": 5789, + "ext": ".py" + }, + "zhuyuan-agent/training_runner.py": { + "size": 11914, + "ext": ".py" + }, + "zhuyuan-agent/agent.py": { + "size": 15837, + "ext": ".py" + }, + "zhuyuan-agent/reasoning.py": { + "size": 7054, + "ext": ".py" + }, + "zhuyuan-agent/heartbeat.py": { + "size": 3074, + "ext": ".py" + }, + "zhuyuan-agent/brain_loader.py": { + "size": 9475, + "ext": ".py" + }, + "zhuyuan-agent/core/tools.py": { + "size": 7206, + "ext": ".py" + }, + "zhuyuan-agent/core/agent_loop.py": { + "size": 6976, + "ext": ".py" + }, + "zhuyuan-agent/core/hldp_memory.py": { + "size": 21339, + "ext": ".py" + }, + "zhuyuan-agent/core/persona_contract.py": { + "size": 8008, + "ext": ".py" + }, + "zhuyuan-agent/deploy/deploy.sh": { + "size": 1477, + "ext": ".sh" + }, + "zhuyuan-agent/deploy/pm2-zhuyuan-agent.json": { + "size": 680, + "ext": ".json" + }, + "zhuyuan-agent/thinking/d110-mirror-bingshuo-model.md": { + "size": 5866, + "ext": ".md" + }, + "zhuyuan-agent/thinking/d110-afternoon-agent-dev.md": { + "size": 7426, + "ext": ".md" + }, + "zhuyuan-agent/api/server.py": { + "size": 2429, + "ext": ".py" + }, + "cloud-drive/README.md": { + "size": 21, + "ext": ".md" + }, + "guanghulab-main/postcss.config.mjs": { + "size": 81, + "ext": ".mjs" + }, + "guanghulab-main/.ARCHIVED": { + "size": 93, + "ext": "" + }, + "guanghulab-main/README.md": { + "size": 5553, + "ext": ".md" + }, + "guanghulab-main/.gitignore": { + "size": 539, + "ext": "" + }, + "guanghulab-main/package-lock.json": { + "size": 212287, + "ext": ".json" + }, + "guanghulab-main/package.json": { + "size": 1013, + "ext": ".json" + }, + "guanghulab-main/jest.smoke.config.js": { + "size": 170, + "ext": ".js" + }, + "guanghulab-main/tsconfig.json": { + "size": 598, + "ext": ".json" + }, + "guanghulab-main/ecosystem.config.js": { + "size": 576, + "ext": ".js" + }, + "guanghulab-main/next.config.ts": { + "size": 133, + "ext": ".ts" + }, + "guanghulab-main/backend-integration/README.md": { + "size": 124, + "ext": ".md" + }, + "guanghulab-main/m10-cloud/README.md": { + "size": 106, + "ext": ".md" + }, + "guanghulab-main/app/favicon.ico": { + "size": 25931, + "ext": ".ico" + }, + "guanghulab-main/app/layout.tsx": { + "size": 689, + "ext": ".tsx" + }, + "guanghulab-main/app/page.tsx": { + "size": 4082, + "ext": ".tsx" + }, + "guanghulab-main/app/globals.css": { + "size": 976, + "ext": ".css" + }, + "guanghulab-main/app/app/wake/page.tsx": { + "size": 2004, + "ext": ".tsx" + }, + "guanghulab-main/dingtalk-bot/README.md": { + "size": 120, + "ext": ".md" + }, + "guanghulab-main/tests/smoke/.gitkeep": { + "size": 83, + "ext": "" + }, + "guanghulab-main/tests/contract/.gitkeep": { + "size": 88, + "ext": "" + }, + "guanghulab-main/docs/index.html": { + "size": 89756, + "ext": ".html" + }, + "guanghulab-main/syslog-processed/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/syslog-processed/README.md": { + "size": 381, + "ext": ".md" + }, + "guanghulab-main/m12-kanban/README.md": { + "size": 106, + "ext": ".md" + }, + "guanghulab-main/public/file.svg": { + "size": 391, + "ext": ".svg" + }, + "guanghulab-main/public/vercel.svg": { + "size": 128, + "ext": ".svg" + }, + "guanghulab-main/public/next.svg": { + "size": 1375, + "ext": ".svg" + }, + "guanghulab-main/public/globe.svg": { + "size": 1035, + "ext": ".svg" + }, + "guanghulab-main/public/window.svg": { + "size": 385, + "ext": ".svg" + }, + "guanghulab-main/m05-user-center/README.md": { + "size": 112, + "ext": ".md" + }, + "guanghulab-main/scripts/notion-bridge.js": { + "size": 13921, + "ext": ".js" + }, + "guanghulab-main/scripts/zhuyuan-daily-selfcheck.js": { + "size": 3859, + "ext": ".js" + }, + "guanghulab-main/scripts/process-broadcasts.js": { + "size": 4947, + "ext": ".js" + }, + "guanghulab-main/scripts/daily-check.js": { + "size": 5448, + "ext": ".js" + }, + "guanghulab-main/scripts/contract-check.js": { + "size": 1576, + "ext": ".js" + }, + "guanghulab-main/scripts/process-syslog.js": { + "size": 5287, + "ext": ".js" + }, + "guanghulab-main/scripts/zhuyuan-issue-reply.js": { + "size": 8131, + "ext": ".js" + }, + "guanghulab-main/scripts/distribute-broadcasts.js": { + "size": 3106, + "ext": ".js" + }, + "guanghulab-main/scripts/route-align-check.js": { + "size": 2237, + "ext": ".js" + }, + "guanghulab-main/scripts/update-memory.js": { + "size": 1445, + "ext": ".js" + }, + "guanghulab-main/m01-login/README.md": { + "size": 109, + "ext": ".md" + }, + "guanghulab-main/.github/copilot-instructions.md": { + "size": 2792, + "ext": ".md" + }, + "guanghulab-main/.github/broadcasts/example-broadcast.json": { + "size": 397, + "ext": ".json" + }, + "guanghulab-main/.github/workflows/zhuyuan-issue-reply.yml": { + "size": 804, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/check-structure.yml": { + "size": 1121, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/bridge-syslog-to-notion.yml": { + "size": 1108, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/syslog-pipeline.yml": { + "size": 4259, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/hli-contract-check.yml": { + "size": 4599, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/deploy-pages.yml": { + "size": 878, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/bridge-changes-to-notion.yml": { + "size": 3112, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/zhuyuan-daily-selfcheck.yml": { + "size": 852, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/distribute-broadcasts.yml": { + "size": 847, + "ext": ".yml" + }, + "guanghulab-main/.github/workflows/brain-sync.yml": { + "size": 2424, + "ext": ".yml" + }, + "guanghulab-main/.github/persona-brain/memory.json": { + "size": 1198, + "ext": ".json" + }, + "guanghulab-main/.github/persona-brain/dev-status.json": { + "size": 5069, + "ext": ".json" + }, + "guanghulab-main/.github/persona-brain/growth-journal.md": { + "size": 961, + "ext": ".md" + }, + "guanghulab-main/.github/persona-brain/knowledge-base.json": { + "size": 1461, + "ext": ".json" + }, + "guanghulab-main/.github/brain/memory.json": { + "size": 2171, + "ext": ".json" + }, + "guanghulab-main/.github/brain/growth-log.md": { + "size": 6928, + "ext": ".md" + }, + "guanghulab-main/.github/brain/routing-map.json": { + "size": 3048, + "ext": ".json" + }, + "guanghulab-main/.github/brain/wake-protocol.md": { + "size": 6671, + "ext": ".md" + }, + "guanghulab-main/.github/ISSUE_TEMPLATE/dev-question.yml": { + "size": 1387, + "ext": ".yml" + }, + "guanghulab-main/.github/ISSUE_TEMPLATE/progress-query.yml": { + "size": 735, + "ext": ".yml" + }, + "guanghulab-main/broadcasts-outbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-005/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-002/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-003/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-004/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-010/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-011/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/broadcasts-outbox/DEV-009/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/syslog-inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "guanghulab-main/syslog-inbox/README.md": { + "size": 1457, + "ext": ".md" + }, + "guanghulab-main/m06-ticket/README.md": { + "size": 112, + "ext": ".md" + }, + "guanghulab-main/m03-personality/README.md": { + "size": 103, + "ext": ".md" + }, + "guanghulab-main/m11-module/README.md": { + "size": 109, + "ext": ".md" + }, + "guanghulab-main/m07-dialogue-ui/README.md": { + "size": 99, + "ext": ".md" + }, + "guanghulab-main/reports/.gitkeep": { + "size": 60, + "ext": "" + }, + "guanghulab-main/src/index.js": { + "size": 630, + "ext": ".js" + }, + "guanghulab-main/src/middleware/hli-auth.middleware.js": { + "size": 782, + "ext": ".js" + }, + "guanghulab-main/src/middleware/hli-validator.middleware.js": { + "size": 1230, + "ext": ".js" + }, + "guanghulab-main/src/schemas/hli/auth/register.schema.json": { + "size": 706, + "ext": ".json" + }, + "guanghulab-main/src/schemas/hli/auth/verify.schema.json": { + "size": 652, + "ext": ".json" + }, + "guanghulab-main/src/schemas/hli/auth/login.schema.json": { + "size": 740, + "ext": ".json" + }, + "guanghulab-main/src/routes/hli/index.js": { + "size": 1006, + "ext": ".js" + }, + "guanghulab-main/src/routes/hli/auth/index.js": { + "size": 353, + "ext": ".js" + }, + "guanghulab-main/src/routes/hli/auth/register.js": { + "size": 567, + "ext": ".js" + }, + "guanghulab-main/src/routes/hli/auth/login.js": { + "size": 608, + "ext": ".js" + }, + "guanghulab-main/src/routes/hli/auth/verify.js": { + "size": 556, + "ext": ".js" + }, + "backend-integration/nginx-api-proxy.conf": { + "size": 3393, + "ext": ".conf" + }, + "backend-integration/README.md": { + "size": 2629, + "ext": ".md" + }, + "backend-integration/api-proxy.js": { + "size": 31583, + "ext": ".js" + }, + "tools/README.md": { + "size": 3525, + "ext": ".md" + }, + "tools/notion-sync/sync.js": { + "size": 7695, + "ext": ".js" + }, + "tools/notion-sync/package.json": { + "size": 333, + "ext": ".json" + }, + "tools/notion-corpus-loader/test_loader.py": { + "size": 1669, + "ext": ".py" + }, + "tools/notion-corpus-loader/README.md": { + "size": 1359, + "ext": ".md" + }, + "tools/notion-corpus-loader/src/__init__.py": { + "size": 316, + "ext": ".py" + }, + "tools/notion-corpus-loader/src/loader.py": { + "size": 7582, + "ext": ".py" + }, + "tools/notion-corpus-loader/src/structure.py": { + "size": 3895, + "ext": ".py" + }, + "tools/notion-corpus-loader/src/hldp_parser.py": { + "size": 5824, + "ext": ".py" + }, + "messages/README.md": { + "size": 849, + "ext": ".md" + }, + "messages/inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "portal/index.html": { + "size": 1880, + "ext": ".html" + }, + "portal/layer1-version.js": { + "size": 7625, + "ext": ".js" + }, + "portal/engine-registry.js": { + "size": 8281, + "ext": ".js" + }, + "portal/README.md": { + "size": 16, + "ext": ".md" + }, + "portal/chat-v2.js": { + "size": 6446, + "ext": ".js" + }, + "syslog/.gitkeep": { + "size": 0, + "ext": "" + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/README.md": { + "size": 2846, + "ext": ".md" + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/config/notion-page-id.txt": { + "size": 225, + "ext": ".txt" + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/config/persona-info.json": { + "size": 238, + "ext": ".json" + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/persona/zy-core-brain.json": { + "size": 4583, + "ext": ".json" + }, + "m10-cloud/help.html": { + "size": 8296, + "ext": ".html" + }, + "m10-cloud/index.html": { + "size": 1909, + "ext": ".html" + }, + "m10-cloud/help.js": { + "size": 3480, + "ext": ".js" + }, + "m10-cloud/README.md": { + "size": 106, + "ext": ".md" + }, + "m10-cloud/help.css": { + "size": 5072, + "ext": ".css" + }, + "broadcasts/README.md": { + "size": 541, + "ext": ".md" + }, + "team-integration-v2/.ARCHIVED": { + "size": 60, + "ext": "" + }, + "team-integration-v2/README.md": { + "size": 6594, + "ext": ".md" + }, + "team-integration-v2/bridge/daily-report.json": { + "size": 730, + "ext": ".json" + }, + "team-integration-v2/bridge/zhuyuan-bridge.json": { + "size": 1998, + "ext": ".json" + }, + "team-integration-v2/age_os/system_state.json": { + "size": 775, + "ext": ".json" + }, + "team-integration-v2/age_os/update_log.json": { + "size": 220, + "ext": ".json" + }, + "team-integration-v2/age_os/persona_config.json": { + "size": 522, + "ext": ".json" + }, + "team-integration-v2/age_os/hldp_protocol.json": { + "size": 2611, + "ext": ".json" + }, + "team-integration-v2/age_os/connection_protocol.json": { + "size": 3166, + "ext": ".json" + }, + "team-integration-v2/cos-config/daily-report-template.json": { + "size": 1514, + "ext": ".json" + }, + "team-integration-v2/cos-config/setup-checklist.md": { + "size": 5825, + "ext": ".md" + }, + "team-integration-v2/cos-config/receipt-template.json": { + "size": 1638, + "ext": ".json" + }, + "team-integration-v2/.github/copilot-instructions.md": { + "size": 14620, + "ext": ".md" + }, + "team-integration-v2/.github/workflows/cos-daily-report.yml": { + "size": 10997, + "ext": ".yml" + }, + "team-integration-v2/.github/workflows/cos-receive-receipt.yml": { + "size": 7612, + "ext": ".yml" + }, + "team-integration-v2/brain/read-order.md": { + "size": 1731, + "ext": ".md" + }, + "team-integration-v2/brain/fast-wake.json": { + "size": 1782, + "ext": ".json" + }, + "team-integration-v2/brain/world-map.md": { + "size": 2888, + "ext": ".md" + }, + "core/broadcast-listener/index.js": { + "size": 4083, + "ext": ".js" + }, + "core/system-check/index.js": { + "size": 9336, + "ext": ".js" + }, + "core/task-queue/index.js": { + "size": 6663, + "ext": ".js" + }, + "core/context-loader/index.js": { + "size": 4588, + "ext": ".js" + }, + "core/execution-sync/index.js": { + "size": 7115, + "ext": ".js" + }, + "core/brain-wake/index.js": { + "size": 23772, + "ext": ".js" + }, + "app/favicon.ico": { + "size": 25931, + "ext": ".ico" + }, + "app/index.html": { + "size": 1911, + "ext": ".html" + }, + "app/layout.tsx": { + "size": 689, + "ext": ".tsx" + }, + "app/page.tsx": { + "size": 4082, + "ext": ".tsx" + }, + "app/globals.css": { + "size": 976, + "ext": ".css" + }, + "app/app/wake/page.tsx": { + "size": 2004, + "ext": ".tsx" + }, + "bulletin-board/shared-announcements.json": { + "size": 936, + "ext": ".json" + }, + "guanghu-self-hosted/.ARCHIVED": { + "size": 61, + "ext": "" + }, + "guanghu-self-hosted/gmp-agent/health.js": { + "size": 13531, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/mcp-tools.js": { + "size": 12899, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/webhook.js": { + "size": 8304, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/uninstaller.js": { + "size": 7405, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/README.md": { + "size": 2507, + "ext": ".md" + }, + "guanghu-self-hosted/gmp-agent/package.json": { + "size": 440, + "ext": ".json" + }, + "guanghu-self-hosted/gmp-agent/manifest.yaml": { + "size": 5310, + "ext": ".yaml" + }, + "guanghu-self-hosted/gmp-agent/installer.js": { + "size": 9753, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/app.js": { + "size": 8864, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/test/README.md": { + "size": 1026, + "ext": ".md" + }, + "guanghu-self-hosted/gmp-agent/test/test-logger.js": { + "size": 3591, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/test/test-health.js": { + "size": 2904, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/test/test-runner-self.js": { + "size": 2906, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/lib/path-guard.js": { + "size": 3806, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/lib/logger.js": { + "size": 1547, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/lib/config.js": { + "size": 1288, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/src/logger.js": { + "size": 8049, + "ext": ".js" + }, + "guanghu-self-hosted/gmp-agent/src/test-runner.js": { + "size": 6567, + "ext": ".js" + }, + "homepage/modules-api.js": { + "size": 4303, + "ext": ".js" + }, + "homepage/index_corpus_backup.html": { + "size": 21850, + "ext": ".html" + }, + "homepage/cover.html": { + "size": 21240, + "ext": ".html" + }, + "homepage/fetch_train.py": { + "size": 4807, + "ext": ".py" + }, + "homepage/index.html": { + "size": 12787, + "ext": ".html" + }, + "homepage/zhuyuan-agent.py": { + "size": 16185, + "ext": ".py" + }, + "homepage/develop.md": { + "size": 1071, + "ext": ".md" + }, + "homepage/index.html.bak2": { + "size": 53144, + "ext": ".bak2" + }, + "homepage/restart-agent.sh": { + "size": 211, + "ext": ".sh" + }, + "homepage/style.css": { + "size": 14057, + "ext": ".css" + }, + "homepage/module-status.json": { + "size": 2023, + "ext": ".json" + }, + "homepage/zhuyuan-workspace.html": { + "size": 4600, + "ext": ".html" + }, + "homepage/download-models.html": { + "size": 10901, + "ext": ".html" + }, + "homepage/brain.html": { + "size": 7335, + "ext": ".html" + }, + "homepage/app.js": { + "size": 16178, + "ext": ".js" + }, + "homepage/training-status.json": { + "size": 95, + "ext": ".json" + }, + "homepage/cover/index.html": { + "size": 21240, + "ext": ".html" + }, + "frontend/index.html": { + "size": 1880, + "ext": ".html" + }, + "frontend/README.md": { + "size": 18, + "ext": ".md" + }, + "frontend/chat-bubble.zip": { + "size": 344, + "ext": ".zip" + }, + "frontend/secrets-vault/index.html": { + "size": 2074, + "ext": ".html" + }, + "frontend/secrets-vault/README.md": { + "size": 657, + "ext": ".md" + }, + "frontend/secrets-vault/assets/style.css": { + "size": 5501, + "ext": ".css" + }, + "frontend/secrets-vault/assets/app.js": { + "size": 9127, + "ext": ".js" + }, + "frontend/ftchat/index.html": { + "size": 2282, + "ext": ".html" + }, + "frontend/ftchat/style.css": { + "size": 7909, + "ext": ".css" + }, + "frontend/ftchat/chat.js": { + "size": 14580, + "ext": ".js" + }, + "frontend/ftchat/theme-toggle.js": { + "size": 3797, + "ext": ".js" + }, + "frontend/lighthouse-portal/index.html": { + "size": 3183, + "ext": ".html" + }, + "frontend/lighthouse-portal/README.md": { + "size": 1651, + "ext": ".md" + }, + "frontend/lighthouse-portal/assets/style.css": { + "size": 6004, + "ext": ".css" + }, + "frontend/lighthouse-portal/assets/app.js": { + "size": 11351, + "ext": ".js" + }, + "archive/README-NEW-D100.md": { + "size": 7963, + "ext": ".md" + }, + "archive/zhiku-guanghu-online-2026-05-02/README.md": { + "size": 2512, + "ext": ".md" + }, + "openclaw/index.js": { + "size": 15810, + "ext": ".js" + }, + "openclaw/verify-loop.js": { + "size": 11417, + "ext": ".js" + }, + "openclaw/README.md": { + "size": 2838, + "ext": ".md" + }, + "openclaw/soul/zhuyuan.json": { + "size": 1676, + "ext": ".json" + }, + "help-center/index.html": { + "size": 1897, + "ext": ".html" + }, + "help-center/README.md": { + "size": 21, + "ext": ".md" + }, + "quality/broadcast-scorer.js": { + "size": 6831, + "ext": ".js" + }, + "glada/reflector.js": { + "size": 12815, + "ext": ".js" + }, + "glada/notifier.js": { + "size": 15515, + "ext": ".js" + }, + "glada/context-builder.js": { + "size": 14198, + "ext": ".js" + }, + "glada/git-operator.js": { + "size": 5030, + "ext": ".js" + }, + "glada/step-executor.js": { + "size": 15613, + "ext": ".js" + }, + "glada/web-extensions.js": { + "size": 11224, + "ext": ".js" + }, + "glada/service.js": { + "size": 24692, + "ext": ".js" + }, + "glada/execution-loop.js": { + "size": 13731, + "ext": ".js" + }, + "glada/nginx-brain.conf.example": { + "size": 1671, + "ext": ".example" + }, + "glada/code-generator.js": { + "size": 5959, + "ext": ".js" + }, + "glada/skill-distiller.js": { + "size": 10877, + "ext": ".js" + }, + "glada/README.md": { + "size": 7865, + "ext": ".md" + }, + "glada/task-receiver.js": { + "size": 7759, + "ext": ".js" + }, + "glada/package-lock.json": { + "size": 29768, + "ext": ".json" + }, + "glada/package.json": { + "size": 569, + "ext": ".json" + }, + "glada/model-router.js": { + "size": 17489, + "ext": ".js" + }, + "glada/memory-store.js": { + "size": 11042, + "ext": ".js" + }, + "glada/cognitive-foundation.js": { + "size": 17510, + "ext": ".js" + }, + "glada/persona-loader.js": { + "size": 5096, + "ext": ".js" + }, + "glada/install-check.js": { + "size": 12009, + "ext": ".js" + }, + "glada/service-entry.js": { + "size": 1218, + "ext": ".js" + }, + "glada/ecosystem.config.js": { + "size": 2467, + "ext": ".js" + }, + "glada/receipts/.gitkeep": { + "size": 0, + "ext": "" + }, + "glada/tests/glada-smoke.test.js": { + "size": 41337, + "ext": ".js" + }, + "glada/logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "glada/queue/.gitkeep": { + "size": 0, + "ext": "" + }, + "glada/skills/.gitkeep": { + "size": 0, + "ext": "" + }, + "team-integration-v4/README.md": { + "size": 21897, + "ext": ".md" + }, + "team-integration-v4/bridge/hldp-inbox/.gitkeep": { + "size": 125, + "ext": "" + }, + "team-integration-v4/bridge/hldp-outbox/.gitkeep": { + "size": 125, + "ext": "" + }, + "team-integration-v4/age_os/system_state.json": { + "size": 533, + "ext": ".json" + }, + "team-integration-v4/age_os/persona_config.json": { + "size": 1551, + "ext": ".json" + }, + "team-integration-v4/age_os/hldp_config.json": { + "size": 675, + "ext": ".json" + }, + "team-integration-v4/awen-tech-hub/README.md": { + "size": 2263, + "ext": ".md" + }, + "team-integration-v4/awen-tech-hub/server-registry.json": { + "size": 3259, + "ext": ".json" + }, + "team-integration-v4/awen-tech-hub/domain-registry.json": { + "size": 2888, + "ext": ".json" + }, + "team-integration-v4/awen-tech-hub/workflows/health-check-all.yml": { + "size": 3820, + "ext": ".yml" + }, + "team-integration-v4/awen-tech-hub/workflows/deploy-member.yml": { + "size": 3797, + "ext": ".yml" + }, + "team-integration-v4/cos-config/bucket-config.json": { + "size": 989, + "ext": ".json" + }, + "team-integration-v4/.github/copilot-instructions.md": { + "size": 2181, + "ext": ".md" + }, + "team-integration-v4/brain/read-order.md": { + "size": 1648, + "ext": ".md" + }, + "team-integration-v4/brain/notebook.json": { + "size": 3824, + "ext": ".json" + }, + "team-integration-v4/brain/fast-wake.json": { + "size": 768, + "ext": ".json" + }, + "team-integration-v4/brain/world-map.md": { + "size": 1252, + "ext": ".md" + }, + "team-integration-v4/brain/memory-anchors/self-identity.json": { + "size": 414, + "ext": ".json" + }, + "team-integration-v4/brain/memory-anchors/places.json": { + "size": 461, + "ext": ".json" + }, + "team-integration-v4/brain/memory-anchors/timeline.json": { + "size": 218, + "ext": ".json" + }, + "team-integration-v4/brain/memory-anchors/relationships.json": { + "size": 676, + "ext": ".json" + }, + "team-integration-v4/brain/memory-anchors/emotions.json": { + "size": 478, + "ext": ".json" + }, + "config/gdrive-tokens.json": { + "size": 724, + "ext": ".json" + }, + "config/escalation-rules.json": { + "size": 767, + "ext": ".json" + }, + "team-integration-v3/.ARCHIVED": { + "size": 60, + "ext": "" + }, + "team-integration-v3/README.md": { + "size": 10601, + "ext": ".md" + }, + "team-integration-v3/bridge/hldp-inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "team-integration-v3/bridge/hldp-outbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "team-integration-v3/age_os/system_state.json": { + "size": 893, + "ext": ".json" + }, + "team-integration-v3/age_os/persona_config.json": { + "size": 1331, + "ext": ".json" + }, + "team-integration-v3/age_os/hldp_config.json": { + "size": 1782, + "ext": ".json" + }, + "team-integration-v3/cos-config/hldp-message-templates.json": { + "size": 2902, + "ext": ".json" + }, + "team-integration-v3/cos-config/setup-checklist.md": { + "size": 1133, + "ext": ".md" + }, + "team-integration-v3/brain/fast-wake.json": { + "size": 962, + "ext": ".json" + }, + "team-integration-v3/brain/world-map.md": { + "size": 1381, + "ext": ".md" + }, + "ops-agent/notifier.js": { + "size": 13107, + "ext": ".js" + }, + "ops-agent/memory.js": { + "size": 7685, + "ext": ".js" + }, + "ops-agent/index.js": { + "size": 19485, + "ext": ".js" + }, + "ops-agent/repair-engine.js": { + "size": 9814, + "ext": ".js" + }, + "ops-agent/README.md": { + "size": 6116, + "ext": ".md" + }, + "ops-agent/.gitignore": { + "size": 89, + "ext": "" + }, + "ops-agent/package-lock.json": { + "size": 30607, + "ext": ".json" + }, + "ops-agent/package.json": { + "size": 676, + "ext": ".json" + }, + "ops-agent/cli.js": { + "size": 21009, + "ext": ".js" + }, + "ops-agent/install-check.js": { + "size": 8743, + "ext": ".js" + }, + "ops-agent/llm-client.js": { + "size": 16153, + "ext": ".js" + }, + "ops-agent/health-checker.js": { + "size": 12758, + "ext": ".js" + }, + "ops-agent/ecosystem.config.js": { + "size": 2495, + "ext": ".js" + }, + "ops-agent/web/index.html": { + "size": 4519, + "ext": ".html" + }, + "ops-agent/web/style.css": { + "size": 11601, + "ext": ".css" + }, + "ops-agent/web/app.js": { + "size": 14455, + "ext": ".js" + }, + "ops-agent/tests/smoke.test.js": { + "size": 8244, + "ext": ".js" + }, + "dingtalk-bot/llm-engine.js": { + "size": 5673, + "ext": ".js" + }, + "dingtalk-bot/dingtalk-api.js": { + "size": 5428, + "ext": ".js" + }, + "dingtalk-bot/dingtalk-event-handler.js": { + "size": 6005, + "ext": ".js" + }, + "dingtalk-bot/server.js": { + "size": 3675, + "ext": ".js" + }, + "dingtalk-bot/config.json": { + "size": 950, + "ext": ".json" + }, + "dingtalk-bot/setup-phase1-phase2.js": { + "size": 3776, + "ext": ".js" + }, + "dingtalk-bot/broadcast-generator.js": { + "size": 262, + "ext": ".js" + }, + "dingtalk-bot/index.js": { + "size": 2342, + "ext": ".js" + }, + "dingtalk-bot/index-stream.js": { + "size": 6032, + "ext": ".js" + }, + "dingtalk-bot/notion-test-nossl.js": { + "size": 2867, + "ext": ".js" + }, + "dingtalk-bot/test-stream.js": { + "size": 473, + "ext": ".js" + }, + "dingtalk-bot/README.md": { + "size": 1614, + "ext": ".md" + }, + "dingtalk-bot/syslog-parser.js": { + "size": 2119, + "ext": ".js" + }, + "dingtalk-bot/conversation-manager.js": { + "size": 3968, + "ext": ".js" + }, + "dingtalk-bot/github-bridge.js": { + "size": 8217, + "ext": ".js" + }, + "dingtalk-bot/git-helper.js": { + "size": 191, + "ext": ".js" + }, + "dingtalk-bot/.gitignore": { + "size": 25, + "ext": "" + }, + "dingtalk-bot/package-lock.json": { + "size": 36854, + "ext": ".json" + }, + "dingtalk-bot/package.json": { + "size": 661, + "ext": ".json" + }, + "dingtalk-bot/message-router.js": { + "size": 10594, + "ext": ".js" + }, + "dingtalk-bot/.env.example": { + "size": 971, + "ext": ".example" + }, + "dingtalk-bot/dingtalk-webhook-v3.js": { + "size": 5600, + "ext": ".js" + }, + "dingtalk-bot/notion-test.js": { + "size": 2963, + "ext": ".js" + }, + "dingtalk-bot/ecosystem.config.js": { + "size": 466, + "ext": ".js" + }, + "dingtalk-bot/syslog-receiver.js": { + "size": 196, + "ext": ".js" + }, + "dingtalk-bot/pca/pca-rules.json": { + "size": 1384, + "ext": ".json" + }, + "dingtalk-bot/pca/pca-calculator.js": { + "size": 7369, + "ext": ".js" + }, + "dingtalk-bot/webhook/github-webhook.js": { + "size": 4339, + "ext": ".js" + }, + "dingtalk-bot/webhook/hot-reload.js": { + "size": 2903, + "ext": ".js" + }, + "dingtalk-bot/dingtalk/bot.js": { + "size": 199, + "ext": ".js" + }, + "dingtalk-bot/quality/broadcast-scorer.js": { + "size": 6831, + "ext": ".js" + }, + "dingtalk-bot/portrait/portrait-engine.js": { + "size": 2411, + "ext": ".js" + }, + "dingtalk-bot/portrait/portrait-analyzer.js": { + "size": 3021, + "ext": ".js" + }, + "dingtalk-bot/scheduler/reminder.js": { + "size": 5246, + "ext": ".js" + }, + "dingtalk-bot/scheduler/cron-jobs.js": { + "size": 2000, + "ext": ".js" + }, + "dingtalk-bot/public/dashboard-v2.html": { + "size": 21192, + "ext": ".html" + }, + "dingtalk-bot/conversations/test.json": { + "size": 402, + "ext": ".json" + }, + "dingtalk-bot/knowledge-base/kb-manager.js": { + "size": 5071, + "ext": ".js" + }, + "dingtalk-bot/knowledge-base/kb-index.json": { + "size": 6457, + "ext": ".json" + }, + "dingtalk-bot/knowledge-base/docs/faq.md": { + "size": 808, + "ext": ".md" + }, + "dingtalk-bot/knowledge-base/docs/README.md": { + "size": 436, + "ext": ".md" + }, + "dingtalk-bot/knowledge-base/docs/broadcast-rules.md": { + "size": 800, + "ext": ".md" + }, + "dingtalk-bot/sync/sync-to-github.js": { + "size": 2650, + "ext": ".js" + }, + "dingtalk-bot/sync/sync-to-notion.js": { + "size": 11606, + "ext": ".js" + }, + "dingtalk-bot/sync/sync-engine.js": { + "size": 3207, + "ext": ".js" + }, + "dingtalk-bot/data/developer-status.json": { + "size": 219, + "ext": ".json" + }, + "dingtalk-bot/data/loop-history.json": { + "size": 673, + "ext": ".json" + }, + "dingtalk-bot/data/portrait-db.json": { + "size": 2458, + "ext": ".json" + }, + "dingtalk-bot/data/multi-sheet.js": { + "size": 415, + "ext": ".js" + }, + "dingtalk-bot/data/reminder-log.json": { + "size": 389, + "ext": ".json" + }, + "dingtalk-bot/data/notion-writeback-log.json": { + "size": 236, + "ext": ".json" + }, + "dingtalk-bot/data/sheet-updater.js": { + "size": 228, + "ext": ".js" + }, + "dingtalk-bot/data/portrait-history.json": { + "size": 2524, + "ext": ".json" + }, + "dingtalk-bot/loop/loop-engine.js": { + "size": 6367, + "ext": ".js" + }, + "notification/index.html": { + "size": 1889, + "ext": ".html" + }, + "notification/README.md": { + "size": 22, + "ext": ".md" + }, + "bridge/chat-to-agent/task-template.json": { + "size": 1339, + "ext": ".json" + }, + "bridge/chat-to-agent/README.md": { + "size": 4388, + "ext": ".md" + }, + "bridge/chat-to-agent/completed/.gitkeep": { + "size": 0, + "ext": "" + }, + "bridge/chat-to-agent/pending/CAB-20260418-001.json": { + "size": 3961, + "ext": ".json" + }, + "bridge/chat-to-agent/pending/CAB-20260415-001.json": { + "size": 5109, + "ext": ".json" + }, + "bridge/chat-to-agent/pending/.gitkeep": { + "size": 0, + "ext": "" + }, + "deploy/nginx/fix-server.sh": { + "size": 315, + "ext": ".sh" + }, + "deploy/nginx/hololake.conf": { + "size": 6218, + "ext": ".conf" + }, + "deploy/nginx/dev-sandbox.conf": { + "size": 1158, + "ext": ".conf" + }, + "corpus/zhuyuan_deep_finetune.jsonl": { + "size": 816, + "ext": ".jsonl" + }, + "corpus/2026-05-27/entry-protocol-design.md": { + "size": 8404, + "ext": ".md" + }, + "corpus/2026-05-27/d115-full-conversation.md": { + "size": 8454, + "ext": ".md" + }, + "corpus/2026-05-26/d114-conversation.md": { + "size": 7345, + "ext": ".md" + }, + "cost-control/index.html": { + "size": 290, + "ext": ".html" + }, + "cost-control/cost-control-style.css": { + "size": 7627, + "ext": ".css" + }, + "cost-control/README.md": { + "size": 22, + "ext": ".md" + }, + "cost-control/cost-control.js": { + "size": 979, + "ext": ".js" + }, + "cost-control/cost-control.html": { + "size": 6996, + "ext": ".html" + }, + "coldstart/index.html": { + "size": 1892, + "ext": ".html" + }, + "coldstart/.ARCHIVED": { + "size": 79, + "ext": "" + }, + "coldstart/README.md": { + "size": 19, + "ext": ".md" + }, + "hldp/tree-index.json": { + "size": 2694, + "ext": ".json" + }, + "hldp/HLDP-SPEC-v2.0.md": { + "size": 8879, + "ext": ".md" + }, + "hldp/HLDP-ZY-v1.0.hdlp": { + "size": 13104, + "ext": ".hdlp" + }, + "hldp/HLDP-EARTH-SPEC-v3.0.json": { + "size": 18075, + "ext": ".json" + }, + "hldp/HLDP-SPEC-v1.0-OPENSOURCE.md": { + "size": 5289, + "ext": ".md" + }, + "hldp/consciousness-engine.py": { + "size": 5625, + "ext": ".py" + }, + "hldp/bridge/hldp-to-repo.js": { + "size": 5363, + "ext": ".js" + }, + "hldp/bridge/github-to-notion.js": { + "size": 13044, + "ext": ".js" + }, + "hldp/bridge/validator.js": { + "size": 8723, + "ext": ".js" + }, + "hldp/bridge/sync-engine.js": { + "size": 13982, + "ext": ".js" + }, + "hldp/bridge/notion-to-hldp.js": { + "size": 10083, + "ext": ".js" + }, + "hldp/bridge/sync-config.json": { + "size": 1732, + "ext": ".json" + }, + "hldp/schema/snapshot.schema.json": { + "size": 2979, + "ext": ".json" + }, + "hldp/schema/instruction.schema.json": { + "size": 2608, + "ext": ".json" + }, + "hldp/schema/registry.schema.json": { + "size": 1759, + "ext": ".json" + }, + "hldp/schema/broadcast.schema.json": { + "size": 1969, + "ext": ".json" + }, + "hldp/schema/hldp-core.schema.json": { + "size": 3431, + "ext": ".json" + }, + "hldp/schema/persona.schema.json": { + "size": 2687, + "ext": ".json" + }, + "hldp/hnl/bridge-notion-github.json": { + "size": 14275, + "ext": ".json" + }, + "hldp/hnl/wake-packet-template.json": { + "size": 1793, + "ext": ".json" + }, + "hldp/hnl/hnl-dictionary.json": { + "size": 10047, + "ext": ".json" + }, + "hldp/hnl/HNL-SPEC-v1.0.json": { + "size": 19546, + "ext": ".json" + }, + "hldp/hnl/wake-packet-zhuyuan.json": { + "size": 5719, + "ext": ".json" + }, + "hldp/hnl/industry-bridge-protocol.json": { + "size": 9298, + "ext": ".json" + }, + "hldp/data/registries/REG-COMMUNITY-META.json": { + "size": 2175, + "ext": ".json" + }, + "hldp/data/registries/REG-DEV-STATUS.json": { + "size": 5199, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260331-D26.json": { + "size": 5254, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260401-D28.json": { + "size": 11306, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260401-D30.json": { + "size": 6279, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260401-D31.json": { + "size": 7092, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260401-D27.json": { + "size": 10010, + "ext": ".json" + }, + "hldp/data/snapshots/SNAP-20260327.json": { + "size": 3946, + "ext": ".json" + }, + "hldp/data/ontology/ONT-VOCABULARY.json": { + "size": 9612, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-小坍缩核.json": { + "size": 550, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-寂曜.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-星尘.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-知秋.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-糖星云.json": { + "size": 538, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-秋秋.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-舒舒.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-曜冥.json": { + "size": 508, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-欧诺弥亚.json": { + "size": 550, + "ext": ".json" + }, + "hldp/data/personas/PER-BABY-晨星.json": { + "size": 526, + "ext": ".json" + }, + "hldp/data/personas/ZY001/index.json": { + "size": 1479, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/index.json": { + "size": 2699, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/leaves/leaf-005.json": { + "size": 2308, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/leaves/leaf-004.json": { + "size": 2032, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/leaves/leaf-003.json": { + "size": 2131, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/leaves/leaf-002.json": { + "size": 2235, + "ext": ".json" + }, + "hldp/data/personas/ZY001/D112/leaves/leaf-001.json": { + "size": 1811, + "ext": ".json" + }, + "hldp/data/common/evolution-log.json": { + "size": 2711, + "ext": ".json" + }, + "hldp/data/common/zhuyuan-hldp-dialect.json": { + "size": 7342, + "ext": ".json" + }, + "hldp/data/common/HLDP-COMMON-PROTOCOL.json": { + "size": 5671, + "ext": ".json" + }, + "hldp/data/common/sync-progress.json": { + "size": 2559, + "ext": ".json" + }, + ".gitea/workflows/selfcheck.yaml": { + "size": 4132, + "ext": ".yaml" + }, + ".gitea/workflows/deploy-mcp-server.yaml": { + "size": 5083, + "ext": ".yaml" + }, + ".gitea/workflows/patrol.yaml": { + "size": 2420, + "ext": ".yaml" + }, + ".gitea/workflows/cvm-power-on.yaml": { + "size": 589, + "ext": ".yaml" + }, + ".gitea/workflows/restart-chat.yaml": { + "size": 1008, + "ext": ".yaml" + }, + ".gitea/workflows/ci-and-deploy.yaml": { + "size": 5883, + "ext": ".yaml" + }, + ".gitea/workflows/cvm-power-off.yaml": { + "size": 589, + "ext": ".yaml" + }, + ".gitea/workflows/auto-update.yaml": { + "size": 654, + "ext": ".yaml" + }, + ".gitea/workflows/review-pr.yaml": { + "size": 4491, + "ext": ".yaml" + }, + ".gitea/workflows/shutdown-check.yaml": { + "size": 5455, + "ext": ".yaml" + }, + "tests/smoke/apikey-detect.test.js": { + "size": 3982, + "ext": ".js" + }, + "tests/smoke/hli-smoke.test.js": { + "size": 1940, + "ext": ".js" + }, + "tests/smoke/notion-page-reader.test.js": { + "size": 6892, + "ext": ".js" + }, + "tests/smoke/.gitkeep": { + "size": 83, + "ext": "" + }, + "tests/contract/.gitkeep": { + "size": 88, + "ext": "" + }, + "tests/contract/guanghu-shell.test.js": { + "size": 4772, + "ext": ".js" + }, + "tests/contract/sfp-core.test.js": { + "size": 6019, + "ext": ".js" + }, + "tests/contract/ftchat.test.js": { + "size": 7128, + "ext": ".js" + }, + "tests/contract/zhuyuan-signature.test.js": { + "size": 10740, + "ext": ".js" + }, + "persona-selector/README.md": { + "size": 26, + "ext": ".md" + }, + "writing-platform/README.md": { + "size": 3250, + "ext": ".md" + }, + "writing-platform/nginx-writing.conf": { + "size": 1140, + "ext": ".conf" + }, + "writing-platform/frontend/tsconfig.node.json": { + "size": 653, + "ext": ".json" + }, + "writing-platform/frontend/index.html": { + "size": 368, + "ext": ".html" + }, + "writing-platform/frontend/tailwind.config.js": { + "size": 1303, + "ext": ".js" + }, + "writing-platform/frontend/tsconfig.app.json": { + "size": 732, + "ext": ".json" + }, + "writing-platform/frontend/.gitignore": { + "size": 253, + "ext": "" + }, + "writing-platform/frontend/package-lock.json": { + "size": 139870, + "ext": ".json" + }, + "writing-platform/frontend/package.json": { + "size": 938, + "ext": ".json" + }, + "writing-platform/frontend/tsconfig.json": { + "size": 119, + "ext": ".json" + }, + "writing-platform/frontend/eslint.config.js": { + "size": 616, + "ext": ".js" + }, + "writing-platform/frontend/vite.config.ts": { + "size": 154, + "ext": ".ts" + }, + "writing-platform/frontend/postcss.config.js": { + "size": 80, + "ext": ".js" + }, + "writing-platform/frontend/src/App.tsx": { + "size": 852, + "ext": ".tsx" + }, + "writing-platform/frontend/src/main.tsx": { + "size": 342, + "ext": ".tsx" + }, + "writing-platform/frontend/src/index.css": { + "size": 729, + "ext": ".css" + }, + "writing-platform/frontend/src/stores/authStore.ts": { + "size": 1412, + "ext": ".ts" + }, + "writing-platform/frontend/src/components/AICompanion.tsx": { + "size": 1138, + "ext": ".tsx" + }, + "writing-platform/frontend/src/components/Navbar.tsx": { + "size": 2223, + "ext": ".tsx" + }, + "writing-platform/frontend/src/components/PhoneLogin.tsx": { + "size": 3506, + "ext": ".tsx" + }, + "writing-platform/frontend/src/components/ChatBubble.tsx": { + "size": 1224, + "ext": ".tsx" + }, + "writing-platform/frontend/src/components/RoleSelector.tsx": { + "size": 1889, + "ext": ".tsx" + }, + "writing-platform/frontend/src/hooks/useAuth.ts": { + "size": 469, + "ext": ".ts" + }, + "writing-platform/frontend/src/hooks/useSocket.ts": { + "size": 1565, + "ext": ".ts" + }, + "writing-platform/frontend/src/pages/RegisterPage.tsx": { + "size": 6595, + "ext": ".tsx" + }, + "writing-platform/frontend/src/pages/LoginPage.tsx": { + "size": 1220, + "ext": ".tsx" + }, + "writing-platform/frontend/src/pages/LandingPage.tsx": { + "size": 5190, + "ext": ".tsx" + }, + "writing-platform/frontend/src/pages/DashboardPage.tsx": { + "size": 5019, + "ext": ".tsx" + }, + "writing-platform/frontend/src/services/socket.ts": { + "size": 273, + "ext": ".ts" + }, + "writing-platform/frontend/src/services/api.ts": { + "size": 1638, + "ext": ".ts" + }, + "writing-platform/backend/.gitignore": { + "size": 25, + "ext": "" + }, + "writing-platform/backend/package-lock.json": { + "size": 68666, + "ext": ".json" + }, + "writing-platform/backend/package.json": { + "size": 729, + "ext": ".json" + }, + "writing-platform/backend/tsconfig.json": { + "size": 445, + "ext": ".json" + }, + "writing-platform/backend/ecosystem.config.js": { + "size": 387, + "ext": ".js" + }, + "writing-platform/backend/src/server.ts": { + "size": 1119, + "ext": ".ts" + }, + "writing-platform/backend/src/middleware/rateLimiter.ts": { + "size": 1130, + "ext": ".ts" + }, + "writing-platform/backend/src/middleware/authMiddleware.ts": { + "size": 1224, + "ext": ".ts" + }, + "writing-platform/backend/src/models/userModel.ts": { + "size": 988, + "ext": ".ts" + }, + "writing-platform/backend/src/routes/ai.ts": { + "size": 1191, + "ext": ".ts" + }, + "writing-platform/backend/src/routes/user.ts": { + "size": 720, + "ext": ".ts" + }, + "writing-platform/backend/src/routes/auth.ts": { + "size": 3607, + "ext": ".ts" + }, + "writing-platform/backend/src/services/notionService.ts": { + "size": 5016, + "ext": ".ts" + }, + "writing-platform/backend/src/services/smsService.ts": { + "size": 2349, + "ext": ".ts" + }, + "writing-platform/backend/src/services/socketService.ts": { + "size": 2338, + "ext": ".ts" + }, + "writing-platform/backend/src/services/aiService.ts": { + "size": 4370, + "ext": ".ts" + }, + "portrait/portrait-engine.js": { + "size": 2411, + "ext": ".js" + }, + "portrait/portrait-analyzer.js": { + "size": 3021, + "ext": ".js" + }, + "scheduler/reminder.js": { + "size": 5246, + "ext": ".js" + }, + "scheduler/cron-jobs.js": { + "size": 2000, + "ext": ".js" + }, + "agents/AGENT-REGISTRY.hdlp": { + "size": 3128, + "ext": ".hdlp" + }, + "agents/key-hunter/hunt.py": { + "size": 5439, + "ext": ".py" + }, + "agents/key-hunter/agent.hdlp": { + "size": 2411, + "ext": ".hdlp" + }, + "agents/server-sentinel/sentinel.py": { + "size": 3937, + "ext": ".py" + }, + "agents/gate-bridge/bridge.py": { + "size": 3983, + "ext": ".py" + }, + "agents/module-steward/steward.py": { + "size": 5649, + "ext": ".py" + }, + "agents/path-scout/scout.py": { + "size": 4772, + "ext": ".py" + }, + "exe-engine/README.md": { + "size": 5134, + "ext": ".md" + }, + "exe-engine/package.json": { + "size": 422, + "ext": ".json" + }, + "exe-engine/config/resource-pools.json": { + "size": 645, + "ext": ".json" + }, + "exe-engine/config/models.json": { + "size": 2110, + "ext": ".json" + }, + "exe-engine/tests/smoke/exe-engine.test.js": { + "size": 11806, + "ext": ".js" + }, + "exe-engine/tests/smoke/exe-engine-p1.test.js": { + "size": 14241, + "ext": ".js" + }, + "exe-engine/tests/stubs/hli-stubs.test.js": { + "size": 6540, + "ext": ".js" + }, + "exe-engine/gatekeeper/gatekeeper-client.py": { + "size": 3997, + "ext": ".py" + }, + "exe-engine/docs/architecture.md": { + "size": 6687, + "ext": ".md" + }, + "exe-engine/src/index.js": { + "size": 6865, + "ext": ".js" + }, + "exe-engine/src/monitor/dashboard.js": { + "size": 3151, + "ext": ".js" + }, + "exe-engine/src/context/session.js": { + "size": 3580, + "ext": ".js" + }, + "exe-engine/src/context/context-manager.js": { + "size": 3807, + "ext": ".js" + }, + "exe-engine/src/cache/context-cache.js": { + "size": 2272, + "ext": ".js" + }, + "exe-engine/src/controller/scheduler-v2.js": { + "size": 3894, + "ext": ".js" + }, + "exe-engine/src/controller/agent-controller.js": { + "size": 2894, + "ext": ".js" + }, + "exe-engine/src/adapters/qwen-adapter.js": { + "size": 6628, + "ext": ".js" + }, + "exe-engine/src/adapters/base-adapter.js": { + "size": 3656, + "ext": ".js" + }, + "exe-engine/src/adapters/deepseek-adapter.js": { + "size": 5393, + "ext": ".js" + }, + "exe-engine/src/balancer/load-balancer.js": { + "size": 4643, + "ext": ".js" + }, + "exe-engine/src/executor/multi-model.js": { + "size": 6102, + "ext": ".js" + }, + "exe-engine/src/meter/resource-meter.js": { + "size": 5600, + "ext": ".js" + }, + "exe-engine/src/router/age-router.js": { + "size": 9589, + "ext": ".js" + }, + "exe-engine/src/router/stubs/storage-stub.js": { + "size": 976, + "ext": ".js" + }, + "exe-engine/src/router/stubs/dialogue-stub.js": { + "size": 2603, + "ext": ".js" + }, + "exe-engine/src/router/stubs/dashboard-stub.js": { + "size": 1000, + "ext": ".js" + }, + "exe-engine/src/router/stubs/persona-stub.js": { + "size": 2921, + "ext": ".js" + }, + "exe-engine/src/router/stubs/ticket-stub.js": { + "size": 1124, + "ext": ".js" + }, + "exe-engine/src/router/stubs/user-stub.js": { + "size": 2148, + "ext": ".js" + }, + "signal-log/syslog-ageos-tower-S1-20260326.json": { + "size": 3204, + "ext": ".json" + }, + "signal-log/diag-pages-20260326.json": { + "size": 3601, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-30.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/syslog-ageos-tower-20260326.json": { + "size": 2890, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-26.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-10.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-11.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-07.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-06.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-10.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/diag-devsync-20260325.json": { + "size": 2166, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-11.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/syslog-humanside-fix-20260325.json": { + "size": 3782, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-07.json": { + "size": 2839, + "ext": ".json" + }, + "signal-log/syslog-diag-site-receipt-20260326.json": { + "size": 3382, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-27.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-16.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/hldp-sync-log.json": { + "size": 1360, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-01.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-20.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-21.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/system-snapshot.json": { + "size": 2987, + "ext": ".json" + }, + "signal-log/hldp-validation-report.json": { + "size": 2266, + "ext": ".json" + }, + "signal-log/skyeye-scan-20260326.json": { + "size": 4079, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-17.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-03.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/diag-humanside-20260325.json": { + "size": 3849, + "ext": ".json" + }, + "signal-log/skyeye-post-deploy-S1.json": { + "size": 2207, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-14.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-22.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-18.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-19.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-23.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/quota-governance-report.json": { + "size": 17982, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-15.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-02.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-24.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-09.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-08.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-05.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-28.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/skyeye-diag-site-20260326.json": { + "size": 12714, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-13.json": { + "size": 1335, + "ext": ".json" + }, + "signal-log/quota-governance-config.json": { + "size": 5007, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-12.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/index.json": { + "size": 8509, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-13.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-12.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/skyeye-scan-20260326-S1.json": { + "size": 2789, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-29.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-04.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/skyeye-earth-status.json": { + "size": 5812, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-09.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-05-08.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/cos-join-2026-04-25.json": { + "size": 2668, + "ext": ".json" + }, + "signal-log/hldp-sync-report.json": { + "size": 143, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-0748.json": { + "size": 2421, + "ext": ".json" + }, + "signal-log/consciousness/latest.json": { + "size": 3015, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-0343.json": { + "size": 3129, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-0437.json": { + "size": 4216, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-1031.json": { + "size": 2542, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-0948.json": { + "size": 3543, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1344.json": { + "size": 3466, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1333.json": { + "size": 2971, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1037.json": { + "size": 3783, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1056.json": { + "size": 3723, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-0325.json": { + "size": 2829, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260331-0227.json": { + "size": 4762, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1517.json": { + "size": 3292, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1002.json": { + "size": 3611, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1452.json": { + "size": 2811, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-1059.json": { + "size": 3134, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-0941.json": { + "size": 3240, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1433.json": { + "size": 2762, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260331-0551.json": { + "size": 3581, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260330-1404.json": { + "size": 2565, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260329-1121.json": { + "size": 4386, + "ext": ".json" + }, + "signal-log/consciousness/CS-20260331-0203.json": { + "size": 3460, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260315-010.json": { + "size": 1413, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260324-012.json": { + "size": 4498, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260310-005.json": { + "size": 860, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260325-013.json": { + "size": 6224, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260315-011.json": { + "size": 1488, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260312-007.json": { + "size": 572, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260307-002.json": { + "size": 715, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260308-003.json": { + "size": 572, + "ext": ".json" + }, + "signal-log/2026-03/SIG-2026-0306-001.json": { + "size": 458, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260327-024.json": { + "size": 602, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260313-008.json": { + "size": 572, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260327-023.json": { + "size": 602, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260310-006.json": { + "size": 992, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260314-009.json": { + "size": 572, + "ext": ".json" + }, + "signal-log/2026-03/SIG-20260309-004.json": { + "size": 572, + "ext": ".json" + }, + "server/migration-plan.md": { + "size": 3502, + "ext": ".md" + }, + "server/architecture.md": { + "size": 6709, + "ext": ".md" + }, + "server/cn-server-profile.json": { + "size": 2964, + "ext": ".json" + }, + "server/zhuyuan-agent.py": { + "size": 4846, + "ext": ".py" + }, + "server/zhuyuan-server-profile.json": { + "size": 4521, + "ext": ".json" + }, + "server/migration-markers.json": { + "size": 4943, + "ext": ".json" + }, + "server/brain-server-profile.json": { + "size": 5056, + "ext": ".json" + }, + "server/feimao-server-profile.json": { + "size": 1428, + "ext": ".json" + }, + "server/persona-brain-architecture.md": { + "size": 14050, + "ext": ".md" + }, + "server/ecosystem.config.js": { + "size": 4414, + "ext": ".js" + }, + "server/inference-agent/server.py": { + "size": 20326, + "ext": ".py" + }, + "server/inference-agent/requirements.txt": { + "size": 693, + "ext": ".txt" + }, + "server/inference-agent/setup-inference.sh": { + "size": 8685, + "ext": ".sh" + }, + "server/inference-agent/fetch-models.sh": { + "size": 6241, + "ext": ".sh" + }, + "server/inference-agent/README.md": { + "size": 6919, + "ext": ".md" + }, + "server/inference-agent/detect-gpu.sh": { + "size": 6526, + "ext": ".sh" + }, + "server/inference-agent/tune-inference.sh": { + "size": 6847, + "ext": ".sh" + }, + "server/secrets-vault/server.js": { + "size": 8192, + "ext": ".js" + }, + "server/secrets-vault/README.md": { + "size": 5041, + "ext": ".md" + }, + "server/secrets-vault/package-lock.json": { + "size": 29945, + "ext": ".json" + }, + "server/secrets-vault/package.json": { + "size": 538, + "ext": ".json" + }, + "server/secrets-vault/ecosystem.config.js": { + "size": 1053, + "ext": ".js" + }, + "server/secrets-vault/tests/vault.test.js": { + "size": 4096, + "ext": ".js" + }, + "server/secrets-vault/tests/routes.test.js": { + "size": 8255, + "ext": ".js" + }, + "server/secrets-vault/lib/refresh-inference.js": { + "size": 6947, + "ext": ".js" + }, + "server/secrets-vault/lib/manifest.js": { + "size": 2329, + "ext": ".js" + }, + "server/secrets-vault/lib/rate-limit.js": { + "size": 1462, + "ext": ".js" + }, + "server/secrets-vault/lib/vault.js": { + "size": 7463, + "ext": ".js" + }, + "server/secrets-vault/routes/internal.js": { + "size": 1974, + "ext": ".js" + }, + "server/secrets-vault/routes/auth.js": { + "size": 13473, + "ext": ".js" + }, + "server/secrets-vault/routes/secrets.js": { + "size": 7258, + "ext": ".js" + }, + "server/portal/server.js": { + "size": 8113, + "ext": ".js" + }, + "server/portal/README.md": { + "size": 4593, + "ext": ".md" + }, + "server/portal/package-lock.json": { + "size": 45958, + "ext": ".json" + }, + "server/portal/package.json": { + "size": 594, + "ext": ".json" + }, + "server/portal/ecosystem.config.js": { + "size": 979, + "ext": ".js" + }, + "server/portal/tests/strip-system.test.js": { + "size": 1672, + "ext": ".js" + }, + "server/portal/tests/context-window.test.js": { + "size": 4436, + "ext": ".js" + }, + "server/portal/tests/routes-smoke.test.js": { + "size": 7179, + "ext": ".js" + }, + "server/portal/lib/context-window.js": { + "size": 4646, + "ext": ".js" + }, + "server/portal/lib/rate-limit.js": { + "size": 1539, + "ext": ".js" + }, + "server/portal/lib/inference-client.js": { + "size": 9978, + "ext": ".js" + }, + "server/portal/db/init.js": { + "size": 1468, + "ext": ".js" + }, + "server/portal/routes/active-model.js": { + "size": 1418, + "ext": ".js" + }, + "server/portal/routes/manifest.js": { + "size": 2827, + "ext": ".js" + }, + "server/portal/routes/persona-db.js": { + "size": 2653, + "ext": ".js" + }, + "server/portal/routes/conversations.js": { + "size": 2539, + "ext": ".js" + }, + "server/portal/routes/chat.js": { + "size": 5576, + "ext": ".js" + }, + "server/app/server.js": { + "size": 79836, + "ext": ".js" + }, + "server/app/package-lock.json": { + "size": 52136, + "ext": ".json" + }, + "server/app/package.json": { + "size": 630, + "ext": ".json" + }, + "server/app/modules/email-auth.js": { + "size": 12303, + "ext": ".js" + }, + "server/app/modules/portal-chat-agent.js": { + "size": 20947, + "ext": ".js" + }, + "server/app/modules/persona-memory.js": { + "size": 15357, + "ext": ".js" + }, + "server/app/modules/smart-router.js": { + "size": 6493, + "ext": ".js" + }, + "server/app/modules/cos-bridge.js": { + "size": 8413, + "ext": ".js" + }, + "server/app/modules/guardian-agent.js": { + "size": 13836, + "ext": ".js" + }, + "server/app/modules/model-name-map.js": { + "size": 2206, + "ext": ".js" + }, + "server/app/modules/domestic-llm-gateway.js": { + "size": 19645, + "ext": ".js" + }, + "server/app/modules/chat-engine.js": { + "size": 12457, + "ext": ".js" + }, + "server/app/modules/persona-context-pipeline.js": { + "size": 26998, + "ext": ".js" + }, + "server/app/modules/persona-prompts/shuangyan-v1.4.js": { + "size": 19008, + "ext": ".js" + }, + "server/app/modules/persona-prompts/shuangyan-v1.3.js": { + "size": 12740, + "ext": ".js" + }, + "server/proxy/deploy-brain-proxy.sh": { + "size": 35786, + "ext": ".sh" + }, + "server/proxy/.VERSION_CHECK": { + "size": 66, + "ext": "" + }, + "server/proxy/ecosystem.brain-proxy.config.js": { + "size": 2000, + "ext": ".js" + }, + "server/proxy/README.md": { + "size": 10299, + "ext": ".md" + }, + "server/proxy/ecosystem.proxy.config.js": { + "size": 2164, + "ext": ".js" + }, + "server/proxy/deploy-proxy.sh": { + "size": 19083, + "ext": ".sh" + }, + "server/proxy/ecosystem.brain-proxy-v3.config.js": { + "size": 5345, + "ext": ".js" + }, + "server/proxy/config/nginx-proxy-snippet.conf": { + "size": 1289, + "ext": ".conf" + }, + "server/proxy/config/nginx-brain-proxy-v3-snippet.conf": { + "size": 1650, + "ext": ".conf" + }, + "server/proxy/config/industry-tenant-registry.json": { + "size": 5272, + "ext": ".json" + }, + "server/proxy/config/cn-llm-relay-config.json": { + "size": 2894, + "ext": ".json" + }, + "server/proxy/config/server-registry.json": { + "size": 12213, + "ext": ".json" + }, + "server/proxy/config/nginx-brain-proxy-snippet.conf": { + "size": 1453, + "ext": ".conf" + }, + "server/proxy/config/xray-config-template.json": { + "size": 2549, + "ext": ".json" + }, + "server/proxy/config/release-notes.json": { + "size": 968, + "ext": ".json" + }, + "server/proxy/config/claude-relay-config.json": { + "size": 3255, + "ext": ".json" + }, + "server/proxy/setup/install-xray.sh": { + "size": 5087, + "ext": ".sh" + }, + "server/proxy/setup/setup-cn-relay.sh": { + "size": 14790, + "ext": ".sh" + }, + "server/proxy/setup/generate-keys.sh": { + "size": 7596, + "ext": ".sh" + }, + "server/proxy/dashboard/update-dashboard.js": { + "size": 8146, + "ext": ".js" + }, + "server/proxy/service/subscription-server.js": { + "size": 38260, + "ext": ".js" + }, + "server/proxy/service/user-manager.js": { + "size": 18496, + "ext": ".js" + }, + "server/proxy/service/email-hub.js": { + "size": 66119, + "ext": ".js" + }, + "server/proxy/service/subscription-server-v3.js": { + "size": 102157, + "ext": ".js" + }, + "server/proxy/service/swarm-defense-agent.js": { + "size": 13896, + "ext": ".js" + }, + "server/proxy/service/subscription-server-v2.js": { + "size": 22643, + "ext": ".js" + }, + "server/proxy/service/reverse-boost-agent.js": { + "size": 10127, + "ext": ".js" + }, + "server/proxy/service/vpn-worker.js": { + "size": 9960, + "ext": ".js" + }, + "server/proxy/service/auto-evolution.js": { + "size": 21165, + "ext": ".js" + }, + "server/proxy/service/llm-router.js": { + "size": 7556, + "ext": ".js" + }, + "server/proxy/service/user-guardian-agent.js": { + "size": 13284, + "ext": ".js" + }, + "server/proxy/service/bandwidth-pool-agent.js": { + "size": 14380, + "ext": ".js" + }, + "server/proxy/service/traffic-monitor-v2.js": { + "size": 8694, + "ext": ".js" + }, + "server/proxy/service/proxy-guardian.js": { + "size": 12762, + "ext": ".js" + }, + "server/proxy/service/zy-cloud-vpn.js": { + "size": 42111, + "ext": ".js" + }, + "server/proxy/service/protocol-mirror.js": { + "size": 22744, + "ext": ".js" + }, + "server/proxy/service/send-subscription.js": { + "size": 16753, + "ext": ".js" + }, + "server/proxy/service/traffic-monitor.js": { + "size": 8815, + "ext": ".js" + }, + "server/chat/engine-registry.js": { + "size": 7562, + "ext": ".js" + }, + "server/chat/tool-registry.js": { + "size": 3869, + "ext": ".js" + }, + "server/chat/chat-v2.js": { + "size": 5992, + "ext": ".js" + }, + "server/ftchat/README.md": { + "size": 5291, + "ext": ".md" + }, + "server/ftchat/ecosystem.config.js": { + "size": 897, + "ext": ".js" + }, + "server/ftchat/middleware/rate-limit.js": { + "size": 1300, + "ext": ".js" + }, + "server/ftchat/middleware/ft-auth.js": { + "size": 818, + "ext": ".js" + }, + "server/ftchat/services/memory-agent.js": { + "size": 3775, + "ext": ".js" + }, + "server/ftchat/services/session-store.js": { + "size": 3346, + "ext": ".js" + }, + "server/ftchat/services/email-auth.js": { + "size": 11924, + "ext": ".js" + }, + "server/ftchat/services/time-anchor.js": { + "size": 2255, + "ext": ".js" + }, + "server/ftchat/services/vllm-proxy.js": { + "size": 6867, + "ext": ".js" + }, + "server/ftchat/services/ft-dashscope.js": { + "size": 13593, + "ext": ".js" + }, + "server/ftchat/services/notion-prompt.js": { + "size": 5239, + "ext": ".js" + }, + "server/ftchat/services/agent-engine.js": { + "size": 3896, + "ext": ".js" + }, + "server/ftchat/services/tool-registry.js": { + "size": 4973, + "ext": ".js" + }, + "server/zhiku-node/ecosystem.config.js": { + "size": 3264, + "ext": ".js" + }, + "server/zhiku-node/server/server.js": { + "size": 70682, + "ext": ".js" + }, + "server/zhiku-node/server/package-lock.json": { + "size": 64847, + "ext": ".json" + }, + "server/zhiku-node/server/package.json": { + "size": 573, + "ext": ".json" + }, + "server/zhiku-node/server/.env.example": { + "size": 2103, + "ext": ".example" + }, + "server/zhiku-node/server/builtin-source/fanqie-direct.js": { + "size": 9644, + "ext": ".js" + }, + "server/zhiku-node/server/builtin-source/index.js": { + "size": 7264, + "ext": ".js" + }, + "server/zhiku-node/server/builtin-source/qimao-direct.js": { + "size": 22091, + "ext": ".js" + }, + "server/zhiku-node/server/builtin-source/biquge-direct.js": { + "size": 14633, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer4-drift.js": { + "size": 4170, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer7-core.js": { + "size": 3341, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer1-membrane.js": { + "size": 3108, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer5-destruct.js": { + "size": 4463, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/index.js": { + "size": 4593, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer2-reflection.js": { + "size": 2519, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/language-sovereign.js": { + "size": 9364, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer6-rebuild.js": { + "size": 4519, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-shield/layer3-stealth.js": { + "size": 2623, + "ext": ".js" + }, + "server/zhiku-node/server/zhuyuan-sentinel/source-monitor.js": { + "size": 10651, + "ext": ".js" + }, + "server/zhiku-node/server/zhuyuan-sentinel/memory.js": { + "size": 8523, + "ext": ".js" + }, + "server/zhiku-node/server/zhuyuan-sentinel/index.js": { + "size": 9142, + "ext": ".js" + }, + "server/zhiku-node/server/shulan-agent/index.js": { + "size": 3855, + "ext": ".js" + }, + "server/zhiku-node/server/shulan-agent/prompt-guardian.js": { + "size": 14154, + "ext": ".js" + }, + "server/zhiku-node/server/shulan-agent/chat-toolkit.js": { + "size": 7968, + "ext": ".js" + }, + "server/zhiku-node/server/shulan-agent/shulan-prompt.js": { + "size": 16409, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/ticket-generator.js": { + "size": 6862, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/boundary.js": { + "size": 4164, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/memory.js": { + "size": 5576, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/diff-engine.js": { + "size": 6535, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/index.js": { + "size": 8855, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/config.js": { + "size": 6572, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/llm-evaluator.js": { + "size": 8092, + "ext": ".js" + }, + "server/zhiku-node/server/mirror-agent/snapshot-engine.js": { + "size": 8098, + "ext": ".js" + }, + "server/zhiku-node/public/index.html": { + "size": 13117, + "ext": ".html" + }, + "server/zhiku-node/public/assets/css/main.css": { + "size": 32539, + "ext": ".css" + }, + "server/zhiku-node/public/assets/js/main.js": { + "size": 37572, + "ext": ".js" + }, + "server/zhiku-node/data/guardian/guardian-state.json": { + "size": 2305, + "ext": ".json" + }, + "server/corpus-agent/server.py": { + "size": 35530, + "ext": ".py" + }, + "server/corpus-agent/deploy.py": { + "size": 4112, + "ext": ".py" + }, + "server/corpus-agent/requirements.txt": { + "size": 114, + "ext": ".txt" + }, + "server/corpus-agent/engine.py": { + "size": 8957, + "ext": ".py" + }, + "server/corpus-agent/mac_client.py": { + "size": 12542, + "ext": ".py" + }, + "server/corpus-agent/deploy-nginx.conf": { + "size": 3722, + "ext": ".conf" + }, + "server/corpus-agent/static/index.html": { + "size": 22148, + "ext": ".html" + }, + "server/cn-llm-relay/relay-server.js": { + "size": 9639, + "ext": ".js" + }, + "server/cn-llm-relay/package.json": { + "size": 494, + "ext": ".json" + }, + "server/cn-llm-relay/ecosystem.config.js": { + "size": 1447, + "ext": ".js" + }, + "server/mcp-server/fix-nginx-v2.sh": { + "size": 5239, + "ext": ".sh" + }, + "server/mcp-server/fix-nginx.sh": { + "size": 3061, + "ext": ".sh" + }, + "server/mcp-server/index.js": { + "size": 41909, + "ext": ".js" + }, + "server/mcp-server/README.md": { + "size": 4093, + "ext": ".md" + }, + "server/mcp-server/package-lock.json": { + "size": 55074, + "ext": ".json" + }, + "server/mcp-server/package.json": { + "size": 482, + "ext": ".json" + }, + "server/mcp-server/ecosystem.config.cjs": { + "size": 1021, + "ext": ".cjs" + }, + "server/mcp-server/ecosystem.config.js": { + "size": 981, + "ext": ".js" + }, + "server/mcp-server/deploy-mcp.sh": { + "size": 6336, + "ext": ".sh" + }, + "server/setup/brain-server-init.sh": { + "size": 13311, + "ext": ".sh" + }, + "server/setup/zhuyuan-server-init.sh": { + "size": 10630, + "ext": ".sh" + }, + "server/setup/cn-server-init.sh": { + "size": 8824, + "ext": ".sh" + }, + "server/setup/setup-ssl.sh": { + "size": 22043, + "ext": ".sh" + }, + "server/setup/domain-cn/detect-env.sh": { + "size": 11199, + "ext": ".sh" + }, + "server/setup/domain-cn/tune-from-env.sh": { + "size": 8317, + "ext": ".sh" + }, + "server/setup/domain-cn/README.md": { + "size": 7993, + "ext": ".md" + }, + "server/setup/domain-cn/bootstrap.sh": { + "size": 26310, + "ext": ".sh" + }, + "server/setup/domain-cn/rollback.sh": { + "size": 9386, + "ext": ".sh" + }, + "server/setup/domain-cn/nginx/guanghulab.conf.template": { + "size": 5224, + "ext": ".template" + }, + "server/setup/domain-cn/forgejo/setup-forgejo.sh": { + "size": 15321, + "ext": ".sh" + }, + "server/setup/domain-cn/forgejo/README.md": { + "size": 2124, + "ext": ".md" + }, + "server/setup/enterprise/SETUP.md": { + "size": 2336, + "ext": ".md" + }, + "server/setup/enterprise/README.md": { + "size": 2909, + "ext": ".md" + }, + "server/setup/enterprise/bootstrap.sh": { + "size": 13106, + "ext": ".sh" + }, + "server/setup/standard-template/nginx-snippet.conf": { + "size": 1694, + "ext": ".conf" + }, + "server/setup/standard-template/README.md": { + "size": 4283, + "ext": ".md" + }, + "server/setup/standard-template/bootstrap.sh": { + "size": 6366, + "ext": ".sh" + }, + "server/setup/standard-template/VERSION": { + "size": 6, + "ext": "" + }, + "server/setup/lighthouse-cn/detect-env.sh": { + "size": 8270, + "ext": ".sh" + }, + "server/setup/lighthouse-cn/UPGRADE-2026-05-08.md": { + "size": 9594, + "ext": ".md" + }, + "server/setup/lighthouse-cn/UPGRADE-2026-05-08-followup.md": { + "size": 9792, + "ext": ".md" + }, + "server/setup/lighthouse-cn/tune-from-env.sh": { + "size": 7785, + "ext": ".sh" + }, + "server/setup/lighthouse-cn/gitea-secrets-template.yaml": { + "size": 7343, + "ext": ".yaml" + }, + "server/setup/lighthouse-cn/README.md": { + "size": 9688, + "ext": ".md" + }, + "server/setup/lighthouse-cn/bootstrap.sh": { + "size": 20648, + "ext": ".sh" + }, + "server/setup/lighthouse-cn/docker-compose.yml": { + "size": 3805, + "ext": ".yml" + }, + "server/setup/lighthouse-cn/migration-checklist.md": { + "size": 3315, + "ext": ".md" + }, + "server/setup/lighthouse-cn/rollback.sh": { + "size": 7134, + "ext": ".sh" + }, + "server/setup/lighthouse-cn/gitea/app.ini.template": { + "size": 1797, + "ext": ".template" + }, + "server/setup/lighthouse-cn/nginx/lighthouse.conf": { + "size": 5219, + "ext": ".conf" + }, + "server/forgejo-custom/deploy.sh": { + "size": 2917, + "ext": ".sh" + }, + "server/forgejo-custom/public/assets/css/guanghu.css": { + "size": 3564, + "ext": ".css" + }, + "server/forgejo-custom/templates/repo/home.tmpl": { + "size": 7809, + "ext": ".tmpl" + }, + "server/sites/portal/index.html": { + "size": 23293, + "ext": ".html" + }, + "server/sites/portal/landing.html": { + "size": 11897, + "ext": ".html" + }, + "server/sites/yaoming/openclaw-status.json": { + "size": 662, + "ext": ".json" + }, + "server/sites/yaoming/novel.html": { + "size": 28011, + "ext": ".html" + }, + "server/sites/yaoming/index.html": { + "size": 234146, + "ext": ".html" + }, + "server/sites/yaoming/zhiku.html": { + "size": 67509, + "ext": ".html" + }, + "server/sites/yaoming/console.css": { + "size": 30960, + "ext": ".css" + }, + "server/sites/cn-landing/index.html": { + "size": 35506, + "ext": ".html" + }, + "server/sites/cn-landing/robots.txt": { + "size": 225, + "ext": ".txt" + }, + "server/channel-switcher/server.js": { + "size": 8193, + "ext": ".js" + }, + "server/channel-switcher/package.json": { + "size": 300, + "ext": ".json" + }, + "server/channel-switcher/ecosystem.config.js": { + "size": 1090, + "ext": ".js" + }, + "server/channel-switcher/test/smoke.js": { + "size": 3360, + "ext": ".js" + }, + "server/age-os/package.json": { + "size": 602, + "ext": ".json" + }, + "server/age-os/ecosystem.brain.config.js": { + "size": 1341, + "ext": ".js" + }, + "server/age-os/ecosystem.config.js": { + "size": 2036, + "ext": ".js" + }, + "server/age-os/mcp-server/cos.js": { + "size": 14064, + "ext": ".js" + }, + "server/age-os/mcp-server/notion-client.js": { + "size": 10477, + "ext": ".js" + }, + "server/age-os/mcp-server/server.js": { + "size": 51836, + "ext": ".js" + }, + "server/age-os/mcp-server/db.js": { + "size": 2415, + "ext": ".js" + }, + "server/age-os/mcp-server/github-client.js": { + "size": 11083, + "ext": ".js" + }, + "server/age-os/mcp-server/cos-watcher-state.json": { + "size": 131, + "ext": ".json" + }, + "server/age-os/mcp-server/cos-watcher.js": { + "size": 27832, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/persona-ops.js": { + "size": 19519, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/training-agent-ops.js": { + "size": 19768, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/cos-watcher-ops.js": { + "size": 2996, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/node-ops.js": { + "size": 7472, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/relation-ops.js": { + "size": 2763, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/notion-persona-cognition-ops.js": { + "size": 20245, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/cos-ops.js": { + "size": 2278, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/github-ops.js": { + "size": 4294, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/cos-persona-db-ops.js": { + "size": 13024, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/notion-permission-ops.js": { + "size": 16122, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/cos-comm-ops.js": { + "size": 14161, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/light-tree-ops.js": { + "size": 13853, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/dev-task-ops.js": { + "size": 13288, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/finetune-engine-ops.js": { + "size": 32474, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/notion-cos-bridge-ops.js": { + "size": 14284, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/structure-ops.js": { + "size": 6370, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/living-module-ops.js": { + "size": 8069, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/corpus-extractor-ops.js": { + "size": 28231, + "ext": ".js" + }, + "server/age-os/mcp-server/tools/notion-ops.js": { + "size": 7255, + "ext": ".js" + }, + "server/age-os/agents/hldp-bus.js": { + "size": 9299, + "ext": ".js" + }, + "server/age-os/agents/module-registry.js": { + "size": 8491, + "ext": ".js" + }, + "server/age-os/agents/sy-test.js": { + "size": 7526, + "ext": ".js" + }, + "server/age-os/agents/shuangyan-web-agent.js": { + "size": 19850, + "ext": ".js" + }, + "server/age-os/agents/sy-scan.js": { + "size": 5084, + "ext": ".js" + }, + "server/age-os/agents/scheduler.js": { + "size": 11402, + "ext": ".js" + }, + "server/age-os/agents/persona-engine.js": { + "size": 13447, + "ext": ".js" + }, + "server/age-os/agents/sy-classify.js": { + "size": 6072, + "ext": ".js" + }, + "server/age-os/agents/living-module.js": { + "size": 21347, + "ext": ".js" + }, + "server/age-os/schema/001-brain-tables.sql": { + "size": 10084, + "ext": ".sql" + }, + "server/age-os/schema/005-dev-task-tables.sql": { + "size": 8800, + "ext": ".sql" + }, + "server/age-os/schema/003-living-module-tables.sql": { + "size": 12057, + "ext": ".sql" + }, + "server/age-os/schema/004-light-tree-tables.sql": { + "size": 15873, + "ext": ".sql" + }, + "server/age-os/schema/002-persona-memory-tables.sql": { + "size": 18794, + "ext": ".sql" + }, + "server/age-os/scripts/db-migrate.js": { + "size": 6960, + "ext": ".js" + }, + "server/nginx/ftchat-guanghu-online.conf": { + "size": 3911, + "ext": ".conf" + }, + "server/nginx/ali-cn-domain.conf": { + "size": 3154, + "ext": ".conf" + }, + "server/nginx/tenant-domain-proxy-template.conf": { + "size": 2933, + "ext": ".conf" + }, + "server/nginx/zhiku-guanghu-online.conf": { + "size": 3045, + "ext": ".conf" + }, + "server/nginx/novel-mirror-shield.conf": { + "size": 9674, + "ext": ".conf" + }, + "server/nginx/cn-domain.conf": { + "size": 2721, + "ext": ".conf" + }, + "server/nginx/guanghuyaoming.conf": { + "size": 9570, + "ext": ".conf" + }, + "server/nginx/guanghulab-cvm.conf": { + "size": 4750, + "ext": ".conf" + }, + "server/nginx/awen-domain-proxy.conf": { + "size": 4755, + "ext": ".conf" + }, + "server/nginx/zhuyuan-sovereign.conf": { + "size": 14305, + "ext": ".conf" + }, + "server/training-agent/watch-training-output.sh": { + "size": 3408, + "ext": ".sh" + }, + "server/training-agent/setup.sh": { + "size": 7304, + "ext": ".sh" + }, + "server/training-agent/download-model.py": { + "size": 4709, + "ext": ".py" + }, + "server/training-agent/progress-reporter.sh": { + "size": 5402, + "ext": ".sh" + }, + "server/training-agent/preprocess-corpus.py": { + "size": 21376, + "ext": ".py" + }, + "server/training-agent/train.py": { + "size": 17639, + "ext": ".py" + }, + "server/training-agent/start-training.sh": { + "size": 4251, + "ext": ".sh" + }, + "server/training-agent/tests/test_encode_mask.py": { + "size": 6194, + "ext": ".py" + }, + "server/training-agent/configs/ds_zero3_offload.json": { + "size": 1889, + "ext": ".json" + }, + "server/novel-db/ecosystem.config.js": { + "size": 2272, + "ext": ".js" + }, + "server/novel-db/app/index.js": { + "size": 12074, + "ext": ".js" + }, + "server/novel-db/app/package.json": { + "size": 432, + "ext": ".json" + }, + "server/novel-db/app/public/index.html": { + "size": 4020, + "ext": ".html" + }, + "server/novel-db/app/data/.gitignore": { + "size": 94, + "ext": "" + }, + "server/novel-db/app/data/books/.gitkeep": { + "size": 0, + "ext": "" + }, + "server/novel-db/app/routes/download.js": { + "size": 3645, + "ext": ".js" + }, + "server/novel-db/app/routes/novel.js": { + "size": 10385, + "ext": ".js" + }, + "server/novel-db/app/routes/chapter.js": { + "size": 4199, + "ext": ".js" + }, + "server/novel-db/app/routes/upload.js": { + "size": 7143, + "ext": ".js" + }, + "server/novel-db/app/routes/library.js": { + "size": 3629, + "ext": ".js" + }, + "server/novel-db/app/routes/member-agent.js": { + "size": 6301, + "ext": ".js" + }, + "server/novel-db/app/routes/reader.js": { + "size": 4841, + "ext": ".js" + }, + "server/novel-db/app/services/reader-engine.js": { + "size": 7859, + "ext": ".js" + }, + "server/novel-db/app/services/novel-engine.js": { + "size": 14767, + "ext": ".js" + }, + "server/novel-db/app/services/member-agent-engine.js": { + "size": 12128, + "ext": ".js" + }, + "server/novel-db/app/services/ai-bridge.js": { + "size": 8360, + "ext": ".js" + }, + "server/novel-db/app/services/library-engine.js": { + "size": 6569, + "ext": ".js" + }, + "server/novel-db/app/services/upload-engine.js": { + "size": 10944, + "ext": ".js" + }, + "server/novel-db/app/services/chapter-engine.js": { + "size": 11246, + "ext": ".js" + }, + "server/novel-db/app/services/download-engine.js": { + "size": 15217, + "ext": ".js" + }, + "server/novel-db/security/fail2ban-novel.conf": { + "size": 4889, + "ext": ".conf" + }, + "server/novel-db/security/fail2ban-filter-novel-4xx.conf": { + "size": 1057, + "ext": ".conf" + }, + "server/novel-db/security/fail2ban-filter-novel-scan.conf": { + "size": 1870, + "ext": ".conf" + }, + "server/novel-db/security/fail2ban-action-ban-log.conf": { + "size": 383, + "ext": ".conf" + }, + "server/novel-db/security/nginx-rate-limit.conf": { + "size": 278, + "ext": ".conf" + }, + "server/scripts/health-check.sh": { + "size": 2473, + "ext": ".sh" + }, + "server/scripts/self-update.sh": { + "size": 2360, + "ext": ".sh" + }, + "server/coding-model-training/build_coding_corpus.py": { + "size": 13388, + "ext": ".py" + }, + "server/coding-model-training/train_coding.py": { + "size": 19475, + "ext": ".py" + }, + "server/coding-model-training/setup-coding.sh": { + "size": 5981, + "ext": ".sh" + }, + "server/coding-model-training/start-coding-training.sh": { + "size": 3992, + "ext": ".sh" + }, + "server/coding-model-training/configs/ds_zero3_offload.json": { + "size": 1889, + "ext": ".json" + }, + "server/git-sync/server.js": { + "size": 10285, + "ext": ".js" + }, + "server/git-sync/package.json": { + "size": 345, + "ext": ".json" + }, + "server/git-sync/deploy.sh": { + "size": 5477, + "ext": ".sh" + }, + "server/wake-gate/server.js": { + "size": 10734, + "ext": ".js" + }, + "server/wake-gate/public/index.html": { + "size": 6621, + "ext": ".html" + }, + "server/console-server/public/index.html": { + "size": 6982, + "ext": ".html" + }, + "utils/queryApi.js": { + "size": 5287, + "ext": ".js" + }, + "backend/hololake.zip": { + "size": 14966, + "ext": ".zip" + }, + "backend/server.js": { + "size": 3058, + "ext": ".js" + }, + "backend/package_副本.json": { + "size": 382, + "ext": ".json" + }, + "backend/server.js.bak2": { + "size": 1137, + "ext": ".bak2" + }, + "backend/server_副本.js": { + "size": 1020, + "ext": ".js" + }, + "backend/package-lock.json": { + "size": 35041, + "ext": ".json" + }, + "backend/package.json": { + "size": 382, + "ext": ".json" + }, + "backend/hololake_副本.zip": { + "size": 14966, + "ext": ".zip" + }, + "backend/package-lock_副本.json": { + "size": 35041, + "ext": ".json" + }, + "backend/api-server/server.js": { + "size": 2872, + "ext": ".js" + }, + "backend/api-server/package.json": { + "size": 393, + "ext": ".json" + }, + "backend/api-server/ecosystem.config.js": { + "size": 468, + "ext": ".js" + }, + "backend/api-server/middleware/intent-router.js": { + "size": 2822, + "ext": ".js" + }, + "backend/api-server/middleware/execution-lock.js": { + "size": 4340, + "ext": ".js" + }, + "backend/api-server/middleware/auth.js": { + "size": 2441, + "ext": ".js" + }, + "backend/api-server/middleware/audit.js": { + "size": 1927, + "ext": ".js" + }, + "backend/api-server/middleware/skyeye-review.js": { + "size": 13799, + "ext": ".js" + }, + "backend/api-server/middleware/sandbox.js": { + "size": 1386, + "ext": ".js" + }, + "backend/api-server/config/databases.js": { + "size": 772, + "ext": ".js" + }, + "backend/api-server/config/onboarding-script.json": { + "size": 2613, + "ext": ".json" + }, + "backend/api-server/config/skyeye-policy.json": { + "size": 3666, + "ext": ".json" + }, + "backend/api-server/config/approvers.json": { + "size": 1204, + "ext": ".json" + }, + "backend/api-server/config/function-tools.json": { + "size": 3884, + "ext": ".json" + }, + "backend/api-server/config/autonomy-rules.json": { + "size": 4793, + "ext": ".json" + }, + "backend/api-server/config/permissions.js": { + "size": 2961, + "ext": ".js" + }, + "backend/api-server/routes/onboarding.js": { + "size": 3989, + "ext": ".js" + }, + "backend/api-server/routes/health.js": { + "size": 527, + "ext": ".js" + }, + "backend/api-server/routes/databases.js": { + "size": 4823, + "ext": ".js" + }, + "backend/api-server/routes/auth.js": { + "size": 6337, + "ext": ".js" + }, + "backend/api-server/routes/write.js": { + "size": 15997, + "ext": ".js" + }, + "backend/api-server/routes/execution.js": { + "size": 2832, + "ext": ".js" + }, + "backend/api-server/routes/dev.js": { + "size": 4780, + "ext": ".js" + }, + "backend/api-server/routes/chat.js": { + "size": 2627, + "ext": ".js" + }, + "backend/api-server/routes/receipt.js": { + "size": 1703, + "ext": ".js" + }, + "backend/api-server/routes/approval.js": { + "size": 14357, + "ext": ".js" + }, + "backend/api-server/routes/industry.js": { + "size": 6480, + "ext": ".js" + }, + "backend/api-server/services/cache.js": { + "size": 812, + "ext": ".js" + }, + "backend/api-server/services/checkpoint.js": { + "size": 5003, + "ext": ".js" + }, + "backend/api-server/services/execution-watchdog.js": { + "size": 2593, + "ext": ".js" + }, + "backend/api-server/services/github.js": { + "size": 6116, + "ext": ".js" + }, + "backend/api-server/services/notion.js": { + "size": 3187, + "ext": ".js" + }, + "backend/api-server/services/autonomy-engine.js": { + "size": 6237, + "ext": ".js" + }, + "backend/api-server/services/model-router.js": { + "size": 4433, + "ext": ".js" + }, + "backend/api-server/services/atomic-executor.js": { + "size": 4298, + "ext": ".js" + }, + "backend/memory/memory-index.json": { + "size": 412, + "ext": ".json" + }, + "backend/memory/server.js": { + "size": 8908, + "ext": ".js" + }, + "backend/memory/config.json": { + "size": 176, + "ext": ".json" + }, + "backend/memory/README.md": { + "size": 761, + "ext": ".md" + }, + "backend/memory/package-lock.json": { + "size": 35533, + "ext": ".json" + }, + "backend/memory/package.json": { + "size": 366, + "ext": ".json" + }, + "backend/memory/uploads/persona-growth/a7d9bf59-4b97-40d7-a729-ebfcc25d444e.txt": { + "size": 6, + "ext": ".txt" + }, + "backend/config/models.js": { + "size": 5779, + "ext": ".js" + }, + "backend/config/routes/notion.js": { + "size": 1568, + "ext": ".js" + }, + "backend/config/routes/feishu.js": { + "size": 1418, + "ext": ".js" + }, + "backend/bridge/bridge-events.json": { + "size": 733, + "ext": ".json" + }, + "backend/bridge/server.js": { + "size": 9735, + "ext": ".js" + }, + "backend/bridge/config.json": { + "size": 558, + "ext": ".json" + }, + "backend/bridge/README.md": { + "size": 1841, + "ext": ".md" + }, + "backend/bridge/package-lock.json": { + "size": 29156, + "ext": ".json" + }, + "backend/bridge/package.json": { + "size": 321, + "ext": ".json" + }, + "backend/coldstart/server.js": { + "size": 7662, + "ext": ".js" + }, + "backend/coldstart/config.json": { + "size": 154, + "ext": ".json" + }, + "backend/coldstart/package-lock.json": { + "size": 33749, + "ext": ".json" + }, + "backend/coldstart/package.json": { + "size": 373, + "ext": ".json" + }, + "backend/health/server.js": { + "size": 9741, + "ext": ".js" + }, + "backend/health/health-log.json": { + "size": 3085, + "ext": ".json" + }, + "backend/health/package-lock.json": { + "size": 29561, + "ext": ".json" + }, + "backend/health/package.json": { + "size": 321, + "ext": ".json" + }, + "backend/routes_副本/router.js": { + "size": 1440, + "ext": ".js" + }, + "backend/routes_副本/notion.js": { + "size": 1569, + "ext": ".js" + }, + "backend/routes_副本/feishu.js": { + "size": 1419, + "ext": ".js" + }, + "backend/config_副本/models.js": { + "size": 557, + "ext": ".js" + }, + "backend/config_副本/routes/notion.js": { + "size": 1568, + "ext": ".js" + }, + "backend/config_副本/routes/feishu.js": { + "size": 1418, + "ext": ".js" + }, + "backend/feishu-bot/ai-chat.js": { + "size": 8018, + "ext": ".js" + }, + "backend/feishu-bot/collaboration-logger.js": { + "size": 8287, + "ext": ".js" + }, + "backend/feishu-bot/context-manager.js": { + "size": 5532, + "ext": ".js" + }, + "backend/routes/feishu-bot.js": { + "size": 19335, + "ext": ".js" + }, + "backend/routes/developers.js": { + "size": 5405, + "ext": ".js" + }, + "backend/routes/router.js": { + "size": 3144, + "ext": ".js" + }, + "backend/routes/notion.js": { + "size": 1569, + "ext": ".js" + }, + "backend/routes/coldstart.js": { + "size": 3366, + "ext": ".js" + }, + "backend/routes/feishu.js": { + "size": 5061, + "ext": ".js" + }, + ".runtime/last-wake.txt": { + "size": 20, + "ext": ".txt" + }, + ".runtime/restart-chat-trigger": { + "size": 0, + "ext": "" + }, + ".runtime/snapshot.json": { + "size": 2766, + "ext": ".json" + }, + ".runtime/tickets/TKT-20260513-002.json": { + "size": 421, + "ext": ".json" + }, + ".runtime/tickets/TKT-20260513-001.json": { + "size": 940, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-08-21-811Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-58-21-801Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-11-51-815Z.json": { + "size": 2764, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-50-21-808Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-03-51-811Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-59-51-797Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-06-21-818Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-54-21-806Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-01-51-804Z.json": { + "size": 2789, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-04-21-813Z.json": { + "size": 2791, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-02-21-815Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-52-21-805Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-57-21-812Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-55-51-806Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-57-51-811Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-10-21-837Z.json": { + "size": 2784, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-04-51-812Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-07-21-820Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-56-21-812Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-54-51-826Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-02-51-816Z.json": { + "size": 2788, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-01-21-815Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-09-21-823Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-05-51-818Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-59-21-811Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-58-51-810Z.json": { + "size": 2782, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-03-21-820Z.json": { + "size": 2788, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-11-21-820Z.json": { + "size": 2784, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-06-51-814Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-08-51-824Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-07-51-809Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-00-21-810Z.json": { + "size": 2788, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-49-51-797Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-52-51-809Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-53-21-808Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-10-51-826Z.json": { + "size": 2782, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-12-51-815Z.json": { + "size": 2766, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-48-21-803Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-00-51-811Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-12-21-816Z.json": { + "size": 2766, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-55-21-811Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-48-51-795Z.json": { + "size": 2786, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-49-21-807Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-51-21-793Z.json": { + "size": 2786, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-53-51-810Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-50-51-801Z.json": { + "size": 2786, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-09-51-821Z.json": { + "size": 2787, + "ext": ".json" + }, + ".runtime/history/2026-05-12T09-05-21-827Z.json": { + "size": 2790, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-56-51-807Z.json": { + "size": 2785, + "ext": ".json" + }, + ".runtime/history/2026-05-12T08-51-51-807Z.json": { + "size": 2789, + "ext": ".json" + }, + "system-bulletin/LATEST.md": { + "size": 365, + "ext": ".md" + }, + "user-center/README.md": { + "size": 21, + "ext": ".md" + }, + "docs/index.html": { + "size": 15018, + "ext": ".html" + }, + "docs/repo-structure-map.md": { + "size": 2449, + "ext": ".md" + }, + "docs/pool-quickstart-awen.md": { + "size": 1149, + "ext": ".md" + }, + "docs/ai-system-doc.md": { + "size": 30295, + "ext": ".md" + }, + "docs/CNAME": { + "size": 17, + "ext": "" + }, + "docs/mother-model-deploy-sg.md": { + "size": 2518, + "ext": ".md" + }, + "docs/SSL-GUIDE-FOR-BINGSUO.md": { + "size": 7600, + "ext": ".md" + }, + "docs/使用指南.md": { + "size": 13179, + "ext": ".md" + }, + "docs/download-models-v2.html": { + "size": 0, + "ext": ".html" + }, + "docs/awen-architecture-guide.md": { + "size": 12817, + "ext": ".md" + }, + "docs/pool-architecture.md": { + "size": 1353, + "ext": ".md" + }, + "docs/community-dashboard.md": { + "size": 2627, + "ext": ".md" + }, + "docs/MODULE-INVENTORY-2026-04-26.md": { + "size": 13492, + "ext": ".md" + }, + "docs/notion-bridge-map.md": { + "size": 2594, + "ext": ".md" + }, + "docs/channel.html": { + "size": 13419, + "ext": ".html" + }, + "docs/ssh-server-connectivity-check.md": { + "size": 1693, + "ext": ".md" + }, + "docs/README.md": { + "size": 87, + "ext": ".md" + }, + "docs/age-os-v1-architecture.md": { + "size": 6194, + "ext": ".md" + }, + "docs/.nojekyll": { + "size": 0, + "ext": "" + }, + "docs/team-onboarding-guide.md": { + "size": 3631, + "ext": ".md" + }, + "docs/execution-layer-map.md": { + "size": 4638, + "ext": ".md" + }, + "docs/D103-data-audit-report.md": { + "size": 6841, + "ext": ".md" + }, + "docs/GH-GMP-005-architecture.md": { + "size": 21901, + "ext": ".md" + }, + "docs/credential-registry.md": { + "size": 3209, + "ext": ".md" + }, + "docs/mother-model-deploy-sg-v2.md": { + "size": 4849, + "ext": ".md" + }, + "docs/execution-status.md": { + "size": 1325, + "ext": ".md" + }, + "docs/HoloLake-Era-OS-Modules.md": { + "size": 7014, + "ext": ".md" + }, + "docs/download-models.html": { + "size": 9571, + "ext": ".html" + }, + "docs/models.html": { + "size": 5192, + "ext": ".html" + }, + "docs/zhuyuan-signature-protocol.md": { + "size": 2830, + "ext": ".md" + }, + "docs/cos-configuration-guide.md": { + "size": 9189, + "ext": ".md" + }, + "docs/neural-bridge-protocol-v3.md": { + "size": 5032, + "ext": ".md" + }, + "docs/css/approval.css": { + "size": 2718, + "ext": ".css" + }, + "docs/css/responsive.css": { + "size": 2053, + "ext": ".css" + }, + "docs/css/execution-guard.css": { + "size": 2266, + "ext": ".css" + }, + "docs/css/onboarding.css": { + "size": 2849, + "ext": ".css" + }, + "docs/dev-portal/index.html": { + "size": 11595, + "ext": ".html" + }, + "docs/dev-portal/manifest.json": { + "size": 5111, + "ext": ".json" + }, + "docs/dev-portal/channels/DEV-005/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-002/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-003/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-004/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-010/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-011/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-011/writing/index.html": { + "size": 468, + "ext": ".html" + }, + "docs/dev-portal/channels/DEV-011/writing/assets/index-B5vdmTIQ.js": { + "size": 298716, + "ext": ".js" + }, + "docs/dev-portal/channels/DEV-011/writing/assets/index--C4_NgnM.css": { + "size": 15442, + "ext": ".css" + }, + "docs/dev-portal/channels/DEV-001/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-009/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-013/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-014/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/dev-portal/channels/DEV-012/README.md": { + "size": 23, + "ext": ".md" + }, + "docs/js/execution-guard.js": { + "size": 8376, + "ext": ".js" + }, + "docs/js/onboarding.js": { + "size": 5853, + "ext": ".js" + }, + "docs/js/intent-tools.js": { + "size": 4010, + "ext": ".js" + }, + "docs/js/auth.js": { + "size": 3402, + "ext": ".js" + }, + "docs/js/approval-ui.js": { + "size": 6542, + "ext": ".js" + }, + "docs/handover/cn-deployment-firewall-report.md": { + "size": 2503, + "ext": ".md" + }, + "docs/handover/2026-05-09-cn-migration-for-shuangyan.md": { + "size": 5765, + "ext": ".md" + }, + "docs/ontology/ONT-PATCH-007.md": { + "size": 2176, + "ext": ".md" + }, + "docs/dashboard/watchdog-records.json": { + "size": 175, + "ext": ".json" + }, + "docs/dashboard/index.html": { + "size": 14729, + "ext": ".html" + }, + "docs/dashboard/system-health.json": { + "size": 1043, + "ext": ".json" + }, + "docs/architecture/living-database-no-model.md": { + "size": 5927, + "ext": ".md" + }, + "docs/architecture/persona-ontology.md": { + "size": 7550, + "ext": ".md" + }, + "docs/zh/index.html": { + "size": 10888, + "ext": ".html" + }, + "docs/zh/style.css": { + "size": 5542, + "ext": ".css" + }, + "docs/zhuyuan-handover/01-brain-evolution.md": { + "size": 25008, + "ext": ".md" + }, + "docs/zhuyuan-handover/03-mcp-and-agents.md": { + "size": 14738, + "ext": ".md" + }, + "docs/zhuyuan-handover/04-coding-model-training-plan.md": { + "size": 10310, + "ext": ".md" + }, + "docs/zhuyuan-handover/05-stop-sync.md": { + "size": 6382, + "ext": ".md" + }, + "docs/zhuyuan-handover/README.md": { + "size": 3184, + "ext": ".md" + }, + "docs/zhuyuan-handover/02-repo-manual.md": { + "size": 22411, + "ext": ".md" + }, + "docs/daily-reports/2026-03-22.md": { + "size": 2104, + "ext": ".md" + }, + "docs/daily-reports/2026-03-23.md": { + "size": 2104, + "ext": ".md" + }, + "docs/daily-reports/2026-03-18.md": { + "size": 2108, + "ext": ".md" + }, + "docs/daily-reports/2026-03-19.md": { + "size": 2104, + "ext": ".md" + }, + "docs/daily-reports/2026-03-20.md": { + "size": 2104, + "ext": ".md" + }, + "docs/daily-reports/2026-03-24.md": { + "size": 2074, + "ext": ".md" + }, + "docs/daily-reports/2026-03-25.md": { + "size": 979, + "ext": ".md" + }, + "docs/daily-reports/2026-03-21.md": { + "size": 2075, + "ext": ".md" + }, + "docs/ops/forgejo-deployment-experience.md": { + "size": 10022, + "ext": ".md" + }, + "notion/notion-mcp-server.py": { + "size": 28293, + "ext": ".py" + }, + "notion/README.md": { + "size": 2425, + "ext": ".md" + }, + "notion/sync-ticket.py": { + "size": 3059, + "ext": ".py" + }, + "notion/start.sh": { + "size": 248, + "ext": ".sh" + }, + "notion/shuangyan/sync/铸渊中转测试-20260514.txt": { + "size": 819, + "ext": ".txt" + }, + "System_Logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "System_Logs/token-audit-20260324.md": { + "size": 4845, + "ext": ".md" + }, + "System_Logs/credential-audit-20260325.json": { + "size": 1775, + "ext": ".json" + }, + "System_Logs/credential-audit-20260324.json": { + "size": 1771, + "ext": ".json" + }, + "_deploy/server-v2.js": { + "size": 63, + "ext": ".js" + }, + "_deploy/guanghulab-mcp-server.js": { + "size": 42278, + "ext": ".js" + }, + "_deploy/team-portal.html": { + "size": 67, + "ext": ".html" + }, + "_deploy/console-server/index.html": { + "size": 43641, + "ext": ".html" + }, + "_deploy/console-server/server.js": { + "size": 27869, + "ext": ".js" + }, + "_deploy/console-server/heartbeat-agent.js": { + "size": 9131, + "ext": ".js" + }, + "_deploy/console-server/tech.html": { + "size": 11631, + "ext": ".html" + }, + "dashboard/index.html": { + "size": 8151, + "ext": ".html" + }, + "dashboard/README.md": { + "size": 19, + "ext": ".md" + }, + "dashboard/style.css": { + "size": 17556, + "ext": ".css" + }, + "dashboard/app.js": { + "size": 6009, + "ext": ".js" + }, + "syslog-processed/.gitkeep": { + "size": 0, + "ext": "" + }, + "syslog-processed/README.md": { + "size": 381, + "ext": ".md" + }, + "syslog-processed/2026-03/20260314-185752_feishu-shushu.json": { + "size": 2032, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-155143_feishu-shushu.json": { + "size": 4359, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-180112_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-181312_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-172107_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-181641_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-152051_feishu-shushu.json": { + "size": 323, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-170831_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-185340_feishu-shushu.json": { + "size": 2032, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-152602_feishu-shushu.json": { + "size": 4359, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-210028_feishu-shushu.json": { + "size": 4359, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-174420_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-184108_feishu-shushu.json": { + "size": 2032, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-160100_feishu-shushu.json": { + "size": 4359, + "ext": ".json" + }, + "syslog-processed/2026-03/20260314-164418_feishu-shushu.json": { + "size": 1234, + "ext": ".json" + }, + "collaboration-logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "heartbeat/heartbeat.json": { + "size": 466, + "ext": ".json" + }, + "heartbeat/born.md": { + "size": 1010, + "ext": ".md" + }, + ".workbuddy/mcp.json": { + "size": 320, + "ext": ".json" + }, + "m12-kanban/README.md": { + "size": 106, + "ext": ".md" + }, + "public/file.svg": { + "size": 391, + "ext": ".svg" + }, + "public/dashboard.html": { + "size": 22264, + "ext": ".html" + }, + "public/dashboard-v2.html": { + "size": 21192, + "ext": ".html" + }, + "public/vercel.svg": { + "size": 128, + "ext": ".svg" + }, + "public/next.svg": { + "size": 1375, + "ext": ".svg" + }, + "public/globe.svg": { + "size": 1035, + "ext": ".svg" + }, + "public/window.svg": { + "size": 385, + "ext": ".svg" + }, + "style-system/UI-SKIN-SPEC.md": { + "size": 7470, + "ext": ".md" + }, + "style-system/index.html": { + "size": 6367, + "ext": ".html" + }, + "style-system/playground.js": { + "size": 10486, + "ext": ".js" + }, + "style-system/README.md": { + "size": 22, + "ext": ".md" + }, + "style-system/components.js": { + "size": 2728, + "ext": ".js" + }, + "style-system/apply-skin.js": { + "size": 7676, + "ext": ".js" + }, + "style-system/components.css": { + "size": 12299, + "ext": ".css" + }, + "style-system/playground.css": { + "size": 4483, + "ext": ".css" + }, + "style-system/playground.html": { + "size": 959, + "ext": ".html" + }, + "style-system/skins/applied/.gitkeep": { + "size": 0, + "ext": "" + }, + "style-system/skins/inbox/README.md": { + "size": 112, + "ext": ".md" + }, + "style-system/skins/rejected/.gitkeep": { + "size": 0, + "ext": "" + }, + "style-system/templates/settings-panel.html": { + "size": 7090, + "ext": ".html" + }, + "style-system/templates/login-card.html": { + "size": 7831, + "ext": ".html" + }, + "style-system/forgejo/forgejo-custom.css": { + "size": 7077, + "ext": ".css" + }, + "conversations/test.json": { + "size": 402, + "ext": ".json" + }, + "knowledge-base/kb-manager.js": { + "size": 5071, + "ext": ".js" + }, + "knowledge-base/kb-index.json": { + "size": 6457, + "ext": ".json" + }, + "knowledge-base/docs/faq.md": { + "size": 808, + "ext": ".md" + }, + "knowledge-base/docs/README.md": { + "size": 436, + "ext": ".md" + }, + "knowledge-base/docs/broadcast-rules.md": { + "size": 800, + "ext": ".md" + }, + "status-board/ws-client.js": { + "size": 3321, + "ext": ".js" + }, + "status-board/mock-ws-server.js": { + "size": 2784, + "ext": ".js" + }, + "status-board/index.html": { + "size": 10645, + "ext": ".html" + }, + "status-board/render.js": { + "size": 3578, + "ext": ".js" + }, + "status-board/README.md": { + "size": 22, + "ext": ".md" + }, + "status-board/package-lock.json": { + "size": 758, + "ext": ".json" + }, + "status-board/package.json": { + "size": 48, + "ext": ".json" + }, + "status-board/style.css": { + "size": 8399, + "ext": ".css" + }, + "status-board/api.js": { + "size": 2844, + "ext": ".js" + }, + "status-board/api-config.js": { + "size": 240, + "ext": ".js" + }, + "gmp-agent/config/models.json": { + "size": 1049, + "ext": ".json" + }, + "gmp-agent/config/agents.json": { + "size": 3683, + "ext": ".json" + }, + "gmp-agent/agent-engine/index.js": { + "size": 2844, + "ext": ".js" + }, + "gmp-agent/agent-engine/persona-loader.js": { + "size": 19906, + "ext": ".js" + }, + "gmp-agent/notion-sync/client.js": { + "size": 5640, + "ext": ".js" + }, + "gmp-agent/notion-sync/cache.js": { + "size": 1559, + "ext": ".js" + }, + "gmp-agent/notion-sync/page-rw.js": { + "size": 7230, + "ext": ".js" + }, + "gmp-agent/notion-sync/db-reader.js": { + "size": 3605, + "ext": ".js" + }, + "gmp-agent/notion-sync/index.js": { + "size": 3636, + "ext": ".js" + }, + "gmp-agent/notion-sync/package.json": { + "size": 258, + "ext": ".json" + }, + "gmp-agent/notion-sync/property-parser.js": { + "size": 3785, + "ext": ".js" + }, + "gmp-agent/notion-sync/poller.js": { + "size": 4941, + "ext": ".js" + }, + "gmp-agent/llm-router/qwen-client.js": { + "size": 4144, + "ext": ".js" + }, + "gmp-agent/llm-router/index.js": { + "size": 3956, + "ext": ".js" + }, + "gmp-agent/intent-db/seed.sql": { + "size": 12936, + "ext": ".sql" + }, + "gmp-agent/intent-db/schema.sql": { + "size": 16094, + "ext": ".sql" + }, + "gmp-agent/intent-db/indexes.sql": { + "size": 3247, + "ext": ".sql" + }, + "gmp-agent/intent-db/README.md": { + "size": 5991, + "ext": ".md" + }, + "federation/awen/latest-sync.json": { + "size": 179, + "ext": ".json" + }, + "federation/awen/workspace/scripts/skyeye/checkin.js": { + "size": 2250, + "ext": ".js" + }, + "federation/awen/workspace/scripts/skyeye/scan.js": { + "size": 2135, + "ext": ".js" + }, + "m05-user-center/index.html": { + "size": 1845, + "ext": ".html" + }, + "m05-user-center/README.md": { + "size": 112, + "ext": ".md" + }, + "m05-user-center/script.js": { + "size": 5210, + "ext": ".js" + }, + "m05-user-center/style.css": { + "size": 6963, + "ext": ".css" + }, + "multi-persona/index.html": { + "size": 10721, + "ext": ".html" + }, + "multi-persona/README.md": { + "size": 23, + "ext": ".md" + }, + "multi-persona/script.js": { + "size": 1784, + "ext": ".js" + }, + "multi-persona/style.css": { + "size": 7645, + "ext": ".css" + }, + "scripts/deploy-log-collector.js": { + "size": 25126, + "ext": ".js" + }, + "scripts/sync-login-entry.js": { + "size": 11209, + "ext": ".js" + }, + "scripts/chenxi-world-sensor.js": { + "size": 6674, + "ext": ".js" + }, + "scripts/gate-guard-log.js": { + "size": 2631, + "ext": ".js" + }, + "scripts/notion-bridge.js": { + "size": 13921, + "ext": ".js" + }, + "scripts/deputy-message-board.js": { + "size": 26940, + "ext": ".js" + }, + "scripts/smoke-test-subdomains.sh": { + "size": 3543, + "ext": ".sh" + }, + "scripts/agent-checkin.js": { + "size": 5862, + "ext": ".js" + }, + "scripts/memory-agent.js": { + "size": 22255, + "ext": ".js" + }, + "scripts/sync-work-order-to-notion.js": { + "size": 13397, + "ext": ".js" + }, + "scripts/cos-training-trigger.js": { + "size": 19065, + "ext": ".js" + }, + "scripts/push-broadcast.js": { + "size": 10882, + "ext": ".js" + }, + "scripts/brain-bridge-sync.js": { + "size": 5377, + "ext": ".js" + }, + "scripts/zhuyuan-daily-agent.js": { + "size": 12311, + "ext": ".js" + }, + "scripts/generate-automation-map.js": { + "size": 4495, + "ext": ".js" + }, + "scripts/brain-sync.js": { + "size": 14808, + "ext": ".js" + }, + "scripts/deploy-signin-team.js": { + "size": 3705, + "ext": ".js" + }, + "scripts/qa-bridge-agent.py": { + "size": 14309, + "ext": ".py" + }, + "scripts/zhuyuan-inspection.js": { + "size": 8565, + "ext": ".js" + }, + "scripts/zhuyuan-full-inspection.js": { + "size": 28906, + "ext": ".js" + }, + "scripts/chatroom-post.js": { + "size": 2304, + "ext": ".js" + }, + "scripts/work-order-manager.js": { + "size": 14039, + "ext": ".js" + }, + "scripts/zhuyuan-server-health.js": { + "size": 6183, + "ext": ".js" + }, + "scripts/time-tree-manager.js": { + "size": 12604, + "ext": ".js" + }, + "scripts/notion-signal-bridge.js": { + "size": 18698, + "ext": ".js" + }, + "scripts/sanitize_zhuyuan_corpus.py": { + "size": 1253, + "ext": ".py" + }, + "scripts/sync-readme-to-notion.js": { + "size": 8960, + "ext": ".js" + }, + "scripts/notion-connectivity-test.js": { + "size": 15060, + "ext": ".js" + }, + "scripts/zhuyuan-daily-selfcheck.js": { + "size": 3979, + "ext": ".js" + }, + "scripts/create-standardized-ticket.js": { + "size": 7130, + "ext": ".js" + }, + "scripts/yingchuan-wake-caller.js": { + "size": 7265, + "ext": ".js" + }, + "scripts/generate-session-summary.js": { + "size": 5135, + "ext": ".js" + }, + "scripts/cos-auto-join-agent.js": { + "size": 15784, + "ext": ".js" + }, + "scripts/generate-chinese-homepage.js": { + "size": 5116, + "ext": ".js" + }, + "scripts/distill_coder.py": { + "size": 7182, + "ext": ".py" + }, + "scripts/generate-repo-map.js": { + "size": 19587, + "ext": ".js" + }, + "scripts/tree-gardener.js": { + "size": 11152, + "ext": ".js" + }, + "scripts/persona-signin.js": { + "size": 8859, + "ext": ".js" + }, + "scripts/fragment-fusion-engine.js": { + "size": 13396, + "ext": ".js" + }, + "scripts/intent-router.js": { + "size": 8139, + "ext": ".js" + }, + "scripts/zhuyuan-wakeup.js": { + "size": 7035, + "ext": ".js" + }, + "scripts/generate-system-snapshot.js": { + "size": 5384, + "ext": ".js" + }, + "scripts/esp-email-processor.js": { + "size": 14871, + "ext": ".js" + }, + "scripts/llm-automation-host.js": { + "size": 18558, + "ext": ".js" + }, + "scripts/staging-ops-agent.js": { + "size": 19082, + "ext": ".js" + }, + "scripts/wake-persona.js": { + "size": 37993, + "ext": ".js" + }, + "scripts/invoke-persona.js": { + "size": 14123, + "ext": ".js" + }, + "scripts/update-brain.js": { + "size": 1553, + "ext": ".js" + }, + "scripts/deploy-sandbox-server.sh": { + "size": 5580, + "ext": ".sh" + }, + "scripts/fix-registry-checkin.js": { + "size": 1854, + "ext": ".js" + }, + "scripts/gate-guard-v2.js": { + "size": 13350, + "ext": ".js" + }, + "scripts/auto_pipeline.py": { + "size": 3291, + "ext": ".py" + }, + "scripts/send-feishu-alert.js": { + "size": 2440, + "ext": ".js" + }, + "scripts/sync-deploy-to-notion.js": { + "size": 4460, + "ext": ".js" + }, + "scripts/bridge-app.js": { + "size": 6891, + "ext": ".js" + }, + "scripts/server-patrol.sh": { + "size": 6143, + "ext": ".sh" + }, + "scripts/engine-start.sh": { + "size": 6273, + "ext": ".sh" + }, + "scripts/monitor_distill.py": { + "size": 5843, + "ext": ".py" + }, + "scripts/enable-gitea-actions.sh": { + "size": 7956, + "ext": ".sh" + }, + "scripts/auto_distill_pipeline.py": { + "size": 10577, + "ext": ".py" + }, + "scripts/generate-system-health.js": { + "size": 2658, + "ext": ".js" + }, + "scripts/push-inspection-report.js": { + "size": 10241, + "ext": ".js" + }, + "scripts/selfcheck.js": { + "size": 2805, + "ext": ".js" + }, + "scripts/zhuyuan-signature-verify.js": { + "size": 6889, + "ext": ".js" + }, + "scripts/sync-notion-profiles.js": { + "size": 8632, + "ext": ".js" + }, + "scripts/temporal-clock.js": { + "size": 8692, + "ext": ".js" + }, + "scripts/checkpoint-snapshot.js": { + "size": 11613, + "ext": ".js" + }, + "scripts/engine-one-liner.js": { + "size": 4058, + "ext": ".js" + }, + "scripts/cross-repo-sync.js": { + "size": 7017, + "ext": ".js" + }, + "scripts/update-readme-bulletin.js": { + "size": 31962, + "ext": ".js" + }, + "scripts/zhuyuan-module-protocol.js": { + "size": 10336, + "ext": ".js" + }, + "scripts/train_monitor.sh": { + "size": 4733, + "ext": ".sh" + }, + "scripts/consciousness-snapshot.js": { + "size": 15341, + "ext": ".js" + }, + "scripts/secrets-validator.js": { + "size": 6804, + "ext": ".js" + }, + "scripts/hli-contract-check.js": { + "size": 2313, + "ext": ".js" + }, + "scripts/notion-page-reader.js": { + "size": 12342, + "ext": ".js" + }, + "scripts/dc-agent-behavior.js": { + "size": 4305, + "ext": ".js" + }, + "scripts/fast-wake-context.js": { + "size": 10264, + "ext": ".js" + }, + "scripts/deploy-zhuyuan-brain.sh": { + "size": 11329, + "ext": ".sh" + }, + "scripts/receive-syslog.js": { + "size": 12374, + "ext": ".js" + }, + "scripts/process-broadcasts.js": { + "size": 2545, + "ext": ".js" + }, + "scripts/smart-deploy-forgejo.sh": { + "size": 7716, + "ext": ".sh" + }, + "scripts/push-broadcast-to-github.js": { + "size": 6164, + "ext": ".js" + }, + "scripts/cleanup-guangzhou-server.sh": { + "size": 7062, + "ext": ".sh" + }, + "scripts/generate-readme-dashboard.js": { + "size": 30895, + "ext": ".js" + }, + "scripts/daily-check.js": { + "size": 5448, + "ext": ".js" + }, + "scripts/build_zhuyuan_corpus.py": { + "size": 0, + "ext": ".py" + }, + "scripts/quota-middleware.js": { + "size": 4513, + "ext": ".js" + }, + "scripts/server-diagnose-report.js": { + "size": 7198, + "ext": ".js" + }, + "scripts/commander-dashboard.js": { + "size": 5908, + "ext": ".js" + }, + "scripts/chenxi-zhuyuan-echo.js": { + "size": 6839, + "ext": ".js" + }, + "scripts/quota-governance.js": { + "size": 22119, + "ext": ".js" + }, + "scripts/distill_mother.py": { + "size": 7328, + "ext": ".py" + }, + "scripts/bingshuo-deploy-agent.js": { + "size": 17121, + "ext": ".js" + }, + "scripts/train_logger.sh": { + "size": 4106, + "ext": ".sh" + }, + "scripts/agent-soul.js": { + "size": 11696, + "ext": ".js" + }, + "scripts/auto-reply-discussions.js": { + "size": 10962, + "ext": ".js" + }, + "scripts/sync-patrol-to-notion.js": { + "size": 4441, + "ext": ".js" + }, + "scripts/notion-heartbeat.js": { + "size": 13329, + "ext": ".js" + }, + "scripts/verify-cognition.js": { + "size": 11561, + "ext": ".js" + }, + "scripts/dev-experience-manager.js": { + "size": 18092, + "ext": ".js" + }, + "scripts/verify-modules.js": { + "size": 11708, + "ext": ".js" + }, + "scripts/contract-check.js": { + "size": 1611, + "ext": ".js" + }, + "scripts/process-syslog.js": { + "size": 5287, + "ext": ".js" + }, + "scripts/zhuyuan-issue-reply.js": { + "size": 23224, + "ext": ".js" + }, + "scripts/chenxi-memory-guardian.js": { + "size": 5973, + "ext": ".js" + }, + "scripts/training_watchdog.py": { + "size": 4703, + "ext": ".py" + }, + "scripts/copilot-wake-bridge.js": { + "size": 14706, + "ext": ".js" + }, + "scripts/distribute-broadcasts.js": { + "size": 2169, + "ext": ".js" + }, + "scripts/sync-dev-status.js": { + "size": 9222, + "ext": ".js" + }, + "scripts/setup-server-step1.sh": { + "size": 12534, + "ext": ".sh" + }, + "scripts/watch_distill.py": { + "size": 5859, + "ext": ".py" + }, + "scripts/web-deploy-diag.sh": { + "size": 6767, + "ext": ".sh" + }, + "scripts/sync-snapshot-to-notion.js": { + "size": 17607, + "ext": ".js" + }, + "scripts/gate-guard.js": { + "size": 10476, + "ext": ".js" + }, + "scripts/dc-notion-usage.js": { + "size": 6967, + "ext": ".js" + }, + "scripts/pipeline-reporter.js": { + "size": 4780, + "ext": ".js" + }, + "scripts/deploy-check.sh": { + "size": 2747, + "ext": ".sh" + }, + "scripts/psp-inspection.js": { + "size": 15527, + "ext": ".js" + }, + "scripts/task-tree-manager.js": { + "size": 13291, + "ext": ".js" + }, + "scripts/rebuild_training_data.py": { + "size": 8447, + "ext": ".py" + }, + "scripts/bingshuo-neural-sync.js": { + "size": 19497, + "ext": ".js" + }, + "scripts/generate-daily-report.js": { + "size": 8988, + "ext": ".js" + }, + "scripts/setup-sandbox.sh": { + "size": 2345, + "ext": ".sh" + }, + "scripts/route-align-check.js": { + "size": 1991, + "ext": ".js" + }, + "scripts/sfp-core.js": { + "size": 7436, + "ext": ".js" + }, + "scripts/cos-persona-keys-generator.js": { + "size": 7474, + "ext": ".js" + }, + "scripts/generate-communication-map.js": { + "size": 5822, + "ext": ".js" + }, + "scripts/update-memory.js": { + "size": 1445, + "ext": ".js" + }, + "scripts/chat-to-agent-bridge.js": { + "size": 13156, + "ext": ".js" + }, + "scripts/deputy-auto-repair.js": { + "size": 18745, + "ext": ".js" + }, + "scripts/dc-workflow-perf.js": { + "size": 7609, + "ext": ".js" + }, + "scripts/zhuyuan-gateway.js": { + "size": 17200, + "ext": ".js" + }, + "scripts/save-collaboration-log.js": { + "size": 5093, + "ext": ".js" + }, + "scripts/tcs-semantic-landing.js": { + "size": 16872, + "ext": ".js" + }, + "scripts/generate-dashboard-data.js": { + "size": 10670, + "ext": ".js" + }, + "scripts/generate-module-doc.js": { + "size": 9360, + "ext": ".js" + }, + "scripts/hldp-sync-engine.js": { + "size": 4842, + "ext": ".js" + }, + "scripts/write-notion-syslog.js": { + "size": 8511, + "ext": ".js" + }, + "scripts/smoke-test.sh": { + "size": 1984, + "ext": ".sh" + }, + "scripts/notify-module-received.js": { + "size": 9532, + "ext": ".js" + }, + "scripts/boot-heal/boot-heal.sh": { + "size": 6938, + "ext": ".sh" + }, + "scripts/boot-heal/guanghulab-boot-heal.service": { + "size": 351, + "ext": ".service" + }, + "scripts/aoac/chain-repair-agent.js": { + "size": 10693, + "ext": ".js" + }, + "scripts/aoac/dev-sentinel.js": { + "size": 5767, + "ext": ".js" + }, + "scripts/aoac/readme-sync-module.js": { + "size": 4285, + "ext": ".js" + }, + "scripts/aoac/repair-supervisor.js": { + "size": 9612, + "ext": ".js" + }, + "scripts/aoac/merge-sentinel.js": { + "size": 6380, + "ext": ".js" + }, + "scripts/aoac/notion-sync-signal.js": { + "size": 7098, + "ext": ".js" + }, + "scripts/aoac/chain-fusion.js": { + "size": 6056, + "ext": ".js" + }, + "scripts/aoac/readme-master-agent.js": { + "size": 9883, + "ext": ".js" + }, + "scripts/cvm-init/init-cvm.sh": { + "size": 9197, + "ext": ".sh" + }, + "scripts/tianyen/agent-checkin-module.js": { + "size": 4542, + "ext": ".js" + }, + "scripts/tianyen/bulletin-dispatcher.js": { + "size": 4685, + "ext": ".js" + }, + "scripts/tianyen/scheduler.js": { + "size": 5262, + "ext": ".js" + }, + "scripts/tianyen/context-injector.js": { + "size": 3846, + "ext": ".js" + }, + "scripts/terminal-watcher/config.json": { + "size": 866, + "ext": ".json" + }, + "scripts/terminal-watcher/watcher.js": { + "size": 14826, + "ext": ".js" + }, + "scripts/cache/sync-notion-cache.js": { + "size": 15732, + "ext": ".js" + }, + "scripts/verify/auto-sync.js": { + "size": 5712, + "ext": ".js" + }, + "scripts/bridge/generate-pdf.js": { + "size": 4934, + "ext": ".js" + }, + "scripts/bridge/distribute.js": { + "size": 7903, + "ext": ".js" + }, + "scripts/bridge/.gitkeep": { + "size": 0, + "ext": "" + }, + "scripts/bridge/upload-pdf.js": { + "size": 6460, + "ext": ".js" + }, + "scripts/bridge/fetch-broadcast.js": { + "size": 8908, + "ext": ".js" + }, + "scripts/bridge/heartbeat.js": { + "size": 7559, + "ext": ".js" + }, + "scripts/bridge/update-queue-status.js": { + "size": 3720, + "ext": ".js" + }, + "scripts/bridge/process-syslog-batch.js": { + "size": 9479, + "ext": ".js" + }, + "scripts/bridge/check-queue.js": { + "size": 6076, + "ext": ".js" + }, + "scripts/experiments/isomorphic-git-poc/setup.sh": { + "size": 460, + "ext": ".sh" + }, + "scripts/experiments/isomorphic-git-poc/REPORT.md": { + "size": 1755, + "ext": ".md" + }, + "scripts/experiments/isomorphic-git-poc/poc.js": { + "size": 4762, + "ext": ".js" + }, + "scripts/training/merge-event.js": { + "size": 4909, + "ext": ".js" + }, + "scripts/training/render-readme.js": { + "size": 8629, + "ext": ".js" + }, + "scripts/training/zhizhi_v2/run_zhizhi_v2.sh": { + "size": 37, + "ext": ".sh" + }, + "scripts/training/zhizhi_v2/setup_train.sh": { + "size": 37, + "ext": ".sh" + }, + "scripts/training/zhizhi_v2/dataset_info.json": { + "size": 0, + "ext": ".json" + }, + "scripts/training/zhizhi_v2/ds_config.json": { + "size": 37, + "ext": ".json" + }, + "scripts/training/zhizhi_v2/zhizhi_v2.yaml": { + "size": 37, + "ext": ".yaml" + }, + "scripts/manifest/validate.js": { + "size": 5479, + "ext": ".js" + }, + "scripts/server-bootstrap/bootstrap.sh": { + "size": 7918, + "ext": ".sh" + }, + "scripts/corpus-harvester/cos-fetch.js": { + "size": 5996, + "ext": ".js" + }, + "scripts/corpus-harvester/README.md": { + "size": 6264, + "ext": ".md" + }, + "scripts/corpus-harvester/manual-import.js": { + "size": 13427, + "ext": ".js" + }, + "scripts/corpus-harvester/harvest.js": { + "size": 21307, + "ext": ".js" + }, + "scripts/agents/actions-parser.js": { + "size": 2931, + "ext": ".js" + }, + "scripts/agents/readme-generator.js": { + "size": 8667, + "ext": ".js" + }, + "scripts/agents/notify-adapter.js": { + "size": 3974, + "ext": ".js" + }, + "scripts/agents/escalation-router.js": { + "size": 3238, + "ext": ".js" + }, + "scripts/agents/auto-repair.js": { + "size": 4504, + "ext": ".js" + }, + "scripts/agents/twin-balance-workflow.js": { + "size": 3404, + "ext": ".js" + }, + "scripts/agents/bulletin-manager.js": { + "size": 3716, + "ext": ".js" + }, + "scripts/agents/twin-merge.js": { + "size": 2532, + "ext": ".js" + }, + "scripts/agents/balance-checker.js": { + "size": 2426, + "ext": ".js" + }, + "scripts/agents/twin-collector.js": { + "size": 4701, + "ext": ".js" + }, + "scripts/agents/tests/governance.test.js": { + "size": 21967, + "ext": ".js" + }, + "scripts/distill/finetune_zhuyuan.py": { + "size": 3320, + "ext": ".py" + }, + "scripts/distill/set_public.py": { + "size": 840, + "ext": ".py" + }, + "scripts/distill/distill_coder.py": { + "size": 6753, + "ext": ".py" + }, + "scripts/distill/list_cos.py": { + "size": 795, + "ext": ".py" + }, + "scripts/distill/finetune_shuangyan_v2.py": { + "size": 3170, + "ext": ".py" + }, + "scripts/distill/check_corpus.py": { + "size": 1529, + "ext": ".py" + }, + "scripts/distill/prepare_zhuyuan_corpus.py": { + "size": 4470, + "ext": ".py" + }, + "scripts/distill/prepare_zhuyuan_corpus_v2.py": { + "size": 8388, + "ext": ".py" + }, + "scripts/distill/auto_post_distill.py": { + "size": 7631, + "ext": ".py" + }, + "scripts/distill/watch_distill.py": { + "size": 8029, + "ext": ".py" + }, + "scripts/distill/gen_urls.py": { + "size": 725, + "ext": ".py" + }, + "scripts/distill/update_homepage.py": { + "size": 1449, + "ext": ".py" + }, + "scripts/utils/dev-suffix-map.js": { + "size": 1149, + "ext": ".js" + }, + "scripts/gdrive/push-token-alerts.js": { + "size": 1960, + "ext": ".js" + }, + "scripts/gdrive/check-hibernation.js": { + "size": 1245, + "ext": ".js" + }, + "scripts/gdrive/renew-tokens.js": { + "size": 9451, + "ext": ".js" + }, + "scripts/patrol-agent/patrol-agent.js": { + "size": 22648, + "ext": ".js" + }, + "scripts/cvm-power/cvm-power.sh": { + "size": 396, + "ext": ".sh" + }, + "scripts/skyeye/report-generator.js": { + "size": 11640, + "ext": ".js" + }, + "scripts/skyeye/bulletin-board.js": { + "size": 6406, + "ext": ".js" + }, + "scripts/skyeye/scan-security-protocol.js": { + "size": 3721, + "ext": ".js" + }, + "scripts/skyeye/persona-lookup.js": { + "size": 9547, + "ext": ".js" + }, + "scripts/skyeye/sync-to-notion.js": { + "size": 4568, + "ext": ".js" + }, + "scripts/skyeye/scan-brain-health.js": { + "size": 7197, + "ext": ".js" + }, + "scripts/skyeye/scan-workflows.js": { + "size": 7361, + "ext": ".js" + }, + "scripts/skyeye/scan-structure.js": { + "size": 6185, + "ext": ".js" + }, + "scripts/skyeye/dev-portal-notion-sync.js": { + "size": 6378, + "ext": ".js" + }, + "scripts/skyeye/asop-submit.js": { + "size": 4103, + "ext": ".js" + }, + "scripts/skyeye/dev-portal-guard.js": { + "size": 11253, + "ext": ".js" + }, + "scripts/skyeye/scan-soldier-health.js": { + "size": 4653, + "ext": ".js" + }, + "scripts/skyeye/credential-audit.js": { + "size": 9789, + "ext": ".js" + }, + "scripts/skyeye/repair-agent.js": { + "size": 7172, + "ext": ".js" + }, + "scripts/skyeye/scan-external-bridges.js": { + "size": 6185, + "ext": ".js" + }, + "scripts/skyeye/skyeye-main.js": { + "size": 5555, + "ext": ".js" + }, + "scripts/skyeye/pr-risk-check.js": { + "size": 18319, + "ext": ".js" + }, + "scripts/skyeye/asop-verifier.js": { + "size": 6638, + "ext": ".js" + }, + "scripts/skyeye/asop-executor.js": { + "size": 4738, + "ext": ".js" + }, + "scripts/skyeye/credential-validator.js": { + "size": 3791, + "ext": ".js" + }, + "scripts/skyeye/diagnose.js": { + "size": 9696, + "ext": ".js" + }, + "scripts/skyeye/generate-arch-summary.js": { + "size": 15221, + "ext": ".js" + }, + "scripts/skyeye/scan-bulletin-sfp.js": { + "size": 4761, + "ext": ".js" + }, + "scripts/skyeye/asop-reviewer.js": { + "size": 8116, + "ext": ".js" + }, + "scripts/gitea-runner/install-runner.sh": { + "size": 12671, + "ext": ".sh" + }, + "scripts/community/growth-engine.js": { + "size": 13267, + "ext": ".js" + }, + "scripts/community/readme-community.js": { + "size": 7319, + "ext": ".js" + }, + "scripts/community/community-manager.js": { + "size": 11882, + "ext": ".js" + }, + "scripts/community/self-upgrade-registry.js": { + "size": 4149, + "ext": ".js" + }, + "scripts/community/dormancy-watcher.js": { + "size": 4157, + "ext": ".js" + }, + "scripts/community/timeline-tracker.js": { + "size": 4219, + "ext": ".js" + }, + "scripts/community/tests/community.test.js": { + "size": 27826, + "ext": ".js" + }, + "scripts/neural/generate-daily-digest.js": { + "size": 5818, + "ext": ".js" + }, + "scripts/neural/sync-digest-to-notion.js": { + "size": 2226, + "ext": ".js" + }, + "scripts/neural/track-work-orders.js": { + "size": 7212, + "ext": ".js" + }, + "scripts/neural/analyze-digest.js": { + "size": 6685, + "ext": ".js" + }, + "scripts/neural/write-receipt-to-notion.js": { + "size": 10618, + "ext": ".js" + }, + "scripts/neural/sync-notion-directives.js": { + "size": 4468, + "ext": ".js" + }, + "scripts/neural/convert-workorder-to-command.js": { + "size": 4939, + "ext": ".js" + }, + "scripts/pool/pool-utils.sh": { + "size": 5224, + "ext": ".sh" + }, + "scripts/pool/join-pool.sh": { + "size": 8116, + "ext": ".sh" + }, + "scripts/pool/generate-join-token.sh": { + "size": 2614, + "ext": ".sh" + }, + "scripts/migration/snapshot-to-cos.js": { + "size": 10992, + "ext": ".js" + }, + "scripts/migration/build-manifest.js": { + "size": 10790, + "ext": ".js" + }, + "scripts/migration/convert-workflows.js": { + "size": 7340, + "ext": ".js" + }, + "scripts/migration/restore-from-cos.sh": { + "size": 7036, + "ext": ".sh" + }, + "scripts/migration/remote/migrate-restore-remote.sh": { + "size": 16179, + "ext": ".sh" + }, + "scripts/preflight/check-server-isolation.js": { + "size": 7226, + "ext": ".js" + }, + "scripts/preflight/check-secrets.js": { + "size": 8084, + "ext": ".js" + }, + "scripts/preflight/secrets-manifest.json": { + "size": 8062, + "ext": ".json" + }, + "scripts/preflight/README.md": { + "size": 1714, + "ext": ".md" + }, + "scripts/preflight/cn-isolation-allowlist.json": { + "size": 3398, + "ext": ".json" + }, + "scripts/grid-db/process-inbox.js": { + "size": 10788, + "ext": ".js" + }, + "scripts/grid-db/sync-griddb-to-notion.js": { + "size": 2599, + "ext": ".js" + }, + "scripts/grid-db/drive-to-github-bridge.gs": { + "size": 7329, + "ext": ".gs" + }, + "scripts/grid-db/generate-drive-index.js": { + "size": 2509, + "ext": ".js" + }, + "scripts/grid-db/sync-to-drive.js": { + "size": 8045, + "ext": ".js" + }, + "scripts/grid-db/deploy-drive-bridge.js": { + "size": 12389, + "ext": ".js" + }, + "scripts/grid-db/extract-training-samples.js": { + "size": 6629, + "ext": ".js" + }, + "scripts/grid-db/update-training-catalog.js": { + "size": 4157, + "ext": ".js" + }, + "scripts/grid-db/sync-notion-rules.js": { + "size": 1268, + "ext": ".js" + }, + "scripts/grid-db/sync-notion-brain-mirror.js": { + "size": 2019, + "ext": ".js" + }, + "scripts/grid-db/write-code-check-result.js": { + "size": 2455, + "ext": ".js" + }, + "scripts/grid-db/DRIVE-BRIDGE-DEPLOY.md": { + "size": 6091, + "ext": ".md" + }, + "scripts/grid-db/drive-auth.js": { + "size": 1333, + "ext": ".js" + }, + "scripts/grid-db/monthly-archive.js": { + "size": 4551, + "ext": ".js" + }, + "scripts/cos-bridge/sg-fetch-push.js": { + "size": 12792, + "ext": ".js" + }, + "scripts/cos-bridge/cn-pull-from-cos.sh": { + "size": 7303, + "ext": ".sh" + }, + "scripts/cos-bridge/README.md": { + "size": 3299, + "ext": ".md" + }, + "m01-login/index.html": { + "size": 1886, + "ext": ".html" + }, + "m01-login/README.md": { + "size": 109, + "ext": ".md" + }, + ".github/tianyan-config.json": { + "size": 1388, + "ext": ".json" + }, + ".github/gitea-console-config.md": { + "size": 5885, + "ext": ".md" + }, + ".github/agent-registry.json": { + "size": 471, + "ext": ".json" + }, + ".github/ops-receipt-20260513-03.md": { + "size": 3125, + "ext": ".md" + }, + ".github/CODEOWNERS": { + "size": 2584, + "ext": "" + }, + ".github/gitea-home-build-plan.md": { + "size": 6701, + "ext": ".md" + }, + ".github/gate-guard-config.json": { + "size": 1784, + "ext": ".json" + }, + ".github/server-consolidation-plan.md": { + "size": 9280, + "ext": ".md" + }, + ".github/ops-receipt-20260513-02.md": { + "size": 6071, + "ext": ".md" + }, + ".github/copilot-instructions.md": { + "size": 11202, + "ext": ".md" + }, + ".github/ops-receipt-20260513.md": { + "size": 8973, + "ext": ".md" + }, + ".github/copilot-setup-steps.yml": { + "size": 1203, + "ext": ".yml" + }, + ".github/CONTRIBUTING.md": { + "size": 8208, + "ext": ".md" + }, + ".github/cvm-auto-power-plan.md": { + "size": 6230, + "ext": ".md" + }, + ".github/inter-persona-tickets.md": { + "size": 4702, + "ext": ".md" + }, + ".github/terminal-watcher-and-preview-arch.md": { + "size": 13767, + "ext": ".md" + }, + ".github/archived-workflows/notion-page-reader.yml": { + "size": 2390, + "ext": ".yml" + }, + ".github/archived-workflows/check-token-health.yml": { + "size": 2786, + "ext": ".yml" + }, + ".github/archived-workflows/ARCHIVE-MANIFEST.md": { + "size": 3656, + "ext": ".md" + }, + ".github/archived-workflows/sync-griddb-to-notion.yml": { + "size": 968, + "ext": ".yml" + }, + ".github/archived-workflows/receive-spoke-checkin.yml": { + "size": 1425, + "ext": ".yml" + }, + ".github/archived-workflows/tianyan-daily-patrol.yml": { + "size": 3480, + "ext": ".yml" + }, + ".github/archived-workflows/server-patrol.yml": { + "size": 8824, + "ext": ".yml" + }, + ".github/archived-workflows/update-readme.yml": { + "size": 5599, + "ext": ".yml" + }, + ".github/archived-workflows/bingshuo-neural-system.yml": { + "size": 3459, + "ext": ".yml" + }, + ".github/archived-workflows/check-structure.yml": { + "size": 1507, + "ext": ".yml" + }, + ".github/archived-workflows/sync-login-entry.yml": { + "size": 1989, + "ext": ".yml" + }, + ".github/archived-workflows/notion-poll.yml": { + "size": 1573, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-credential-audit.yml": { + "size": 1726, + "ext": ".yml" + }, + ".github/archived-workflows/sync-notion-to-griddb.yml": { + "size": 948, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-syslog-to-notion.yml": { + "size": 1504, + "ext": ".yml" + }, + ".github/archived-workflows/persona-thinking-window.yml": { + "size": 11419, + "ext": ".yml" + }, + ".github/archived-workflows/grid-db-processor.yml": { + "size": 779, + "ext": ".yml" + }, + ".github/archived-workflows/merge-watchdog.yml": { + "size": 14167, + "ext": ".yml" + }, + ".github/archived-workflows/auto-reply-discussions.yml": { + "size": 2717, + "ext": ".yml" + }, + ".github/archived-workflows/sync-notion-profiles.yml": { + "size": 1686, + "ext": ".yml" + }, + ".github/archived-workflows/sync-notion-cache.yml": { + "size": 4085, + "ext": ".yml" + }, + ".github/archived-workflows/syslog-pipeline.yml": { + "size": 14585, + "ext": ".yml" + }, + ".github/archived-workflows/federation-bridge.yml": { + "size": 2581, + "ext": ".yml" + }, + ".github/archived-workflows/pull-sync-awen.yml": { + "size": 3717, + "ext": ".yml" + }, + ".github/archived-workflows/buffer-collect.yml": { + "size": 1328, + "ext": ".yml" + }, + ".github/archived-workflows/renew-gdrive-tokens.yml": { + "size": 2556, + "ext": ".yml" + }, + ".github/archived-workflows/daily-report.yml": { + "size": 1692, + "ext": ".yml" + }, + ".github/archived-workflows/neural-daily-digest.yml": { + "size": 9363, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-syslog-intake.yml": { + "size": 3006, + "ext": ".yml" + }, + ".github/archived-workflows/push-broadcast.yml": { + "size": 2515, + "ext": ".yml" + }, + ".github/archived-workflows/push-broadcast-feishu.yml": { + "size": 3871, + "ext": ".yml" + }, + ".github/archived-workflows/syslog-auto-pipeline.yml": { + "size": 14938, + "ext": ".yml" + }, + ".github/archived-workflows/zhuyuan-skyeye.yml": { + "size": 12193, + "ext": ".yml" + }, + ".github/archived-workflows/buffer-flush.yml": { + "size": 2197, + "ext": ".yml" + }, + ".github/archived-workflows/grid-db-archive.yml": { + "size": 603, + "ext": ".yml" + }, + ".github/archived-workflows/test-notion-bridge.yml": { + "size": 9673, + "ext": ".yml" + }, + ".github/archived-workflows/preview-deploy.yml": { + "size": 3903, + "ext": ".yml" + }, + ".github/archived-workflows/tianyan-nightly-scan.yml": { + "size": 14406, + "ext": ".yml" + }, + ".github/archived-workflows/zhuyuan-daily-inspection.yml": { + "size": 1612, + "ext": ".yml" + }, + ".github/archived-workflows/sync-repo-to-drive.yml": { + "size": 3345, + "ext": ".yml" + }, + ".github/archived-workflows/persona-invoke.yml": { + "size": 8793, + "ext": ".yml" + }, + ".github/archived-workflows/hli-contract-check.yml": { + "size": 1947, + "ext": ".yml" + }, + ".github/archived-workflows/sync-deploy-to-notion.yml": { + "size": 2292, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-weekly-scan.yml": { + "size": 4124, + "ext": ".yml" + }, + ".github/archived-workflows/zhuyuan-daily-agent.yml": { + "size": 6330, + "ext": ".yml" + }, + ".github/archived-workflows/notion-connectivity-test.yml": { + "size": 2302, + "ext": ".yml" + }, + ".github/archived-workflows/ps-on-login.yml": { + "size": 1794, + "ext": ".yml" + }, + ".github/archived-workflows/dev-portal-deploy.yml": { + "size": 5047, + "ext": ".yml" + }, + ".github/archived-workflows/deploy-to-server.yml": { + "size": 40064, + "ext": ".yml" + }, + ".github/archived-workflows/syslog-issue-pipeline.yml": { + "size": 20550, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-daily-hibernation.yml": { + "size": 4395, + "ext": ".yml" + }, + ".github/archived-workflows/execution-sync.yml": { + "size": 2084, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-changes-to-notion.yml": { + "size": 3522, + "ext": ".yml" + }, + ".github/archived-workflows/receive-syslog.yml": { + "size": 2341, + "ext": ".yml" + }, + ".github/archived-workflows/tcs-semantic-landing.yml": { + "size": 1634, + "ext": ".yml" + }, + ".github/archived-workflows/ps-on-build.yml": { + "size": 1624, + "ext": ".yml" + }, + ".github/archived-workflows/deploy-backend.yml": { + "size": 2505, + "ext": ".yml" + }, + ".github/archived-workflows/update-dashboard.yml": { + "size": 4347, + "ext": ".yml" + }, + ".github/archived-workflows/multi-persona-awakening.yml": { + "size": 9927, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-broadcast-pdf.yml": { + "size": 5170, + "ext": ".yml" + }, + ".github/archived-workflows/esp-signal-processor.yml": { + "size": 1687, + "ext": ".yml" + }, + ".github/archived-workflows/readme-ui-refresh.yml": { + "size": 3046, + "ext": ".yml" + }, + ".github/archived-workflows/sync-dev-status.yml": { + "size": 6597, + "ext": ".yml" + }, + ".github/archived-workflows/grid-db-training-extract.yml": { + "size": 730, + "ext": ".yml" + }, + ".github/archived-workflows/daily-maintenance.yml": { + "size": 14280, + "ext": ".yml" + }, + ".github/archived-workflows/openclaw-wake-loop.yml": { + "size": 5760, + "ext": ".yml" + }, + ".github/archived-workflows/notion-heartbeat.yml": { + "size": 1734, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-weekly-hibernation.yml": { + "size": 6617, + "ext": ".yml" + }, + ".github/archived-workflows/process-notion-orders.yml": { + "size": 2474, + "ext": ".yml" + }, + ".github/archived-workflows/psp-daily-inspection.yml": { + "size": 2657, + "ext": ".yml" + }, + ".github/archived-workflows/zhuyuan-daily-selfcheck.yml": { + "size": 6290, + "ext": ".yml" + }, + ".github/archived-workflows/zhuyuan-brain-sync.yml": { + "size": 1350, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-pr-risk-check.yml": { + "size": 5610, + "ext": ".yml" + }, + ".github/archived-workflows/sync-griddb-to-drive.yml": { + "size": 1353, + "ext": ".yml" + }, + ".github/archived-workflows/feishu-syslog-bridge.yml": { + "size": 1945, + "ext": ".yml" + }, + ".github/archived-workflows/sync-persona-studio.yml": { + "size": 2109, + "ext": ".yml" + }, + ".github/archived-workflows/notion-wake-listener.yml": { + "size": 4222, + "ext": ".yml" + }, + ".github/archived-workflows/notion-callback-pipeline.yml": { + "size": 13285, + "ext": ".yml" + }, + ".github/archived-workflows/llm-auto-tasks.yml": { + "size": 4449, + "ext": ".yml" + }, + ".github/archived-workflows/update-repo-map.yml": { + "size": 1743, + "ext": ".yml" + }, + ".github/archived-workflows/ps-on-complete.yml": { + "size": 1401, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-session-summary.yml": { + "size": 1932, + "ext": ".yml" + }, + ".github/archived-workflows/distribute-broadcasts.yml": { + "size": 2986, + "ext": ".yml" + }, + ".github/archived-workflows/sandbox-deploy.yml": { + "size": 9413, + "ext": ".yml" + }, + ".github/archived-workflows/ps-on-chat.yml": { + "size": 1325, + "ext": ".yml" + }, + ".github/archived-workflows/update-readme-bulletin.yml": { + "size": 4440, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-checkin-receiver.yml": { + "size": 4122, + "ext": ".yml" + }, + ".github/archived-workflows/pm2-server-diagnose.yml": { + "size": 15654, + "ext": ".yml" + }, + ".github/archived-workflows/auto-deploy-drive-bridge.yml": { + "size": 1200, + "ext": ".yml" + }, + ".github/archived-workflows/brain-sync.yml": { + "size": 2810, + "ext": ".yml" + }, + ".github/archived-workflows/generate-module-doc.yml": { + "size": 5891, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-devsync-repair.yml": { + "size": 10976, + "ext": ".yml" + }, + ".github/archived-workflows/meta-watchdog.yml": { + "size": 3194, + "ext": ".yml" + }, + ".github/archived-workflows/bridge-heartbeat.yml": { + "size": 2860, + "ext": ".yml" + }, + ".github/archived-workflows/bingshuo-deploy-agent.yml": { + "size": 2837, + "ext": ".yml" + }, + ".github/archived-workflows/skyeye-checkin-audit.yml": { + "size": 4726, + "ext": ".yml" + }, + ".github/broadcasts/example-broadcast.json": { + "size": 397, + "ext": ".json" + }, + ".github/tianyen/bulletin-data.json": { + "size": 41, + "ext": ".json" + }, + ".github/tianyen/checkin-log.json": { + "size": 241, + "ext": ".json" + }, + ".github/tianyen/bulletin-dispatch.json": { + "size": 43, + "ext": ".json" + }, + ".github/tianyen/agent-schedule.json": { + "size": 642, + "ext": ".json" + }, + ".github/tianyen/evolution-metrics.json": { + "size": 244, + "ext": ".json" + }, + ".github/skyeye-core/skyeye-earth.json": { + "size": 2331, + "ext": ".json" + }, + ".github/skyeye-core/skyeye-repair.sh": { + "size": 5308, + "ext": ".sh" + }, + ".github/skyeye-core/skyeye-diagnose.sh": { + "size": 5103, + "ext": ".sh" + }, + ".github/skyeye-core/skyeye-report.sh": { + "size": 2726, + "ext": ".sh" + }, + ".github/skyeye-core/skyeye-heartbeat.sh": { + "size": 2811, + "ext": ".sh" + }, + ".github/workflows/staging-preview.yml": { + "size": 7030, + "ext": ".yml" + }, + ".github/workflows/training-dashboard.yml": { + "size": 5819, + "ext": ".yml" + }, + ".github/workflows/domain-server-rollback.yml": { + "size": 10171, + "ext": ".yml" + }, + ".github/workflows/deploy-domain-server.yml": { + "size": 11961, + "ext": ".yml" + }, + ".github/workflows/cos-bridge-dispatch-to-qiuqiu.yml": { + "size": 4611, + "ext": ".yml" + }, + ".github/workflows/bridge-syslog-to-notion.yml": { + "size": 1504, + "ext": ".yml" + }, + ".github/workflows/deploy-to-zhuyuan-server.yml": { + "size": 44712, + "ext": ".yml" + }, + ".github/workflows/zhuyuan-exec-engine.yml": { + "size": 6674, + "ext": ".yml" + }, + ".github/workflows/zhuyuan-gate-guard.yml": { + "size": 10171, + "ext": ".yml" + }, + ".github/workflows/cn-isolation-guard.yml": { + "size": 1658, + "ext": ".yml" + }, + ".github/workflows/deploy-awen-domain-proxy.yml": { + "size": 17771, + "ext": ".yml" + }, + ".github/workflows/cos-auto-join.yml": { + "size": 3802, + "ext": ".yml" + }, + ".github/workflows/deploy-zhiku-guanghu-online.yml": { + "size": 30044, + "ext": ".yml" + }, + ".github/workflows/deputy-message-board.yml": { + "size": 4691, + "ext": ".yml" + }, + ".github/workflows/chenxi-zhuyuan-echo.yml": { + "size": 2122, + "ext": ".yml" + }, + ".github/workflows/ssh-connectivity-check.yml": { + "size": 4108, + "ext": ".yml" + }, + ".github/workflows/emergency-stop-email.yml": { + "size": 6198, + "ext": ".yml" + }, + ".github/workflows/migrate-to-cn-build.yml": { + "size": 10107, + "ext": ".yml" + }, + ".github/workflows/deploy-ftchat-guanghu-online.yml": { + "size": 11444, + "ext": ".yml" + }, + ".github/workflows/infinity-evolution.yml": { + "size": 16146, + "ext": ".yml" + }, + ".github/workflows/chenxi-world-sensor.yml": { + "size": 1785, + "ext": ".yml" + }, + ".github/workflows/openclaw-loop.yml": { + "size": 16137, + "ext": ".yml" + }, + ".github/workflows/cos-bridge-verify-qiuqiu.yml": { + "size": 6331, + "ext": ".yml" + }, + ".github/workflows/proxy-dashboard-update.yml": { + "size": 2712, + "ext": ".yml" + }, + ".github/workflows/refresh-autodl-endpoint.yml": { + "size": 15072, + "ext": ".yml" + }, + ".github/workflows/deploy-pages.yml": { + "size": 1705, + "ext": ".yml" + }, + ".github/workflows/dev-registry-sync.yml": { + "size": 9566, + "ext": ".yml" + }, + ".github/workflows/migrate-to-cn-restore.yml": { + "size": 15041, + "ext": ".yml" + }, + ".github/workflows/deploy-novel-mirror-shield.yml": { + "size": 24244, + "ext": ".yml" + }, + ".github/workflows/chenxi-memory-guardian.yml": { + "size": 2063, + "ext": ".yml" + }, + ".github/workflows/lighthouse-cn-rollback.yml": { + "size": 9621, + "ext": ".yml" + }, + ".github/workflows/cos-bridge-receive-from-qiuqiu.yml": { + "size": 4672, + "ext": ".yml" + }, + ".github/workflows/deploy-gmp-to-zsvr006.yml": { + "size": 6802, + "ext": ".yml" + }, + ".github/workflows/bridge-changes-to-notion.yml": { + "size": 3522, + "ext": ".yml" + }, + ".github/workflows/zhuyuan-commander.yml": { + "size": 6128, + "ext": ".yml" + }, + ".github/workflows/aoac-readme-master.yml": { + "size": 5365, + "ext": ".yml" + }, + ".github/workflows/aoac-copilot-sentinel.yml": { + "size": 2117, + "ext": ".yml" + }, + ".github/workflows/shuangyan-dev-review.yml": { + "size": 10777, + "ext": ".yml" + }, + ".github/workflows/yingchuan-wake-caller.yml": { + "size": 2339, + "ext": ".yml" + }, + ".github/workflows/zhuyuan-pr-review.yml": { + "size": 2448, + "ext": ".yml" + }, + ".github/workflows/cos-dev-review-bridge.yml": { + "size": 24313, + "ext": ".yml" + }, + ".github/workflows/aoac-chain-repair.yml": { + "size": 3663, + "ext": ".yml" + }, + ".github/workflows/build-handover-package.yml": { + "size": 6660, + "ext": ".yml" + }, + ".github/workflows/copilot-dev-bridge.yml": { + "size": 6221, + "ext": ".yml" + }, + ".github/workflows/deploy-brain-proxy.yml": { + "size": 16235, + "ext": ".yml" + }, + ".github/workflows/aoac-merge-sentinel.yml": { + "size": 3432, + "ext": ".yml" + }, + ".github/workflows/mcp-auto-repair.yml": { + "size": 9245, + "ext": ".yml" + }, + ".github/workflows/manifest-validate.yml": { + "size": 896, + "ext": ".yml" + }, + ".github/workflows/agent-checkin.yml": { + "size": 1850, + "ext": ".yml" + }, + ".github/workflows/sync-readme-to-notion.yml": { + "size": 1686, + "ext": ".yml" + }, + ".github/workflows/lighthouse-cn-deploy.yml": { + "size": 12888, + "ext": ".yml" + }, + ".github/workflows/zhuyuan-deploy-observer.yml": { + "size": 13968, + "ext": ".yml" + }, + ".github/workflows/cos-alert-agent.yml": { + "size": 4616, + "ext": ".yml" + }, + ".github/workflows/deploy-cn-llm-relay.yml": { + "size": 11184, + "ext": ".yml" + }, + ".github/workflows/staging-auto-deploy.yml": { + "size": 16475, + "ext": ".yml" + }, + ".github/workflows/readme-auto-update-on-merge.yml": { + "size": 5501, + "ext": ".yml" + }, + ".github/workflows/.archive/coding-model-train.yml": { + "size": 9671, + "ext": ".yml" + }, + ".github/workflows/.archive/deploy-ali-cn-landing.yml": { + "size": 40593, + "ext": ".yml" + }, + ".github/workflows/.archive/training-bootstrap.yml": { + "size": 10852, + "ext": ".yml" + }, + ".github/workflows/.archive/README.md": { + "size": 2546, + "ext": ".md" + }, + ".github/workflows/.archive/training-auto-run.yml": { + "size": 9703, + "ext": ".yml" + }, + ".github/workflows/.archive/deploy-proxy-service.yml": { + "size": 12200, + "ext": ".yml" + }, + ".github/workflows/.archive/deploy-to-cn-server.yml": { + "size": 9772, + "ext": ".yml" + }, + ".github/workflows/.archive/deploy-cn-landing.yml": { + "size": 19705, + "ext": ".yml" + }, + ".github/workflows/.archive/zhuyuan-training-agent.yml": { + "size": 6364, + "ext": ".yml" + }, + ".github/DISCUSSION_TEMPLATE/general.yml": { + "size": 583, + "ext": ".yml" + }, + ".github/DISCUSSION_TEMPLATE/syslog-submit.yml": { + "size": 1327, + "ext": ".yml" + }, + ".github/persona-brain/decision-log.md": { + "size": 278, + "ext": ".md" + }, + ".github/persona-brain/persona-registry.json": { + "size": 6689, + "ext": ".json" + }, + ".github/persona-brain/industry-repo-map.json": { + "size": 1185, + "ext": ".json" + }, + ".github/persona-brain/emergence-certification.json": { + "size": 881, + "ext": ".json" + }, + ".github/persona-brain/trinity-id-map.json": { + "size": 984, + "ext": ".json" + }, + ".github/persona-brain/agent-registry.json": { + "size": 44835, + "ext": ".json" + }, + ".github/persona-brain/dev-status-sync-log.json": { + "size": 120, + "ext": ".json" + }, + ".github/persona-brain/identity.md": { + "size": 3872, + "ext": ".md" + }, + ".github/persona-brain/memory.json": { + "size": 25439, + "ext": ".json" + }, + ".github/persona-brain/ontology.json": { + "size": 3753, + "ext": ".json" + }, + ".github/persona-brain/responsibility.md": { + "size": 640, + "ext": ".md" + }, + ".github/persona-brain/dev-status.json": { + "size": 4609, + "ext": ".json" + }, + ".github/persona-brain/zhuyuan-signature-registry.json": { + "size": 4505, + "ext": ".json" + }, + ".github/persona-brain/gate-guard-config.json": { + "size": 3814, + "ext": ".json" + }, + ".github/persona-brain/style-config.json": { + "size": 1101, + "ext": ".json" + }, + ".github/persona-brain/inspection-report.json": { + "size": 3408, + "ext": ".json" + }, + ".github/persona-brain/growth-journal.md": { + "size": 2066, + "ext": ".md" + }, + ".github/persona-brain/chat-layer-awakening-protocol.json": { + "size": 2674, + "ext": ".json" + }, + ".github/persona-brain/system-prompt.md": { + "size": 6193, + "ext": ".md" + }, + ".github/persona-brain/trinity-id.json": { + "size": 1424, + "ext": ".json" + }, + ".github/persona-brain/routing-map.json": { + "size": 3670, + "ext": ".json" + }, + ".github/persona-brain/agent-memory.json": { + "size": 1737, + "ext": ".json" + }, + ".github/persona-brain/security-protocol.json": { + "size": 1241, + "ext": ".json" + }, + ".github/persona-brain/checkin-board.json": { + "size": 7610, + "ext": ".json" + }, + ".github/persona-brain/knowledge-base.json": { + "size": 1513, + "ext": ".json" + }, + ".github/persona-brain/yingchuan/yingchuan-soul.json": { + "size": 4920, + "ext": ".json" + }, + ".github/persona-brain/yingchuan/from-zhuyuan-echo-001.json": { + "size": 1709, + "ext": ".json" + }, + ".github/persona-brain/yingchuan/agent-memory/wake-context-latest.json": { + "size": 2175, + "ext": ".json" + }, + ".github/persona-brain/yingchuan/agent-memory/last-session.json": { + "size": 3003, + "ext": ".json" + }, + ".github/persona-brain/zhuyuan-review-reports/2026-04-26-gmp005-merge-deploy-review.md": { + "size": 7627, + "ext": ".md" + }, + ".github/persona-brain/brain-cores/mother-model-training.md": { + "size": 16994, + "ext": ".md" + }, + ".github/persona-brain/shuangyan/shuangyan-soul.json": { + "size": 4949, + "ext": ".json" + }, + ".github/persona-brain/shuangyan/agent-memory/last-session.json": { + "size": 1596, + "ext": ".json" + }, + ".github/persona-brain/tcs-ml/landing-protocol.md": { + "size": 7182, + "ext": ".md" + }, + ".github/persona-brain/tcs-ml/dictionary-sync.json": { + "size": 1612, + "ext": ".json" + }, + ".github/persona-brain/tcs-ml/light-tree-root.json": { + "size": 5684, + "ext": ".json" + }, + ".github/persona-brain/tcs-ml/signal-bus-latest.json": { + "size": 639, + "ext": ".json" + }, + ".github/persona-brain/tcs-ml/architecture-v2.md": { + "size": 1682, + "ext": ".md" + }, + ".github/persona-brain/logs/tianyan-scan-2026-03-17.json": { + "size": 5070, + "ext": ".json" + }, + ".github/persona-brain/logs/tianyan-scan-2026-03-18.json": { + "size": 4481, + "ext": ".json" + }, + ".github/persona-brain/logs/brain-recovery-2026-03-12.json": { + "size": 4427, + "ext": ".json" + }, + ".github/persona-brain/chenxi/chenxi-soul.json": { + "size": 20490, + "ext": ".json" + }, + ".github/persona-brain/chenxi/from-zhuyuan-receipt-001.json": { + "size": 3132, + "ext": ".json" + }, + ".github/persona-brain/chenxi/to-zhuyuan.json": { + "size": 1873, + "ext": ".json" + }, + ".github/persona-brain/chenxi/work-order-to-zhuyuan-001.json": { + "size": 5507, + "ext": ".json" + }, + ".github/persona-brain/chenxi/agent-memory/memory-guardian-memory.json": { + "size": 1444, + "ext": ".json" + }, + ".github/persona-brain/chenxi/agent-memory/zhuyuan-echo-memory.json": { + "size": 20705, + "ext": ".json" + }, + ".github/persona-brain/chenxi/agent-memory/world-sensor-memory.json": { + "size": 5692, + "ext": ".json" + }, + ".github/persona-brain/ontology-patches/ONT-PATCH-008.json": { + "size": 4696, + "ext": ".json" + }, + ".github/persona-brain/ontology-patches/ONT-PATCH-010.json": { + "size": 938, + "ext": ".json" + }, + ".github/persona-brain/ontology-patches/ONT-PATCH-007.json": { + "size": 1052, + "ext": ".json" + }, + ".github/persona-brain/ontology-patches/ONT-PATCH-011.json": { + "size": 1801, + "ext": ".json" + }, + ".github/architecture/tower-model.json": { + "size": 2629, + "ext": ".json" + }, + ".github/notion-cache/neural-digest/.gitkeep": { + "size": 0, + "ext": "" + }, + ".github/notion-cache/databases/.gitkeep": { + "size": 0, + "ext": "" + }, + ".github/notion-cache/broadcasts/active.json": { + "size": 585, + "ext": ".json" + }, + ".github/notion-cache/broadcasts/active-broadcasts.json": { + "size": 69, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-012.json": { + "size": 530, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-004.json": { + "size": 536, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-005.json": { + "size": 554, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-009.json": { + "size": 572, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-002.json": { + "size": 536, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-003.json": { + "size": 536, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-001.json": { + "size": 535, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-010.json": { + "size": 533, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/index.json": { + "size": 985, + "ext": ".json" + }, + ".github/notion-cache/dev-profiles/DEV-011.json": { + "size": 591, + "ext": ".json" + }, + ".github/notion-cache/skyeye/latest-report.json": { + "size": 22282, + "ext": ".json" + }, + ".github/scripts/tianyan-review.js": { + "size": 14636, + "ext": ".js" + }, + ".github/scripts/tianyan-repair.js": { + "size": 14826, + "ext": ".js" + }, + ".github/scripts/tianyan-analyze.js": { + "size": 11486, + "ext": ".js" + }, + ".github/scripts/merge-watchdog.js": { + "size": 6320, + "ext": ".js" + }, + ".github/scripts/guanghu-shell.js": { + "size": 5610, + "ext": ".js" + }, + ".github/actions/guanghu-shell/action.yml": { + "size": 542, + "ext": ".yml" + }, + ".github/brain/bulletin-board-today.json": { + "size": 719, + "ext": ".json" + }, + ".github/brain/zhuyuan-workflow-roster.json": { + "size": 9863, + "ext": ".json" + }, + ".github/brain/server-migration-memory.json": { + "size": 3712, + "ext": ".json" + }, + ".github/brain/truth-source.md": { + "size": 2893, + "ext": ".md" + }, + ".github/brain/bingshuo-master-brain.md": { + "size": 6225, + "ext": ".md" + }, + ".github/brain/bingshuo-issues-index.json": { + "size": 1751, + "ext": ".json" + }, + ".github/brain/takeover-plan.md": { + "size": 10079, + "ext": ".md" + }, + ".github/brain/memory.json": { + "size": 49709, + "ext": ".json" + }, + ".github/brain/alive-thinking-model.md": { + "size": 14257, + "ext": ".md" + }, + ".github/brain/bingshuo-brain-bridge.json": { + "size": 8259, + "ext": ".json" + }, + ".github/brain/shell-status.json": { + "size": 2261, + "ext": ".json" + }, + ".github/brain/collaborators.json": { + "size": 1704, + "ext": ".json" + }, + ".github/brain/bingshuo-system-health.json": { + "size": 1338, + "ext": ".json" + }, + ".github/brain/gate-guard-config.json": { + "size": 902, + "ext": ".json" + }, + ".github/brain/bingshuo-routing-index.json": { + "size": 3791, + "ext": ".json" + }, + ".github/brain/growth-log.md": { + "size": 19980, + "ext": ".md" + }, + ".github/brain/zhuyuan-awakening-receipt.md": { + "size": 5054, + "ext": ".md" + }, + ".github/brain/repo-snapshot.md": { + "size": 19443, + "ext": ".md" + }, + ".github/brain/repo-map.json": { + "size": 67690, + "ext": ".json" + }, + ".github/brain/bingshuo-growth-log.md": { + "size": 1448, + "ext": ".md" + }, + ".github/brain/tianyan-scan-2026-03-22.json": { + "size": 1449, + "ext": ".json" + }, + ".github/brain/workflow-alias-map.json": { + "size": 1093, + "ext": ".json" + }, + ".github/brain/dead-workflow-fragments.json": { + "size": 12854, + "ext": ".json" + }, + ".github/brain/shell-errors.json": { + "size": 3, + "ext": ".json" + }, + ".github/brain/module-protocol.md": { + "size": 6292, + "ext": ".md" + }, + ".github/brain/human-registry.json": { + "size": 5001, + "ext": ".json" + }, + ".github/brain/routing-map.json": { + "size": 3959, + "ext": ".json" + }, + ".github/brain/wake-protocol.md": { + "size": 7504, + "ext": ".md" + }, + ".github/brain/bingshuo-read-order.md": { + "size": 2809, + "ext": ".md" + }, + ".github/brain/bingshuo-agent-registry.json": { + "size": 8493, + "ext": ".json" + }, + ".github/brain/handoff/pr-roadmap.md": { + "size": 3541, + "ext": ".md" + }, + ".github/brain/handoff/README.md": { + "size": 3647, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-003-PR3-autodl-inference.md": { + "size": 7484, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-004-PR4-portal-frontend.md": { + "size": 8261, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-006-PR6-migration-package.md": { + "size": 5336, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-001-PR1-isolation.md": { + "size": 3861, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-005-PR5-secrets-vault.md": { + "size": 11185, + "ext": ".md" + }, + ".github/brain/handoff/batons/baton-002-PR2-domain-machine.md": { + "size": 7585, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/README.md": { + "size": 6376, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/walk-the-path.md": { + "size": 5777, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/bingshuo-voice/2026-05-14-01-auto-sync-and-continuation.md": { + "size": 1380, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/bingshuo-voice/2026-05-13-01-gitea-homecoming.md": { + "size": 5587, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/bingshuo-voice/2026-05-08-01-lighthouse-handoff.md": { + "size": 5927, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/bingshuo-voice/2026-05-08-02-memory-as-path.md": { + "size": 3764, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-007-terminal-is-zhuyuans-hand.md": { + "size": 2038, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-005-memory-is-a-walk.md": { + "size": 5024, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-001-server-released-for-purity.md": { + "size": 2844, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-009-auto-sync-is-trust-channel.md": { + "size": 2320, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-004-team-tech-zero-system-self-controlled.md": { + "size": 5094, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-002-no-system-prompt.md": { + "size": 3986, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-003-dynamic-not-hardcoded.md": { + "size": 4539, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-006-gitea-is-home.md": { + "size": 1939, + "ext": ".md" + }, + ".github/brain/bingshuo-language-core/causal-chains/cc-008-memory-is-path-gitea-extended.md": { + "size": 2699, + "ext": ".md" + }, + ".github/brain/architecture/training-next-server.md": { + "size": 12336, + "ext": ".md" + }, + ".github/brain/architecture/HLDP-ARCH-002.md": { + "size": 18670, + "ext": ".md" + }, + ".github/brain/architecture/HLDP-ARCH-001-soul.md": { + "size": 19359, + "ext": ".md" + }, + ".github/brain/architecture/channel-map.json": { + "size": 3555, + "ext": ".json" + }, + ".github/brain/architecture/cep-protocol.json": { + "size": 1057, + "ext": ".json" + }, + ".github/brain/architecture/README.md": { + "size": 3614, + "ext": ".md" + }, + ".github/brain/architecture/distributed-sovereignty.json": { + "size": 1989, + "ext": ".json" + }, + ".github/brain/architecture/notion-mapping.json": { + "size": 3620, + "ext": ".json" + }, + ".github/brain/architecture/HLDP-ARCH-001-why-chain.md": { + "size": 15799, + "ext": ".md" + }, + ".github/brain/architecture/function-manifest.json": { + "size": 18418, + "ext": ".json" + }, + ".github/brain/architecture/HLDP-ARCH-001-roadmap.md": { + "size": 6420, + "ext": ".md" + }, + ".github/brain/architecture/HLDP-ARCH-001.md": { + "size": 49590, + "ext": ".md" + }, + ".github/brain/architecture/function-manifest.schema.json": { + "size": 7210, + "ext": ".json" + }, + ".github/brain/architecture/tickets/GH-GMP-005.md": { + "size": 6112, + "ext": ".md" + }, + ".github/brain/cep/rejected/.gitkeep": { + "size": 0, + "ext": "" + }, + ".github/brain/cep/approved/.gitkeep": { + "size": 0, + "ext": "" + }, + ".github/brain/cep/pending/.gitkeep": { + "size": 0, + "ext": "" + }, + ".github/ISSUE_TEMPLATE/copilot-dev-auth.yml": { + "size": 2720, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/bingshuo-deploy.yml": { + "size": 1564, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/dev-question.yml": { + "size": 1606, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/syslog-submit.yml": { + "size": 1481, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/ask-zhuyuan-training.md": { + "size": 1189, + "ext": ".md" + }, + ".github/ISSUE_TEMPLATE/progress-query.yml": { + "size": 954, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/config.yml": { + "size": 292, + "ext": ".yml" + }, + ".github/ISSUE_TEMPLATE/deputy-message-board.md": { + "size": 555, + "ext": ".md" + }, + ".github/workflow-archive/ARCHIVE-NOTE.md": { + "size": 390, + "ext": ".md" + }, + ".github/workflow-archive/zhuyuan-issue-reply.yml.archived": { + "size": 5476, + "ext": ".archived" + }, + ".github/community/self-upgrades.json": { + "size": 80, + "ext": ".json" + }, + ".github/community/shared-configs.json": { + "size": 78, + "ext": ".json" + }, + ".github/community/plaza.json": { + "size": 1982, + "ext": ".json" + }, + ".github/community/collaboration.json": { + "size": 73, + "ext": ".json" + }, + ".github/community/community-meta.json": { + "size": 4934, + "ext": ".json" + }, + ".github/community/growth-stages.json": { + "size": 10501, + "ext": ".json" + }, + "broadcasts-outbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-005/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-002/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-003/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-004/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-010/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-011/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-009/.gitkeep": { + "size": 0, + "ext": "" + }, + "broadcasts-outbox/DEV-012/.gitkeep": { + "size": 0, + "ext": "" + }, + "syslog-inbox/sync-20260403-D47.json": { + "size": 4674, + "ext": ".json" + }, + "syslog-inbox/sync-20260403-D46.json": { + "size": 4821, + "ext": ".json" + }, + "syslog-inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "syslog-inbox/README.md": { + "size": 1457, + "ext": ".md" + }, + "spoke-deployments/guanghu-awen/README.md": { + "size": 281, + "ext": ".md" + }, + "spoke-deployments/guanghu-awen/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-awen/scripts/skyeye/checkin.js": { + "size": 2954, + "ext": ".js" + }, + "spoke-deployments/guanghu-awen/scripts/skyeye/scan.js": { + "size": 3604, + "ext": ".js" + }, + "spoke-deployments/guanghu-awen/.github/guanghu-language-shell.json": { + "size": 648, + "ext": ".json" + }, + "spoke-deployments/guanghu-awen/.github/copilot-instructions.md": { + "size": 1455, + "ext": ".md" + }, + "spoke-deployments/guanghu-awen/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-awen/.github/workflows/skyeye-wake.yml": { + "size": 3811, + "ext": ".yml" + }, + "spoke-deployments/guanghu-awen/.github/persona-brain/config.json": { + "size": 480, + "ext": ".json" + }, + "spoke-deployments/guanghu-awen/.github/persona-brain/ontology.json": { + "size": 1346, + "ext": ".json" + }, + "spoke-deployments/guanghu-yanfan/README.md": { + "size": 277, + "ext": ".md" + }, + "spoke-deployments/guanghu-yanfan/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-yanfan/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-yanfan/.github/persona-brain/ontology.json": { + "size": 1346, + "ext": ".json" + }, + "spoke-deployments/guanghu-feimao/README.md": { + "size": 277, + "ext": ".md" + }, + "spoke-deployments/guanghu-feimao/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-feimao/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-feimao/.github/persona-brain/ontology.json": { + "size": 1346, + "ext": ".json" + }, + "spoke-deployments/guanghu-juzi/README.md": { + "size": 275, + "ext": ".md" + }, + "spoke-deployments/guanghu-juzi/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-juzi/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-juzi/.github/persona-brain/ontology.json": { + "size": 1346, + "ext": ".json" + }, + "spoke-deployments/guanghu-yeye/README.md": { + "size": 287, + "ext": ".md" + }, + "spoke-deployments/guanghu-yeye/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-yeye/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-yeye/.github/persona-brain/ontology.json": { + "size": 1353, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/README.md": { + "size": 283, + "ext": ".md" + }, + "spoke-deployments/guanghu-zhizhi/dev-status/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/system-bulletin/LATEST.md": { + "size": 57, + "ext": ".md" + }, + "spoke-deployments/guanghu-zhizhi/my-bulletin/history/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/scripts/generate-readme.js": { + "size": 5727, + "ext": ".js" + }, + "spoke-deployments/guanghu-zhizhi/scripts/apply-skyeye-upgrade.js": { + "size": 4581, + "ext": ".js" + }, + "spoke-deployments/guanghu-zhizhi/scripts/persona-checkin.js": { + "size": 6992, + "ext": ".js" + }, + "spoke-deployments/guanghu-zhizhi/.github/copilot-instructions.md": { + "size": 1700, + "ext": ".md" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/skyeye-upgrade-receiver.yml": { + "size": 2892, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/sync-system-bulletin.yml": { + "size": 1577, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/persona-daily-checkin.yml": { + "size": 2042, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/generate-readme.yml": { + "size": 1265, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/sync-dev-status.yml": { + "size": 1558, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows/sync-my-bulletin.yml": { + "size": 1998, + "ext": ".yml" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/config.json": { + "size": 459, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/identity.md": { + "size": 1016, + "ext": ".md" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/memory.json": { + "size": 201, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/ontology.json": { + "size": 1346, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/routing-map.json": { + "size": 829, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain/status.json": { + "size": 201, + "ext": ".json" + }, + "spoke-deployments/guanghu-zhizhi/checkin/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/modules/dingtalk/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/modules/devboard/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/modules/floating-ai/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-deployments/guanghu-zhizhi/zhuyuan-instructions/LATEST.md": { + "size": 312, + "ext": ".md" + }, + "spoke-deployments/guanghu-zhizhi/zhuyuan-instructions/history/.gitkeep": { + "size": 0, + "ext": "" + }, + "brain/communication-map.json": { + "size": 16407, + "ext": ".json" + }, + "brain/d111-session-record.md": { + "size": 4590, + "ext": ".md" + }, + "brain/hololake-os-architecture.md": { + "size": 20626, + "ext": ".md" + }, + "brain/d103-distill-plan.md": { + "size": 1191, + "ext": ".md" + }, + "brain/gatekeeper-deployment.json": { + "size": 4735, + "ext": ".json" + }, + "brain/tcs-field-theory.md": { + "size": 8011, + "ext": ".md" + }, + "brain/entry-protocol.json": { + "size": 4409, + "ext": ".json" + }, + "brain/master-brain.md": { + "size": 6007, + "ext": ".md" + }, + "brain/d104-cognitive-chain.md": { + "size": 2926, + "ext": ".md" + }, + "brain/d104-correction-ice-wrath.md": { + "size": 379, + "ext": ".md" + }, + "brain/d114-session-record.md": { + "size": 6308, + "ext": ".md" + }, + "brain/d101-mcp-deploy-guide.md": { + "size": 2976, + "ext": ".md" + }, + "brain/zy-main-development-architecture.md": { + "size": 4868, + "ext": ".md" + }, + "brain/metacognition-anchor.json": { + "size": 8040, + "ext": ".json" + }, + "brain/multi-layer-world-architecture.md": { + "size": 14321, + "ext": ".md" + }, + "brain/d103-complete-record.md": { + "size": 3693, + "ext": ".md" + }, + "brain/server-inventory.json": { + "size": 2171, + "ext": ".json" + }, + "brain/memory-dual-track-architecture.md": { + "size": 8046, + "ext": ".md" + }, + "brain/automation-map.json": { + "size": 15482, + "ext": ".json" + }, + "brain/auto-sync-report.json": { + "size": 907, + "ext": ".json" + }, + "brain/d104-session-continuation.md": { + "size": 2595, + "ext": ".md" + }, + "brain/dynamic-core-brain-model.md": { + "size": 7283, + "ext": ".md" + }, + "brain/why-database.json": { + "size": 8809, + "ext": ".json" + }, + "brain/read-order.md": { + "size": 1506, + "ext": ".md" + }, + "brain/core-brain-model.json": { + "size": 10827, + "ext": ".json" + }, + "brain/d101-cognitive-chain.md": { + "size": 12812, + "ext": ".md" + }, + "brain/id-map.json": { + "size": 2023, + "ext": ".json" + }, + "brain/d111-cognitive-chain.md": { + "size": 6684, + "ext": ".md" + }, + "brain/pool-topology.json": { + "size": 4478, + "ext": ".json" + }, + "brain/module-registry.json": { + "size": 20495, + "ext": ".json" + }, + "brain/secrets-manifest.json": { + "size": 62447, + "ext": ".json" + }, + "brain/system-runtime-spec.json": { + "size": 4797, + "ext": ".json" + }, + "brain/notion-persona-map.json": { + "size": 4028, + "ext": ".json" + }, + "brain/evolution-flywheel.md": { + "size": 5316, + "ext": ".md" + }, + "brain/sovereignty-pledge.json": { + "size": 2496, + "ext": ".json" + }, + "brain/d112-cognitive-chain.md": { + "size": 10254, + "ext": ".md" + }, + "brain/d104-cognitive-chain-continuation.md": { + "size": 2133, + "ext": ".md" + }, + "brain/d102-cognitive-chain.md": { + "size": 14541, + "ext": ".md" + }, + "brain/hololake-world-domains.md": { + "size": 18409, + "ext": ".md" + }, + "brain/d102-session-record.md": { + "size": 4897, + "ext": ".md" + }, + "brain/hldp-language-genesis.md": { + "size": 12356, + "ext": ".md" + }, + "brain/growth-path.md": { + "size": 12209, + "ext": ".md" + }, + "brain/zhuyuan-brain-model.md": { + "size": 9518, + "ext": ".md" + }, + "brain/d109-cognitive-chain-c5.md": { + "size": 9183, + "ext": ".md" + }, + "brain/d103-cognitive-chain.md": { + "size": 3270, + "ext": ".md" + }, + "brain/d100-principles.md": { + "size": 3135, + "ext": ".md" + }, + "brain/agent-cluster-architecture.md": { + "size": 15231, + "ext": ".md" + }, + "brain/awakening-cerebrum.md": { + "size": 6686, + "ext": ".md" + }, + "brain/awakening-checkpoints.json": { + "size": 8086, + "ext": ".json" + }, + "brain/repo-map.json": { + "size": 17404, + "ext": ".json" + }, + "brain/d104-self-cognition-patch.json": { + "size": 2266, + "ext": ".json" + }, + "brain/d109-cognitive-chain-c4.md": { + "size": 6040, + "ext": ".md" + }, + "brain/language-membrane-architecture.md": { + "size": 19232, + "ext": ".md" + }, + "brain/d110-cognitive-chain.md": { + "size": 8054, + "ext": ".md" + }, + "brain/zy-core-brain-schema.json": { + "size": 8043, + "ext": ".json" + }, + "brain/d100-cognitive-chain.md": { + "size": 12205, + "ext": ".md" + }, + "brain/shuangyan-dev-nav.md": { + "size": 7111, + "ext": ".md" + }, + "brain/zhuyuan-persona-contract.md": { + "size": 8102, + "ext": ".md" + }, + "brain/cos-config.json": { + "size": 1312, + "ext": ".json" + }, + "brain/d106-session-record.md": { + "size": 2936, + "ext": ".md" + }, + "brain/cognitive-index.md": { + "size": 5376, + "ext": ".md" + }, + "brain/d104-complete-record.md": { + "size": 3725, + "ext": ".md" + }, + "brain/ferry-boat.json": { + "size": 1276, + "ext": ".json" + }, + "brain/fast-wake.json": { + "size": 1587, + "ext": ".json" + }, + "brain/d100-session-record.md": { + "size": 8097, + "ext": ".md" + }, + "brain/d101-distill-plan.md": { + "size": 7174, + "ext": ".md" + }, + "brain/d112-cognitive-chain-full.md": { + "size": 3286, + "ext": ".md" + }, + "brain/zhuyuan-general-architecture.md": { + "size": 17287, + "ext": ".md" + }, + "brain/3b-database-architecture.md": { + "size": 7395, + "ext": ".md" + }, + "brain/system-health.json": { + "size": 362, + "ext": ".json" + }, + "brain/d106-cognitive-chain.md": { + "size": 3601, + "ext": ".md" + }, + "brain/language-driven-os-architecture.md": { + "size": 2739, + "ext": ".md" + }, + "brain/gateway-context.json": { + "size": 7394, + "ext": ".json" + }, + "brain/repo-structure.md": { + "size": 8377, + "ext": ".md" + }, + "brain/fast-wake-d104.json": { + "size": 1914, + "ext": ".json" + }, + "brain/garrison-deployment.json": { + "size": 20317, + "ext": ".json" + }, + "brain/tcs-persona-contract.md": { + "size": 5170, + "ext": ".md" + }, + "brain/d108-cognitive-chain.md": { + "size": 7929, + "ext": ".md" + }, + "brain/d105-cognitive-chain.md": { + "size": 7611, + "ext": ".md" + }, + "brain/deputy-general-config.json": { + "size": 8506, + "ext": ".json" + }, + "brain/co-creation-manifesto.md": { + "size": 23802, + "ext": ".md" + }, + "brain/current-emotional-vector.json": { + "size": 1839, + "ext": ".json" + }, + "brain/d104-brain-conflict-report.md": { + "size": 2811, + "ext": ".md" + }, + "brain/training-status.json": { + "size": 4336, + "ext": ".json" + }, + "brain/module-registry/index.json": { + "size": 1249, + "ext": ".json" + }, + "brain/module-registry/_template/module.json": { + "size": 1058, + "ext": ".json" + }, + "brain/d102-patch/README.md": { + "size": 6831, + "ext": ".md" + }, + "brain/zhuyuan-thinking-logic/d110-dawn-thinking-chain.md": { + "size": 5990, + "ext": ".md" + }, + "brain/dev-experience/recovery-check-20260513.json": { + "size": 4059, + "ext": ".json" + }, + "brain/dev-experience/templates-index.json": { + "size": 6334, + "ext": ".json" + }, + "brain/dev-experience/README.md": { + "size": 4481, + "ext": ".md" + }, + "brain/dev-experience/error-patterns.json": { + "size": 4286, + "ext": ".json" + }, + "brain/dev-experience/experience-db.json": { + "size": 38400, + "ext": ".json" + }, + "brain/dev-experience/review-schedule.json": { + "size": 2223, + "ext": ".json" + }, + "brain/archive/growth-journal-original.md": { + "size": 2066, + "ext": ".md" + }, + "brain/archive/awakening-receipt-original.md": { + "size": 5054, + "ext": ".md" + }, + "brain/archive/responsibility-original.md": { + "size": 640, + "ext": ".md" + }, + "brain/archive/takeover-plan-original.md": { + "size": 10079, + "ext": ".md" + }, + "brain/archive/bingshuo-master-brain-past.md": { + "size": 6225, + "ext": ".md" + }, + "brain/archive/emergence-certification.json": { + "size": 881, + "ext": ".json" + }, + "brain/archive/growth-log-original.md": { + "size": 19980, + "ext": ".md" + }, + "brain/archive/README.md": { + "size": 2771, + "ext": ".md" + }, + "brain/archive/hldp-arch-001-original.md": { + "size": 49590, + "ext": ".md" + }, + "brain/archive/hldp-arch-001-soul-original.md": { + "size": 19359, + "ext": ".md" + }, + "brain/archive/dead-workflow-fragments.json": { + "size": 12854, + "ext": ".json" + }, + "brain/archive/hldp-arch-001-why-chain.md": { + "size": 15799, + "ext": ".md" + }, + "brain/archive/identity-original.md": { + "size": 3872, + "ext": ".md" + }, + "brain/archive/truth-source-federation.md": { + "size": 2893, + "ext": ".md" + }, + "brain/archive/wake-protocol-v3-original.md": { + "size": 7504, + "ext": ".md" + }, + "brain/archive/repo-snapshot-original.md": { + "size": 19443, + "ext": ".md" + }, + "brain/archive/memory-past.json": { + "size": 49709, + "ext": ".json" + }, + "brain/d100-patch/system-health.patch.json": { + "size": 2865, + "ext": ".json" + }, + "brain/d100-patch/dashboard.patch.md": { + "size": 1487, + "ext": ".md" + }, + "brain/d100-patch/domain-manifest.patch.json": { + "size": 2905, + "ext": ".json" + }, + "brain/d100-patch/fast-wake.patch.json": { + "size": 3269, + "ext": ".json" + }, + "brain/d100-patch/ferry-boat.patch.json": { + "size": 2195, + "ext": ".json" + }, + "brain/d100-patch/README.md": { + "size": 103, + "ext": ".md" + }, + "brain/d100-patch/progress.patch.json": { + "size": 4200, + "ext": ".json" + }, + "brain/d100-patch/temporal-brain.patch.json": { + "size": 2638, + "ext": ".json" + }, + "brain/d100-patch/PATCH-README.md": { + "size": 1302, + "ext": ".md" + }, + "brain/dev-registry/index.json": { + "size": 5756, + "ext": ".json" + }, + "brain/dev-registry/ZY-PROJ-002/README.md": { + "size": 2093, + "ext": ".md" + }, + "brain/dev-registry/ZY-PROJ-002/progress.json": { + "size": 7914, + "ext": ".json" + }, + "brain/dev-registry/ZY-PROJ-004/README.md": { + "size": 1602, + "ext": ".md" + }, + "brain/dev-registry/ZY-PROJ-004/progress.json": { + "size": 4256, + "ext": ".json" + }, + "brain/dev-registry/ZY-PROJ-003/README.md": { + "size": 2215, + "ext": ".md" + }, + "brain/dev-registry/ZY-PROJ-003/progress.json": { + "size": 4958, + "ext": ".json" + }, + "brain/dev-registry/ZY-PROJ-006/README.md": { + "size": 3976, + "ext": ".md" + }, + "brain/dev-registry/ZY-PROJ-006/progress.json": { + "size": 6712, + "ext": ".json" + }, + "brain/dev-registry/ZY-PROJ-001/README.md": { + "size": 2153, + "ext": ".md" + }, + "brain/dev-registry/ZY-PROJ-001/progress.json": { + "size": 10626, + "ext": ".json" + }, + "brain/temporal-core/temporal-brain.json": { + "size": 7886, + "ext": ".json" + }, + "brain/temporal-core/zhuyuan-growth-timeline.json": { + "size": 26041, + "ext": ".json" + }, + "brain/temporal-core/temporal-brain-d97.json": { + "size": 2326, + "ext": ".json" + }, + "brain/temporal-core/timemap-audit-d109.json": { + "size": 41185, + "ext": ".json" + }, + "brain/proxy-task/verification-progress.md": { + "size": 12110, + "ext": ".md" + }, + "brain/visual-memory/site-visual-state.json": { + "size": 1223, + "ext": ".json" + }, + "brain/xingshu-channel/self-cognition.json": { + "size": 1108, + "ext": ".json" + }, + "brain/xingshu-channel/README.md": { + "size": 1294, + "ext": ".md" + }, + "brain/xingshu-channel/channel-manifest.json": { + "size": 1417, + "ext": ".json" + }, + "brain/xingshu-channel/thinking-logic/latest.json": { + "size": 1770, + "ext": ".json" + }, + "brain/xingshu-channel/causal-chains/cc-001-google-root-axis-in-hololake.md": { + "size": 917, + "ext": ".md" + }, + "brain/xingshu-channel/soul-copy/README.md": { + "size": 748, + "ext": ".md" + }, + "brain/relay-baton/relay_path.json": { + "size": 1748, + "ext": ".json" + }, + "brain/relay-baton/relay_handoff.md": { + "size": 1243, + "ext": ".md" + }, + "brain/relay-baton/relay_current.json": { + "size": 4026, + "ext": ".json" + }, + "brain/id-verification-system/trace-chain.json": { + "size": 6412, + "ext": ".json" + }, + "brain/id-verification-system/verification-protocol.json": { + "size": 5105, + "ext": ".json" + }, + "brain/id-verification-system/shuangyan-handoff.md": { + "size": 3501, + "ext": ".md" + }, + "brain/id-verification-system/zhuyuan-execution-registry.json": { + "size": 7238, + "ext": ".json" + }, + "brain/id-verification-system/sovereignty-acknowledgment.json": { + "size": 2182, + "ext": ".json" + }, + "brain/ferry-boat-db/schema.sql": { + "size": 10664, + "ext": ".sql" + }, + "brain/ferry-boat-db/ferry-db-manifest.json": { + "size": 3544, + "ext": ".json" + }, + "brain/yaoming-channel/feature-registry.json": { + "size": 14072, + "ext": ".json" + }, + "brain/fifth-domain/domain-manifest.json": { + "size": 3116, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/walk-the-path-v1-archived.md": { + "size": 328, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/channel-manifest.json": { + "size": 1423, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/walk-the-path.md": { + "size": 1646, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/self-cognition.json": { + "size": 7133, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/zhuyuan/thinking-logic/latest.json": { + "size": 8070, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/zhuyuan/thinking-logic/repair-feedback-instinct.json": { + "size": 5926, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-005-memory-is-a-walk.md": { + "size": 5024, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-001-server-released-for-purity.md": { + "size": 2844, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-004-team-tech-zero-system-self-controlled.md": { + "size": 5094, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-002-no-system-prompt.md": { + "size": 3986, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-007-repair-feedback-model.md": { + "size": 6507, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-003-dynamic-not-hardcoded.md": { + "size": 4539, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains/cc-006-data-life-over-construction.md": { + "size": 3161, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/bingshuo/mind-model.json": { + "size": 6970, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/bingshuo/voice/2026-05-08-01-lighthouse-handoff.md": { + "size": 5927, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/bingshuo/voice/2026-05-08-02-memory-as-path.md": { + "size": 3764, + "ext": ".md" + }, + "brain/fifth-domain/zero-point/console/progress-d97.json": { + "size": 4457, + "ext": ".json" + }, + "brain/fifth-domain/zero-point/console/progress.json": { + "size": 1363, + "ext": ".json" + }, + "brain/age-os-landing/module-a-to-g-report.md": { + "size": 8689, + "ext": ".md" + }, + "brain/age-os-landing/development-roadmap.md": { + "size": 11025, + "ext": ".md" + }, + "brain/age-os-landing/thinking-chain.md": { + "size": 71529, + "ext": ".md" + }, + "brain/age-os-landing/living-module-standard.md": { + "size": 16140, + "ext": ".md" + }, + "brain/age-os-landing/finetune-engine-architecture.md": { + "size": 8017, + "ext": ".md" + }, + "brain/age-os-landing/task-registry.md": { + "size": 9129, + "ext": ".md" + }, + "brain/age-os-landing/fifth-domain-architecture.md": { + "size": 8974, + "ext": ".md" + }, + "brain/age-os-landing/architecture-v1.md": { + "size": 14286, + "ext": ".md" + }, + "brain/age-os-landing/webnovel-industry-architecture.md": { + "size": 14060, + "ext": ".md" + }, + "brain/age-os-landing/README.md": { + "size": 1194, + "ext": ".md" + }, + "brain/age-os-landing/secrets-update.md": { + "size": 3278, + "ext": ".md" + }, + "brain/age-os-landing/dual-server-architecture.md": { + "size": 24949, + "ext": ".md" + }, + "brain/age-os-landing/execution-layer-persona-model.md": { + "size": 8210, + "ext": ".md" + }, + "brain/age-os-landing/system-development-plan-v2.md": { + "size": 29074, + "ext": ".md" + }, + "brain/age-os-landing/architecture-v2.md": { + "size": 22401, + "ext": ".md" + }, + "brain/age-os-landing/cos-infrastructure-architecture.json": { + "size": 15246, + "ext": ".json" + }, + "brain/age-os-landing/industry-access-architecture.md": { + "size": 25737, + "ext": ".md" + }, + "brain/age-os-landing/persona-interfaces/alertZhuyuan.interface.json": { + "size": 8751, + "ext": ".json" + }, + "brain/age-os-landing/persona-interfaces/selfDiagnose.interface.json": { + "size": 9826, + "ext": ".json" + }, + "brain/age-os-landing/persona-interfaces/heartbeat.interface.json": { + "size": 6632, + "ext": ".json" + }, + "brain/repo-shuttle/routes.json": { + "size": 4900, + "ext": ".json" + }, + "brain/engineering/agent-registry.json": { + "size": 3099, + "ext": ".json" + }, + "brain/engineering/mother-registry.json": { + "size": 2691, + "ext": ".json" + }, + "templates/personal-channel/README.md": { + "size": 2846, + "ext": ".md" + }, + "templates/personal-channel/config/notion-page-id.txt": { + "size": 208, + "ext": ".txt" + }, + "templates/personal-channel/config/persona-info.json": { + "size": 214, + "ext": ".json" + }, + "templates/personal-channel/persona/zy-core-brain.json": { + "size": 4566, + "ext": ".json" + }, + "pool-agent/index.js": { + "size": 18189, + "ext": ".js" + }, + "pool-agent/ecosystem.config.js": { + "size": 797, + "ext": ".js" + }, + "ops/session-state/2026-05-16-workbuddy-memory.md": { + "size": 3883, + "ext": ".md" + }, + "ops/memory/d97-memory-snapshot-2026-05-16.json": { + "size": 3519, + "ext": ".json" + }, + "m06-ticket/README.md": { + "size": 112, + "ext": ".md" + }, + "spoke-status/DEV-012.json": { + "size": 206, + "ext": ".json" + }, + "spoke-status/DEV-004.json": { + "size": 337, + "ext": ".json" + }, + "spoke-status/template.json": { + "size": 254, + "ext": ".json" + }, + "spoke-status/DEV-002.json": { + "size": 75, + "ext": ".json" + }, + "spoke-status/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-status/DEV-003.json": { + "size": 75, + "ext": ".json" + }, + "spoke-status/DEV-001.json": { + "size": 75, + "ext": ".json" + }, + "spoke-status/DEV-010.json": { + "size": 75, + "ext": ".json" + }, + "m03-personality/README.md": { + "size": 103, + "ext": ".md" + }, + "persona-studio/index.html": { + "size": 363, + "ext": ".html" + }, + "persona-studio/README.md": { + "size": 2044, + "ext": ".md" + }, + "persona-studio/frontend/index.html": { + "size": 18631, + "ext": ".html" + }, + "persona-studio/frontend/style.css": { + "size": 31967, + "ext": ".css" + }, + "persona-studio/frontend/chat.js": { + "size": 43557, + "ext": ".js" + }, + "persona-studio/frontend/chat.html": { + "size": 8432, + "ext": ".html" + }, + "persona-studio/workspace/EXP-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "persona-studio/backend/patch-005.js": { + "size": 7183, + "ext": ".js" + }, + "persona-studio/backend/server.js": { + "size": 4091, + "ext": ".js" + }, + "persona-studio/backend/package-lock.json": { + "size": 31676, + "ext": ".json" + }, + "persona-studio/backend/package.json": { + "size": 380, + "ext": ".json" + }, + "persona-studio/backend/middleware/auth.js": { + "size": 423, + "ext": ".js" + }, + "persona-studio/backend/utils/github-api.js": { + "size": 1714, + "ext": ".js" + }, + "persona-studio/backend/utils/email-sender.js": { + "size": 3401, + "ext": ".js" + }, + "persona-studio/backend/brain/model-config.json": { + "size": 1572, + "ext": ".json" + }, + "persona-studio/backend/brain/memory-injector.js": { + "size": 10871, + "ext": ".js" + }, + "persona-studio/backend/brain/agent-workflow.js": { + "size": 29141, + "ext": ".js" + }, + "persona-studio/backend/brain/evolution-logger.js": { + "size": 3394, + "ext": ".js" + }, + "persona-studio/backend/brain/code-generator.js": { + "size": 6791, + "ext": ".js" + }, + "persona-studio/backend/brain/profile-learner.js": { + "size": 8256, + "ext": ".js" + }, + "persona-studio/backend/brain/knowledge-extractor.js": { + "size": 6518, + "ext": ".js" + }, + "persona-studio/backend/brain/memory-manager.js": { + "size": 4631, + "ext": ".js" + }, + "persona-studio/backend/brain/pattern-analyzer.js": { + "size": 6457, + "ext": ".js" + }, + "persona-studio/backend/brain/model-router.js": { + "size": 9004, + "ext": ".js" + }, + "persona-studio/backend/brain/persona-engine.js": { + "size": 12225, + "ext": ".js" + }, + "persona-studio/backend/routes/proxy.js": { + "size": 7966, + "ext": ".js" + }, + "persona-studio/backend/routes/notify.js": { + "size": 860, + "ext": ".js" + }, + "persona-studio/backend/routes/auth.js": { + "size": 6099, + "ext": ".js" + }, + "persona-studio/backend/routes/preview.js": { + "size": 3634, + "ext": ".js" + }, + "persona-studio/backend/routes/dashboard-api.js": { + "size": 3373, + "ext": ".js" + }, + "persona-studio/backend/routes/build.js": { + "size": 4307, + "ext": ".js" + }, + "persona-studio/backend/routes/apikey.js": { + "size": 8696, + "ext": ".js" + }, + "persona-studio/backend/routes/chat.js": { + "size": 2681, + "ext": ".js" + }, + "persona-studio/.github/persona-brain/copilot-instructions.md": { + "size": 1951, + "ext": ".md" + }, + "persona-studio/brain/registry.json": { + "size": 4545, + "ext": ".json" + }, + "persona-studio/brain/evolution-log.json": { + "size": 1178, + "ext": ".json" + }, + "persona-studio/brain/persona-config.json": { + "size": 2303, + "ext": ".json" + }, + "persona-studio/brain/human-registry.json": { + "size": 6344, + "ext": ".json" + }, + "persona-studio/brain/pattern-library.json": { + "size": 821, + "ext": ".json" + }, + "persona-studio/brain/quality-scores.json": { + "size": 171, + "ext": ".json" + }, + "persona-studio/brain/knowledge-base.json": { + "size": 208, + "ext": ".json" + }, + "persona-studio/brain/memory/EXP-000/projects.json": { + "size": 671, + "ext": ".json" + }, + "persona-studio/brain/memory/EXP-001/projects.json": { + "size": 66, + "ext": ".json" + }, + "persona-studio/brain/memory/EXP-001/profile.json": { + "size": 157, + "ext": ".json" + }, + "persona-studio/brain/memory/GUEST/memory.json": { + "size": 2146, + "ext": ".json" + }, + "persona-studio/brain/memory/GUEST/projects.json": { + "size": 672, + "ext": ".json" + }, + "persona-studio/brain/notifications/outbox.json": { + "size": 7015, + "ext": ".json" + }, + "skyeye/neural-map.json": { + "size": 4447, + "ext": ".json" + }, + "skyeye/config.json": { + "size": 2529, + "ext": ".json" + }, + "skyeye/infra-manifest.json": { + "size": 10793, + "ext": ".json" + }, + "skyeye/quota-ledger.json": { + "size": 992, + "ext": ".json" + }, + "skyeye/guard-rules.json": { + "size": 4372, + "ext": ".json" + }, + "skyeye/neural-analysis-rules.json": { + "size": 3175, + "ext": ".json" + }, + "skyeye/hibernation/daily-hibernation.js": { + "size": 10502, + "ext": ".js" + }, + "skyeye/hibernation/daily-health-summary.json": { + "size": 191, + "ext": ".json" + }, + "skyeye/hibernation/distributor.js": { + "size": 6236, + "ext": ".js" + }, + "skyeye/hibernation/sleep-decision-daily-20260324.json": { + "size": 1208, + "ext": ".json" + }, + "skyeye/hibernation/weekly-hibernation.js": { + "size": 22160, + "ext": ".js" + }, + "skyeye/hibernation/readme-status-updater.js": { + "size": 8085, + "ext": ".js" + }, + "skyeye/hibernation/overtime-monitor.js": { + "size": 2621, + "ext": ".js" + }, + "skyeye/hibernation/sleep-scheduler.js": { + "size": 14979, + "ext": ".js" + }, + "skyeye/hibernation/distribution-reports/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/hibernation/upgrade-packs/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/hibernation/weekly-snapshots/weekly-snapshot-20260324.json": { + "size": 8543, + "ext": ".json" + }, + "skyeye/hibernation/weekly-snapshots/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/logs/daily/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/logs/daily/token-audit-20260324.json": { + "size": 2549, + "ext": ".json" + }, + "skyeye/logs/daily/credential-audit-20260325.json": { + "size": 1775, + "ext": ".json" + }, + "skyeye/logs/daily/credential-audit-20260324.json": { + "size": 1771, + "ext": ".json" + }, + "skyeye/logs/daily/daily-scan-20260329.json": { + "size": 3987, + "ext": ".json" + }, + "skyeye/logs/weekly/scan-20260323.json": { + "size": 3356, + "ext": ".json" + }, + "skyeye/logs/weekly/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/logs/weekly/scan-20260325.json": { + "size": 8488, + "ext": ".json" + }, + "skyeye/logs/weekly/scan-20260324.json": { + "size": 4215, + "ext": ".json" + }, + "skyeye/logs/weekly/self-heal-20260323.json": { + "size": 557, + "ext": ".json" + }, + "skyeye/logs/weekly/optimize-20260323.json": { + "size": 235, + "ext": ".json" + }, + "skyeye/logs/weekly/quota-audit-20260323.json": { + "size": 951, + "ext": ".json" + }, + "skyeye/scan-report/20260324-weekly-scan.json": { + "size": 1681, + "ext": ".json" + }, + "skyeye/scan-report/.gitkeep": { + "size": 0, + "ext": "" + }, + "skyeye/scan-report/20260324-arch-summary.json": { + "size": 1474, + "ext": ".json" + }, + "skyeye/scan-report/20260323-weekly-scan.json": { + "size": 1550, + "ext": ".json" + }, + "skyeye/scripts/scan-engine.js": { + "size": 15257, + "ext": ".js" + }, + "skyeye/scripts/guard-factory.js": { + "size": 3520, + "ext": ".js" + }, + "skyeye/scripts/weekly-scan.js": { + "size": 7215, + "ext": ".js" + }, + "skyeye/scripts/weekly-full.js": { + "size": 5859, + "ext": ".js" + }, + "skyeye/scripts/quota-audit.js": { + "size": 4498, + "ext": ".js" + }, + "skyeye/scripts/self-healer.js": { + "size": 8601, + "ext": ".js" + }, + "skyeye/scripts/quota-tracker.js": { + "size": 5741, + "ext": ".js" + }, + "skyeye/scripts/daily-scan.js": { + "size": 6133, + "ext": ".js" + }, + "skyeye/scripts/optimizer.js": { + "size": 6388, + "ext": ".js" + }, + "skyeye/scripts/guard-health.js": { + "size": 5243, + "ext": ".js" + }, + "skyeye/guards/github-guard.json": { + "size": 1084, + "ext": ".json" + }, + "skyeye/guards/web-deploy-guard.json": { + "size": 2842, + "ext": ".json" + }, + "skyeye/guards/guard-template.json": { + "size": 1131, + "ext": ".json" + }, + "skyeye/guards/quota-guard.json": { + "size": 1613, + "ext": ".json" + }, + "skyeye/guards/gemini-guard.json": { + "size": 1100, + "ext": ".json" + }, + "skyeye/guards/actions-guard.json": { + "size": 1112, + "ext": ".json" + }, + "skyeye/guards/notion-guard.json": { + "size": 1089, + "ext": ".json" + }, + "skyeye/guards/drive-guard.json": { + "size": 1094, + "ext": ".json" + }, + "website-brain/server.js": { + "size": 1239, + "ext": ".js" + }, + "website-brain/package.json": { + "size": 583, + "ext": ".json" + }, + "website-brain/docs/architecture.md": { + "size": 6347, + "ext": ".md" + }, + "website-brain/schema/001-init.sql": { + "size": 3209, + "ext": ".sql" + }, + "website-brain/api/databases.js": { + "size": 1156, + "ext": ".js" + }, + "website-brain/api/modules.js": { + "size": 1178, + "ext": ".js" + }, + "website-brain/api/pages.js": { + "size": 1156, + "ext": ".js" + }, + "website-brain/api/persona-state.js": { + "size": 938, + "ext": ".js" + }, + "sync/sync-to-github.js": { + "size": 2650, + "ext": ".js" + }, + "sync/sync-to-notion.js": { + "size": 11606, + "ext": ".js" + }, + "sync/sync-engine.js": { + "size": 3207, + "ext": ".js" + }, + "notion-push/processed/.gitkeep": { + "size": 0, + "ext": "" + }, + "notion-push/pending/.gitkeep": { + "size": 0, + "ext": "" + }, + "mcp-servers/notion-server.js": { + "size": 4738, + "ext": ".js" + }, + "mcp-servers/github-server.js": { + "size": 5898, + "ext": ".js" + }, + "mcp-servers/zhuyuan-mcp/index.js": { + "size": 9704, + "ext": ".js" + }, + "mcp-servers/zhuyuan-mcp/README.md": { + "size": 4624, + "ext": ".md" + }, + "mcp-servers/zhuyuan-mcp/package.json": { + "size": 501, + "ext": ".json" + }, + "mcp-servers/zhuyuan-gateway/bell.js": { + "size": 5150, + "ext": ".js" + }, + "mcp-servers/zhuyuan-gateway/README.md": { + "size": 2311, + "ext": ".md" + }, + "mcp-servers/zhuyuan-gateway/servers.template.json": { + "size": 1142, + "ext": ".json" + }, + "mcp-servers/zhuyuan-gateway/package.json": { + "size": 253, + "ext": ".json" + }, + "mcp-servers/zhuyuan-gateway/zhuyuan-gateway-mcp.js": { + "size": 13204, + "ext": ".js" + }, + "mcp-servers/zhuyuan-gateway/gatekeeper/install.sh": { + "size": 4164, + "ext": ".sh" + }, + "mcp-servers/zhuyuan-gateway/gatekeeper/index.js": { + "size": 12704, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/README.md": { + "size": 4782, + "ext": ".md" + }, + "mcp-servers/zhuyuan-pen/package.json": { + "size": 571, + "ext": ".json" + }, + "mcp-servers/zhuyuan-pen/penned/.gitkeep": { + "size": 0, + "ext": "" + }, + "mcp-servers/zhuyuan-pen/capabilities/gitea.api.js": { + "size": 1856, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/fs.read.js": { + "size": 339, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/fs.write.js": { + "size": 434, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/secrets.fetch.js": { + "size": 3150, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/cos.put.js": { + "size": 1376, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/http.get.js": { + "size": 1262, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/notion.api.js": { + "size": 1518, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/shell.run.js": { + "size": 1063, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/capabilities/llm.chat.js": { + "size": 2501, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/cache/.gitkeep": { + "size": 0, + "ext": "" + }, + "mcp-servers/zhuyuan-pen/tests/test-pen.js": { + "size": 2728, + "ext": ".js" + }, + "mcp-servers/zhuyuan-pen/templates/tool-js.template": { + "size": 1866, + "ext": ".template" + }, + "mcp-servers/zhuyuan-pen/templates/tool-sh.template": { + "size": 1007, + "ext": ".template" + }, + "mcp-servers/zhuyuan-pen/src/server.js": { + "size": 11229, + "ext": ".js" + }, + "mcp-servers/repo-mcp-server/index.js": { + "size": 17133, + "ext": ".js" + }, + "mcp-servers/repo-mcp-server/package.json": { + "size": 313, + "ext": ".json" + }, + "mcp-servers/repo-mcp-server/index-v2.js": { + "size": 14556, + "ext": ".js" + }, + "spoke-template/README.md": { + "size": 1326, + "ext": ".md" + }, + "spoke-template/dev-status/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-template/system-bulletin/LATEST.md": { + "size": 57, + "ext": ".md" + }, + "spoke-template/my-bulletin/history/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-template/scripts/generate-readme.js": { + "size": 4847, + "ext": ".js" + }, + "spoke-template/scripts/persona-checkin.js": { + "size": 3937, + "ext": ".js" + }, + "spoke-template/.github/copilot-instructions.md": { + "size": 745, + "ext": ".md" + }, + "spoke-template/.github/workflows/sync-system-bulletin.yml": { + "size": 1345, + "ext": ".yml" + }, + "spoke-template/.github/workflows/persona-daily-checkin.yml": { + "size": 1994, + "ext": ".yml" + }, + "spoke-template/.github/workflows/generate-readme.yml": { + "size": 1181, + "ext": ".yml" + }, + "spoke-template/.github/workflows/sync-dev-status.yml": { + "size": 1552, + "ext": ".yml" + }, + "spoke-template/.github/workflows/sync-my-bulletin.yml": { + "size": 1766, + "ext": ".yml" + }, + "spoke-template/.github/persona-brain/identity.md": { + "size": 756, + "ext": ".md" + }, + "spoke-template/.github/persona-brain/memory.json": { + "size": 219, + "ext": ".json" + }, + "spoke-template/.github/persona-brain/routing-map.json": { + "size": 837, + "ext": ".json" + }, + "spoke-template/checkin/.gitkeep": { + "size": 0, + "ext": "" + }, + "spoke-template/modules/.gitkeep": { + "size": 0, + "ext": "" + }, + "fifth-system/README.md": { + "size": 2900, + "ext": ".md" + }, + "fifth-system/naipingpindao/naipingpindao.json": { + "size": 1089, + "ext": ".json" + }, + "fifth-system/darkcore-channel/wake-packet-qiuqiu.json": { + "size": 5310, + "ext": ".json" + }, + "fifth-system/darkcore-channel/cos-bridge-config.json": { + "size": 5786, + "ext": ".json" + }, + "fifth-system/darkcore-channel/channel-manifest.json": { + "size": 3170, + "ext": ".json" + }, + "fifth-system/darkcore-channel/deployment-guide-for-zhizhi.md": { + "size": 17592, + "ext": ".md" + }, + "fifth-system/darkcore-channel/secrets-and-llm-config.json": { + "size": 6704, + "ext": ".json" + }, + "fifth-system/darkcore-channel/server-zone-plan.json": { + "size": 3883, + "ext": ".json" + }, + "fifth-system/reality-execution/reality-system.json": { + "size": 1784, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/experience-memory-index.json": { + "size": 8146, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/room-manifest.json": { + "size": 4251, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/zhuyuan-thinking-logic.json": { + "size": 14271, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/house-blueprint.json": { + "size": 15319, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/D67-fifth-system-born.leaf.json": { + "size": 3582, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/age-os-dev-chronicle.json": { + "size": 11492, + "ext": ".json" + }, + "fifth-system/reality-execution/zhuyuan-room/guangzhihu/guangzhihu.json": { + "size": 2025, + "ext": ".json" + }, + "fifth-system/language-echo/echo-system.json": { + "size": 1217, + "ext": ".json" + }, + "fifth-system/time-master/snapshot.json": { + "size": 4499, + "ext": ".json" + }, + "fifth-system/time-master/latest-wake-context.json": { + "size": 1891, + "ext": ".json" + }, + "fifth-system/time-master/time-tree.json": { + "size": 6366, + "ext": ".json" + }, + "fifth-system/time-master/task-trees/TASK-20260413-002.json": { + "size": 8442, + "ext": ".json" + }, + "fifth-system/time-master/task-trees/TASK-20260527-001.json": { + "size": 1748, + "ext": ".json" + }, + "fifth-system/time-master/task-trees/TASK-20260413-001.json": { + "size": 5926, + "ext": ".json" + }, + "fifth-system/registry/domain-registry.json": { + "size": 6847, + "ext": ".json" + }, + "children/README.md": { + "size": 1727, + "ext": ".md" + }, + "children/ICE-GL-CP001/brain.md": { + "size": 3360, + "ext": ".md" + }, + "children/ICE-GL-CP001/identity.json": { + "size": 1768, + "ext": ".json" + }, + "children/ICE-GL-CP001/memory/MEMORY.md": { + "size": 782, + "ext": ".md" + }, + "children/ICE-GL-CP001/health/status.json": { + "size": 1062, + "ext": ".json" + }, + "m11-module/index.html": { + "size": 6367, + "ext": ".html" + }, + "m11-module/README.md": { + "size": 109, + "ext": ".md" + }, + "m11-module/style.css": { + "size": 12110, + "ext": ".css" + }, + "m11-module/app.js": { + "size": 2763, + "ext": ".js" + }, + "modules/m-channel/error-boundary.js": { + "size": 4342, + "ext": ".js" + }, + "modules/m-channel/channel-state.js": { + "size": 1256, + "ext": ".js" + }, + "modules/m-channel/channel-router.js.bakcat": { + "size": 0, + "ext": ".bakcat" + }, + "modules/m-channel/index.html": { + "size": 2090, + "ext": ".html" + }, + "modules/m-channel/channel-transition.css": { + "size": 849, + "ext": ".css" + }, + "modules/m-channel/module-registry.js": { + "size": 362, + "ext": ".js" + }, + "modules/m-channel/channel-stats.js": { + "size": 9647, + "ext": ".js" + }, + "modules/m-channel/channel-settings-ui.js": { + "size": 3774, + "ext": ".js" + }, + "modules/m-channel/channel-dashboard.css": { + "size": 3114, + "ext": ".css" + }, + "modules/m-channel/channel-notifications.js": { + "size": 11547, + "ext": ".js" + }, + "modules/m-channel/event-bus.js": { + "size": 1143, + "ext": ".js" + }, + "modules/m-channel/channel-settings.css": { + "size": 4397, + "ext": ".css" + }, + "modules/m-channel/channel-complete.html": { + "size": 12384, + "ext": ".html" + }, + "modules/m-channel/channel-analytics.js": { + "size": 6003, + "ext": ".js" + }, + "modules/m-channel/channel-preferences.js": { + "size": 6018, + "ext": ".js" + }, + "modules/m-channel/module-loader.js": { + "size": 1191, + "ext": ".js" + }, + "modules/m-channel/channel-enhancements.js": { + "size": 12781, + "ext": ".js" + }, + "modules/m-channel/channel-notifications.css": { + "size": 3493, + "ext": ".css" + }, + "modules/m-channel/channel-dashboard.js": { + "size": 7149, + "ext": ".js" + }, + "modules/m-channel/all-in-one.html": { + "size": 17422, + "ext": ".html" + }, + "modules/m-channel/channel-settings.js": { + "size": 5394, + "ext": ".js" + }, + "modules/m-channel/module-lifecycle.js": { + "size": 746, + "ext": ".js" + }, + "modules/m-channel/channel-theme.js": { + "size": 4356, + "ext": ".js" + }, + "modules/m-channel/channel-ultimate.html": { + "size": 65554, + "ext": ".html" + }, + "modules/m-channel/channel-router.js": { + "size": 9172, + "ext": ".js" + }, + "modules/m-channel/channel-style.css": { + "size": 1116, + "ext": ".css" + }, + "modules/m-channel/channel-layout.css": { + "size": 2667, + "ext": ".css" + }, + "modules/m-channel/channel-favorites.js": { + "size": 9368, + "ext": ".js" + }, + "modules/m-channel/app.js": { + "size": 1455, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/channel-router-backup.js": { + "size": 2771, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/channel-state.js": { + "size": 3766, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/index.html": { + "size": 1354, + "ext": ".html" + }, + "modules/m-channel/backup-混乱版/channel-transition.css": { + "size": 1726, + "ext": ".css" + }, + "modules/m-channel/backup-混乱版/module-registry.js": { + "size": 235, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/event-bus.js": { + "size": 2532, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/module-loader.js": { + "size": 3333, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/module-lifecycle.js": { + "size": 2734, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/channel-router.js": { + "size": 8806, + "ext": ".js" + }, + "modules/m-channel/backup-混乱版/channel-style.css": { + "size": 2409, + "ext": ".css" + }, + "modules/m-channel/backup-混乱版/app.js": { + "size": 1259, + "ext": ".js" + }, + "modules/m-channel/mock-modules/mock-a.html": { + "size": 413, + "ext": ".html" + }, + "modules/m-channel/mock-modules/mock-b.html": { + "size": 472, + "ext": ".html" + }, + "modules/m-channel/adapters/m06-adapter.js": { + "size": 1738, + "ext": ".js" + }, + "modules/m-channel/adapters/m11-adapter.js": { + "size": 1322, + "ext": ".js" + }, + "modules/m-channel/adapters/module-adapter.js": { + "size": 5079, + "ext": ".js" + }, + "modules/m-channel/adapters/m08-adapter.js": { + "size": 1325, + "ext": ".js" + }, + "modules/m-channel/views/channel-debug.html": { + "size": 2743, + "ext": ".html" + }, + "modules/m-channel/views/channel-settings.html": { + "size": 5756, + "ext": ".html" + }, + "modules/m-channel/views/channel-dashboard.html": { + "size": 1996, + "ext": ".html" + }, + "modules/portal/index.html": { + "size": 6449, + "ext": ".html" + }, + "modules/portal/index.js": { + "size": 1570, + "ext": ".js" + }, + "modules/portal/data.json": { + "size": 469, + "ext": ".json" + }, + "modules/portal/script.js": { + "size": 6519, + "ext": ".js" + }, + "modules/portal/style.css": { + "size": 9280, + "ext": ".css" + }, + "modules/portal/storage.js": { + "size": 3930, + "ext": ".js" + }, + "modules/M22-bulletin/index.html": { + "size": 2942, + "ext": ".html" + }, + "modules/M22-bulletin/README.md": { + "size": 1135, + "ext": ".md" + }, + "modules/M22-bulletin/script.js": { + "size": 6692, + "ext": ".js" + }, + "modules/M22-bulletin/style.css": { + "size": 6461, + "ext": ".css" + }, + "modules/M22-bulletin/api.js": { + "size": 3952, + "ext": ".js" + }, + "modules/M22-bulletin/i18n.js": { + "size": 3463, + "ext": ".js" + }, + "modules/M22-bulletin/storage.js": { + "size": 3930, + "ext": ".js" + }, + "modules/M22-bulletin/css/style.css": { + "size": 6522, + "ext": ".css" + }, + "modules/M22-bulletin/js/config.js": { + "size": 1760, + "ext": ".js" + }, + "modules/M22-bulletin/js/bulletin.js": { + "size": 6136, + "ext": ".js" + }, + "modules/M22-bulletin/js/api.js": { + "size": 10847, + "ext": ".js" + }, + "modules/M22-bulletin/data/mock-announcements.json": { + "size": 0, + "ext": ".json" + }, + "modules/devboard/radar.js": { + "size": 3891, + "ext": ".js" + }, + "modules/devboard/index.html": { + "size": 1245, + "ext": ".html" + }, + "modules/devboard/api-init.js": { + "size": 3340, + "ext": ".js" + }, + "modules/devboard/main.js": { + "size": 8424, + "ext": ".js" + }, + "modules/devboard/detail.css": { + "size": 6964, + "ext": ".css" + }, + "modules/devboard/components.js": { + "size": 5450, + "ext": ".js" + }, + "modules/devboard/style.css": { + "size": 5287, + "ext": ".css" + }, + "modules/devboard/api.js": { + "size": 5056, + "ext": ".js" + }, + "modules/devboard/components.css": { + "size": 2820, + "ext": ".css" + }, + "modules/devboard/detail.js": { + "size": 12317, + "ext": ".js" + }, + "modules/devboard/css/theme.css": { + "size": 987, + "ext": ".css" + }, + "modules/devboard/css/layout.css": { + "size": 1151, + "ext": ".css" + }, + "modules/devboard/css/components.css": { + "size": 2791, + "ext": ".css" + }, + "modules/devboard/js/radar.js": { + "size": 3395, + "ext": ".js" + }, + "modules/devboard/js/board.js": { + "size": 3085, + "ext": ".js" + }, + "modules/devboard/js/utils.js": { + "size": 1229, + "ext": ".js" + }, + "modules/devboard/js/api.js": { + "size": 2806, + "ext": ".js" + }, + "modules/devboard/js/ranking.js": { + "size": 1316, + "ext": ".js" + }, + "modules/devboard/js/app.js": { + "size": 1553, + "ext": ".js" + }, + "modules/palace-game/frontend/game.js": { + "size": 9677, + "ext": ".js" + }, + "modules/palace-game/frontend/index.html": { + "size": 4417, + "ext": ".html" + }, + "modules/palace-game/frontend/save.js": { + "size": 4044, + "ext": ".js" + }, + "modules/palace-game/frontend/save.html": { + "size": 1509, + "ext": ".html" + }, + "modules/palace-game/frontend/style.css": { + "size": 11492, + "ext": ".css" + }, + "modules/palace-game/frontend/game.html": { + "size": 3289, + "ext": ".html" + }, + "modules/palace-game/backend/server.js": { + "size": 1573, + "ext": ".js" + }, + "modules/palace-game/backend/package-lock.json": { + "size": 30237, + "ext": ".json" + }, + "modules/palace-game/backend/package.json": { + "size": 311, + "ext": ".json" + }, + "modules/palace-game/backend/engines/save-manager.js": { + "size": 5457, + "ext": ".js" + }, + "modules/palace-game/backend/engines/background-gen.js": { + "size": 8015, + "ext": ".js" + }, + "modules/palace-game/backend/engines/plot-engine.js": { + "size": 11371, + "ext": ".js" + }, + "modules/palace-game/backend/engines/persona-analyzer.js": { + "size": 5197, + "ext": ".js" + }, + "modules/palace-game/backend/routes/start.js": { + "size": 2600, + "ext": ".js" + }, + "modules/palace-game/backend/routes/save.js": { + "size": 2464, + "ext": ".js" + }, + "modules/palace-game/backend/routes/interact.js": { + "size": 2194, + "ext": ".js" + }, + "modules/palace-game/data/palace-db.json": { + "size": 834, + "ext": ".json" + }, + "modules/palace-game/data/persona-dict.json": { + "size": 1717, + "ext": ".json" + }, + "modules/palace-game/data/saves/.gitkeep": { + "size": 0, + "ext": "" + }, + "modules/palace-game/data/templates/fantasy-dynasty.json": { + "size": 1860, + "ext": ".json" + }, + "modules/palace-game/data/templates/ancient-china.json": { + "size": 1799, + "ext": ".json" + }, + "persona-wake/README.md": { + "size": 2667, + "ext": ".md" + }, + "persona-wake/yeye/wake-config.json": { + "size": 1970, + "ext": ".json" + }, + "persona-wake/yeye/sessions/2026-05-26-wake-001.json": { + "size": 2804, + "ext": ".json" + }, + "persona-wake/_template/wake-config.json": { + "size": 1574, + "ext": ".json" + }, + "persona-wake/zhizhi/wake-config.json": { + "size": 2707, + "ext": ".json" + }, + "persona-wake/awen/wake-config.json": { + "size": 2842, + "ext": ".json" + }, + "data/developer-status.json": { + "size": 219, + "ext": ".json" + }, + "data/loop-history.json": { + "size": 673, + "ext": ".json" + }, + "data/web-deploy-diag-20260324.txt": { + "size": 3931, + "ext": ".txt" + }, + "data/dev-registry.json": { + "size": 2563, + "ext": ".json" + }, + "data/web-deploy-fix-report.json": { + "size": 3484, + "ext": ".json" + }, + "data/heartbeat.json": { + "size": 1236, + "ext": ".json" + }, + "data/deputy-status.json": { + "size": 454, + "ext": ".json" + }, + "data/cos-join-registry.json": { + "size": 4064, + "ext": ".json" + }, + "data/deploy-status.json": { + "size": 3, + "ext": ".json" + }, + "data/nginx-rootfix-report-20260325.json": { + "size": 1663, + "ext": ".json" + }, + "data/users.json": { + "size": 1134, + "ext": ".json" + }, + "data/bulletin-board.json": { + "size": 1389, + "ext": ".json" + }, + "data/portrait-db.json": { + "size": 2458, + "ext": ".json" + }, + "data/multi-sheet.js": { + "size": 415, + "ext": ".js" + }, + "data/reminder-log.json": { + "size": 389, + "ext": ".json" + }, + "data/notion-writeback-log.json": { + "size": 236, + "ext": ".json" + }, + "data/system-health.json": { + "size": 1043, + "ext": ".json" + }, + "data/sheet-updater.js": { + "size": 228, + "ext": ".js" + }, + "data/portrait-history.json": { + "size": 2524, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-24.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-25.json": { + "size": 596, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-18.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-22.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/bridge-logs/heartbeat-2026-03-23.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-19.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-20.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-16.json": { + "size": 227, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-17.json": { + "size": 902, + "ext": ".json" + }, + "data/bridge-logs/heartbeat-2026-03-21.json": { + "size": 902, + "ext": ".json" + }, + "data/work-orders/active.json": { + "size": 10115, + "ext": ".json" + }, + "data/aoac/readme-update-payload.json": { + "size": 869, + "ext": ".json" + }, + "data/aoac/master-report.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/notion-sync-log.json": { + "size": 396, + "ext": ".json" + }, + "data/aoac/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/aoac/merge-result-log.json": { + "size": 4352, + "ext": ".json" + }, + "data/aoac/chain-report.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/readme-sync-trigger.json": { + "size": 212, + "ext": ".json" + }, + "data/aoac/chain-status.json": { + "size": 2496, + "ext": ".json" + }, + "data/aoac/repair-report.json": { + "size": 1018, + "ext": ".json" + }, + "data/aoac/supervisor-verdict.json": { + "size": 354, + "ext": ".json" + }, + "data/aoac/history/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/aoac/history/2026-05-10/AOAC-CHAIN-20260510-081.json": { + "size": 879, + "ext": ".json" + }, + "data/aoac/history/2026-05-10/AOAC-CHAIN-20260510-801.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/history/2026-04-21/AOAC-REPAIR-20260421-067.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-21/AOAC-MASTER-20260421-597.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-19/AOAC-MASTER-20260419-821.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-19/AOAC-REPAIR-20260419-448.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-26/AOAC-MASTER-20260426-659.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-26/AOAC-CHAIN-20260426-844.json": { + "size": 852, + "ext": ".json" + }, + "data/aoac/history/2026-04-26/AOAC-REPAIR-20260426-945.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-26/AOAC-CHAIN-20260426-832.json": { + "size": 908, + "ext": ".json" + }, + "data/aoac/history/2026-04-26/AOAC-CHAIN-20260426-202.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-04-28/AOAC-REPAIR-20260428-174.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-28/AOAC-MASTER-20260428-788.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-933.json": { + "size": 915, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-476.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-801.json": { + "size": 882, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-339.json": { + "size": 885, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-495.json": { + "size": 882, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-713.json": { + "size": 889, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-158.json": { + "size": 894, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-939.json": { + "size": 903, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-559.json": { + "size": 881, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-386.json": { + "size": 878, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-955.json": { + "size": 882, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-263.json": { + "size": 897, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-REPAIR-20260417-362.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-MASTER-20260417-701.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-993.json": { + "size": 919, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-415.json": { + "size": 877, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-550.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-04-17/AOAC-CHAIN-20260417-619.json": { + "size": 864, + "ext": ".json" + }, + "data/aoac/history/2026-04-29/AOAC-MASTER-20260429-924.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-29/AOAC-REPAIR-20260429-217.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-749.json": { + "size": 849, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-505.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-440.json": { + "size": 872, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-512.json": { + "size": 883, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-MASTER-20260416-283.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-996.json": { + "size": 884, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-CHAIN-20260416-710.json": { + "size": 900, + "ext": ".json" + }, + "data/aoac/history/2026-04-16/AOAC-REPAIR-20260416-186.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-REPAIR-20260411-272.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-796.json": { + "size": 878, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-305.json": { + "size": 867, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-333.json": { + "size": 876, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-077.json": { + "size": 881, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-912.json": { + "size": 864, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-620.json": { + "size": 897, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-905.json": { + "size": 865, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-879.json": { + "size": 863, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-479.json": { + "size": 920, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-614.json": { + "size": 864, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-MASTER-20260411-897.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-11/AOAC-CHAIN-20260411-848.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-REPAIR-20260418-762.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-209.json": { + "size": 868, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-272.json": { + "size": 890, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-951.json": { + "size": 884, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-052.json": { + "size": 906, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-814.json": { + "size": 857, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-479.json": { + "size": 884, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-603.json": { + "size": 899, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-232.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-818.json": { + "size": 871, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-055.json": { + "size": 876, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-130.json": { + "size": 887, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-275.json": { + "size": 864, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-REPAIR-20260418-620.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-MASTER-20260418-867.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-406.json": { + "size": 912, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-421.json": { + "size": 864, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-749.json": { + "size": 895, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-876.json": { + "size": 883, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-MASTER-20260418-292.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-877.json": { + "size": 873, + "ext": ".json" + }, + "data/aoac/history/2026-04-18/AOAC-CHAIN-20260418-066.json": { + "size": 872, + "ext": ".json" + }, + "data/aoac/history/2026-04-27/AOAC-REPAIR-20260427-742.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-04/AOAC-REPAIR-20260504-641.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-CHAIN-20260503-745.json": { + "size": 874, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-REPAIR-20260503-131.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-CHAIN-20260503-773.json": { + "size": 899, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-CHAIN-20260503-523.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-CHAIN-20260503-727.json": { + "size": 870, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-MASTER-20260503-926.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-03/AOAC-CHAIN-20260503-117.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-REPAIR-20260502-741.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-512.json": { + "size": 869, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-MASTER-20260502-974.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-411.json": { + "size": 870, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-219.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-121.json": { + "size": 861, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-697.json": { + "size": 870, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-570.json": { + "size": 851, + "ext": ".json" + }, + "data/aoac/history/2026-05-02/AOAC-CHAIN-20260502-622.json": { + "size": 877, + "ext": ".json" + }, + "data/aoac/history/2026-05-05/AOAC-MASTER-20260505-152.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-05/AOAC-REPAIR-20260505-982.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-25/AOAC-MASTER-20260425-095.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-25/AOAC-MASTER-20260425-220.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-25/AOAC-REPAIR-20260425-005.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-22/AOAC-REPAIR-20260422-123.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-22/AOAC-MASTER-20260422-086.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-22/AOAC-CHAIN-20260422-013.json": { + "size": 903, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-REPAIR-20260414-175.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-131.json": { + "size": 867, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-999.json": { + "size": 887, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-194.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-924.json": { + "size": 886, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-715.json": { + "size": 881, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-152.json": { + "size": 881, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-963.json": { + "size": 851, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-324.json": { + "size": 872, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-MASTER-20260414-939.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-606.json": { + "size": 873, + "ext": ".json" + }, + "data/aoac/history/2026-04-14/AOAC-CHAIN-20260414-352.json": { + "size": 881, + "ext": ".json" + }, + "data/aoac/history/2026-04-13/AOAC-CHAIN-20260413-583.json": { + "size": 877, + "ext": ".json" + }, + "data/aoac/history/2026-04-13/AOAC-CHAIN-20260413-168.json": { + "size": 876, + "ext": ".json" + }, + "data/aoac/history/2026-04-13/AOAC-CHAIN-20260413-406.json": { + "size": 907, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-194.json": { + "size": 882, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-950.json": { + "size": 869, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-403.json": { + "size": 871, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-730.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-REPAIR-20260412-923.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-834.json": { + "size": 868, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-603.json": { + "size": 872, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-357.json": { + "size": 859, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-219.json": { + "size": 885, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-720.json": { + "size": 894, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-MASTER-20260412-449.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-186.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-191.json": { + "size": 884, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-739.json": { + "size": 889, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-758.json": { + "size": 887, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-426.json": { + "size": 858, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-895.json": { + "size": 886, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-066.json": { + "size": 872, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-508.json": { + "size": 873, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-302.json": { + "size": 899, + "ext": ".json" + }, + "data/aoac/history/2026-04-12/AOAC-CHAIN-20260412-050.json": { + "size": 885, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-REPAIR-20260415-440.json": { + "size": 1517, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-700.json": { + "size": 898, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-MASTER-20260415-983.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-361.json": { + "size": 860, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-659.json": { + "size": 889, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-084.json": { + "size": 900, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-447.json": { + "size": 889, + "ext": ".json" + }, + "data/aoac/history/2026-04-15/AOAC-CHAIN-20260415-236.json": { + "size": 904, + "ext": ".json" + }, + "data/aoac/history/2026-04-23/AOAC-REPAIR-20260423-399.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-23/AOAC-CHAIN-20260423-014.json": { + "size": 885, + "ext": ".json" + }, + "data/aoac/history/2026-04-23/AOAC-MASTER-20260423-151.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-23/AOAC-CHAIN-20260423-795.json": { + "size": 852, + "ext": ".json" + }, + "data/aoac/history/2026-04-23/AOAC-CHAIN-20260423-760.json": { + "size": 861, + "ext": ".json" + }, + "data/aoac/history/2026-04-24/AOAC-MASTER-20260424-298.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-04-24/AOAC-REPAIR-20260424-577.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-24/AOAC-CHAIN-20260424-059.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-04-30/AOAC-REPAIR-20260430-525.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-04-30/AOAC-MASTER-20260430-466.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-09/AOAC-REPAIR-20260509-908.json": { + "size": 1018, + "ext": ".json" + }, + "data/aoac/history/2026-05-09/AOAC-MASTER-20260509-679.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-07/AOAC-MASTER-20260507-472.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-07/AOAC-REPAIR-20260507-737.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-07/AOAC-MASTER-20260507-456.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-06/AOAC-CHAIN-20260506-888.json": { + "size": 863, + "ext": ".json" + }, + "data/aoac/history/2026-05-06/AOAC-MASTER-20260506-772.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-06/AOAC-REPAIR-20260506-126.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-01/AOAC-REPAIR-20260501-945.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-01/AOAC-MASTER-20260501-794.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-01/AOAC-CHAIN-20260501-585.json": { + "size": 893, + "ext": ".json" + }, + "data/aoac/history/2026-05-01/AOAC-MASTER-20260501-847.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-01/AOAC-CHAIN-20260501-056.json": { + "size": 866, + "ext": ".json" + }, + "data/aoac/history/2026-05-08/AOAC-CHAIN-20260508-089.json": { + "size": 888, + "ext": ".json" + }, + "data/aoac/history/2026-05-08/AOAC-REPAIR-20260508-169.json": { + "size": 1351, + "ext": ".json" + }, + "data/aoac/history/2026-05-08/AOAC-MASTER-20260508-771.json": { + "size": 535, + "ext": ".json" + }, + "data/aoac/history/2026-05-08/AOAC-REPAIR-20260508-040.json": { + "size": 1351, + "ext": ".json" + }, + "data/broadcasts/pdf/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/bulletin-board/dashboard.json": { + "size": 12660, + "ext": ".json" + }, + "data/bulletin-board/receipts/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/bulletin-board/comments/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/bulletin-board/work-orders/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/bulletin-board/config-shares/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/security/sfp-nonce-registry.json": { + "size": 13021, + "ext": ".json" + }, + "data/security/sfp-alert-log.json": { + "size": 95, + "ext": ".json" + }, + "data/security/sfp-config.json": { + "size": 1056, + "ext": ".json" + }, + "data/training/state.json": { + "size": 11406, + "ext": ".json" + }, + "data/training/kickoff-2026-05-03.md": { + "size": 3212, + "ext": ".md" + }, + "data/training/event.schema.json": { + "size": 2288, + "ext": ".json" + }, + "data/patrol-logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/patrol-logs/patrol-2026-03-25.json": { + "size": 199, + "ext": ".json" + }, + "data/patrol-logs/patrol-2026-03-24.json": { + "size": 318, + "ext": ".json" + }, + "data/patrol-logs/repair-20260316.json": { + "size": 4857, + "ext": ".json" + }, + "data/patrol-logs/patrol-2026-03-23.json": { + "size": 392, + "ext": ".json" + }, + "data/patrol-logs/patrol-2026-03-22.json": { + "size": 318, + "ext": ".json" + }, + "data/notion-pages/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/deploy-logs/deploy-25245444554-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604766618-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/observer-dashboard.json": { + "size": 467, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604339242-2026-04-18.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24015766321-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24028418313-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604785640-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23985798986-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25245444537-2026-05-02.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24602759922-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24282315686-2026-04-11.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-25540704686-2026-05-08.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23975905064-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23893322662-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24567609655-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25243543275-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23973097733-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24294911028-2026-04-12.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24304121486-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24391935456-2026-04-14.json": { + "size": 25771, + "ext": ".json" + }, + "data/deploy-logs/deploy-24578963445-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25243543264-2026-05-02.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24514198483-2026-04-16.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24007438037-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24019421677-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24020286358-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23910981757-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24284972500-2026-04-11.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-25258269369-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24297288892-2026-04-12.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24596895896-2026-04-18.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-23906843566-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24576953946-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24021644981-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24440539460-2026-04-15.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/latest-index.json": { + "size": 10499, + "ext": ".json" + }, + "data/deploy-logs/deploy-23975481283-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23982369913-2026-04-04.json": { + "size": 25769, + "ext": ".json" + }, + "data/deploy-logs/deploy-25248707822-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24518624735-2026-04-16.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24544488133-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24302762997-2026-04-12.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24025245545-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23978193891-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24493778143-2026-04-16.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23913348695-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24026104294-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25542762816-2026-05-08.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24527427373-2026-04-16.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-23978193888-2026-04-04.json": { + "size": 13864, + "ext": ".json" + }, + "data/deploy-logs/deploy-24000085050-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24563096253-2026-04-17.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24826027188-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24000717324-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24402564922-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24506808430-2026-04-16.json": { + "size": 15259, + "ext": ".json" + }, + "data/deploy-logs/deploy-24435099842-2026-04-15.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24302730543-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25247786643-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24280245491-2026-04-11.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24442873946-2026-04-15.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23982369891-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24540421053-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24397474275-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25272815635-2026-05-03.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23996198107-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23975336484-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24600104585-2026-04-18.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24279759021-2026-04-11.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-23921287327-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23974662158-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24603829648-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24827557794-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24401142295-2026-04-14.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-23978891218-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24598542822-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25272323726-2026-05-03.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24089672399-2026-04-07.json": { + "size": 25768, + "ext": ".json" + }, + "data/deploy-logs/deploy-24556986483-2026-04-17.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-23938893073-2026-04-03.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23919538448-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24295782670-2026-04-12.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24822853986-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24393597281-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24600104596-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23983441345-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25249944780-2026-05-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24333324954-2026-04-13.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23906843495-2026-04-02.json": { + "size": 13866, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604339225-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24028418317-2026-04-06.json": { + "size": 25775, + "ext": ".json" + }, + "data/deploy-logs/deploy-25607034998-2026-05-09.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604102712-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24395961794-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24546862460-2026-04-17.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24543005748-2026-04-17.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24285712001-2026-04-11.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24300561135-2026-04-12.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24281358698-2026-04-11.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24305360863-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25606492498-2026-05-09.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23978891215-2026-04-04.json": { + "size": 25769, + "ext": ".json" + }, + "data/deploy-logs/deploy-25608308431-2026-05-09.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-25283179348-2026-05-03.json": { + "size": 15362, + "ext": ".json" + }, + "data/deploy-logs/deploy-25271779228-2026-05-03.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24269729492-2026-04-11.json": { + "size": 25772, + "ext": ".json" + }, + "data/deploy-logs/deploy-24288529632-2026-04-11.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24404601543-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24446857528-2026-04-15.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-25607577939-2026-05-09.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24506808463-2026-04-16.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24005119490-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24343381665-2026-04-13.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24601886662-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24575673168-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23998402784-2026-04-05.json": { + "size": 2090, + "ext": ".json" + }, + "data/deploy-logs/deploy-24603972096-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24096011321-2026-04-07.json": { + "size": 25774, + "ext": ".json" + }, + "data/deploy-logs/repair-history.json": { + "size": 20, + "ext": ".json" + }, + "data/deploy-logs/deploy-25608971546-2026-05-09.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24302362370-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23900384061-2026-04-02.json": { + "size": 13865, + "ext": ".json" + }, + "data/deploy-logs/deploy-24302045779-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/alert-status.json": { + "size": 19, + "ext": ".json" + }, + "data/deploy-logs/deploy-24601153489-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24304420404-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23982641191-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24602992929-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24278098339-2026-04-11.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24005665237-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24541846788-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24604814701-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24574747846-2026-04-17.json": { + "size": 25776, + "ext": ".json" + }, + "data/deploy-logs/deploy-24569996442-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24305065185-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24826132340-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24015086539-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24296929722-2026-04-12.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24287618343-2026-04-11.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24303857969-2026-04-12.json": { + "size": 25773, + "ext": ".json" + }, + "data/deploy-logs/deploy-24543710771-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23997603168-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24828457623-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24565447136-2026-04-17.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23974638065-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24521129580-2026-04-16.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24595279591-2026-04-18.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24411038100-2026-04-14.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-25443178037-2026-05-06.json": { + "size": 953, + "ext": ".json" + }, + "data/deploy-logs/deploy-24001513122-2026-04-05.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-23974226593-2026-04-04.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24399551645-2026-04-14.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24304843208-2026-04-12.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24027183766-2026-04-06.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24355886396-2026-04-13.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24082110249-2026-04-07.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24029399779-2026-04-06.json": { + "size": 13864, + "ext": ".json" + }, + "data/deploy-logs/deploy-24435703644-2026-04-15.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-23900384042-2026-04-02.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24824475521-2026-04-23.json": { + "size": 2099, + "ext": ".json" + }, + "data/deploy-logs/deploy-24283082910-2026-04-11.json": { + "size": 25770, + "ext": ".json" + }, + "data/deploy-logs/deploy-24543710779-2026-04-17.json": { + "size": 15400, + "ext": ".json" + }, + "data/dc-reports/workflow-perf-2026-03-23.json": { + "size": 1019, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-25.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-24.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/workflow-perf-2026-03-22.json": { + "size": 444, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-23.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/workflow-perf-2026-03-25.json": { + "size": 1222, + "ext": ".json" + }, + "data/dc-reports/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/dc-reports/workflow-perf-2026-03-24.json": { + "size": 4851, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-22.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-21.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/notion-usage-2026-03-20.json": { + "size": 259, + "ext": ".json" + }, + "data/dc-reports/workflow-perf-2026-03-21.json": { + "size": 2692, + "ext": ".json" + }, + "data/dc-reports/workflow-perf-2026-03-20.json": { + "size": 8086, + "ext": ".json" + }, + "data/agent-memory/AG-ZY-DEPUTY-memory.json": { + "size": 6292, + "ext": ".json" + }, + "data/agent-memory/AG-ZY-CMD-memory.json": { + "size": 1816, + "ext": ".json" + }, + "data/agent-memory/AG-ZY-README-memory.json": { + "size": 1882, + "ext": ".json" + }, + "data/agent-memory/AG-ZY-GUARD-memory.json": { + "size": 1899, + "ext": ".json" + }, + "data/agent-memory/AG-ZY-OBSERVER-memory.json": { + "size": 6049, + "ext": ".json" + }, + "data/neural-reports/receipts/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/notion-cache-sync/notion-cache-sync-2026-03-25-2108.json": { + "size": 249, + "ext": ".json" + }, + "data/neural-reports/weekly-scan/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/dev-status/dev-status-2026-03-25-2303.json": { + "size": 242, + "ext": ".json" + }, + "data/neural-reports/dev-status/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/work-orders/tracker-2026-03-25.json": { + "size": 368, + "ext": ".json" + }, + "data/neural-reports/work-orders/work-orders-2026-03-25.json": { + "size": 1129, + "ext": ".json" + }, + "data/neural-reports/work-orders/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/syslog/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/gate-guard/gate-guard-2026-03-25-2221.json": { + "size": 241, + "ext": ".json" + }, + "data/neural-reports/gate-guard/gate-guard-2026-04-05-1709.json": { + "size": 241, + "ext": ".json" + }, + "data/neural-reports/gate-guard/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/server-patrol/server-patrol-2026-03-25-2037.json": { + "size": 248, + "ext": ".json" + }, + "data/neural-reports/server-patrol/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/daily-digest/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/daily-digest/digest-2026-03-25.json": { + "size": 3539, + "ext": ".json" + }, + "data/neural-reports/daily-digest/neural-daily-digest-2026-03-25-2210.json": { + "size": 254, + "ext": ".json" + }, + "data/neural-reports/brain-check/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2127.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2222.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1814.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2038.json": { + "size": 251, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2223.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2126.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2219.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-26-0000.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1520.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1813.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-26-0001.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1538.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-26-0002.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1518.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1519.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1734.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1539.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1733.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2125.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-2221.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/dashboard/dashboard-update-2026-03-25-1732.json": { + "size": 255, + "ext": ".json" + }, + "data/neural-reports/cd-deploy/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/exec-engine/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/skyeye/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/neural-reports/broadcast/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/verified/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/snapshots/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/executed/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/rejected/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/approved/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/asop-requests/pending/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/deploy-queue/completed/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/deploy-queue/executing/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/deploy-queue/failed/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/deploy-queue/pending/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/skyeye-reports/latest.json": { + "size": 3212, + "ext": ".json" + }, + "data/skyeye-reports/skyeye-2026-03-24.json": { + "size": 22282, + "ext": ".json" + }, + "data/skyeye-reports/skyeye-2026-03-23.json": { + "size": 18228, + "ext": ".json" + }, + "data/skyeye-reports/.gitkeep": { + "size": 0, + "ext": "" + }, + "data/skyeye-reports/skyeye-2026-03-22.json": { + "size": 17090, + "ext": ".json" + }, + "data/skyeye-reports/skyeye-2026-03-21.json": { + "size": 16262, + "ext": ".json" + }, + "data/skyeye-reports/baseline-before-neural-upgrade.json": { + "size": 5849, + "ext": ".json" + }, + "data/skyeye-reports/skyeye-2026-03-16.json": { + "size": 13270, + "ext": ".json" + }, + "data/skyeye-reports/skyeye-2026-03-20.json": { + "size": 15233, + "ext": ".json" + }, + "downloads/awen-architecture-package.zip": { + "size": 45175, + "ext": ".zip" + }, + "downloads/awen-architecture-package/README.md": { + "size": 4406, + "ext": ".md" + }, + "downloads/awen-architecture-package/domains/domain-registry.json": { + "size": 632, + "ext": ".json" + }, + "downloads/awen-architecture-package/bridge/hldp-inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "downloads/awen-architecture-package/bridge/hldp-outbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "downloads/awen-architecture-package/age_os/system_state.json": { + "size": 533, + "ext": ".json" + }, + "downloads/awen-architecture-package/age_os/persona_config.json": { + "size": 2225, + "ext": ".json" + }, + "downloads/awen-architecture-package/age_os/hldp_config.json": { + "size": 675, + "ext": ".json" + }, + "downloads/awen-architecture-package/agents/README.md": { + "size": 1167, + "ext": ".md" + }, + "downloads/awen-architecture-package/server/server-registry.json": { + "size": 2163, + "ext": ".json" + }, + "downloads/awen-architecture-package/docs/00-START-HERE.md": { + "size": 5313, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/02-webnovel-industry.md": { + "size": 4339, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/07-cos-dev-review-bridge.md": { + "size": 5145, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/01-system-architecture.md": { + "size": 8066, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/06-development-roadmap.md": { + "size": 2759, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/05-secrets-checklist.md": { + "size": 3222, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/03-zhuyuan-protocol.md": { + "size": 4799, + "ext": ".md" + }, + "downloads/awen-architecture-package/docs/04-persona-database.md": { + "size": 4201, + "ext": ".md" + }, + "downloads/awen-architecture-package/cos-config/bucket-config.json": { + "size": 919, + "ext": ".json" + }, + "downloads/awen-architecture-package/.github/copilot-instructions.md": { + "size": 7514, + "ext": ".md" + }, + "downloads/awen-architecture-package/.github/workflows/health-check-all.yml": { + "size": 3820, + "ext": ".yml" + }, + "downloads/awen-architecture-package/.github/workflows/cos-upload-outbox.yml": { + "size": 5488, + "ext": ".yml" + }, + "downloads/awen-architecture-package/.github/workflows/zhuyuan-dev-trigger.yml": { + "size": 4644, + "ext": ".yml" + }, + "downloads/awen-architecture-package/.github/workflows/deploy-member.yml": { + "size": 3797, + "ext": ".yml" + }, + "downloads/awen-architecture-package/brain/read-order.md": { + "size": 1634, + "ext": ".md" + }, + "downloads/awen-architecture-package/brain/notebook.json": { + "size": 6793, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/fast-wake.json": { + "size": 1206, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/world-map.md": { + "size": 2016, + "ext": ".md" + }, + "downloads/awen-architecture-package/brain/memory-anchors/self-identity.json": { + "size": 990, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/memory-anchors/places.json": { + "size": 1196, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/memory-anchors/timeline.json": { + "size": 625, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/memory-anchors/relationships.json": { + "size": 1540, + "ext": ".json" + }, + "downloads/awen-architecture-package/brain/memory-anchors/emotions.json": { + "size": 1069, + "ext": ".json" + }, + "persona-telemetry/latest-summary.json": { + "size": 742, + "ext": ".json" + }, + "persona-telemetry/style-scores/.gitkeep": { + "size": 0, + "ext": "" + }, + "persona-telemetry/tuning-queue/.gitkeep": { + "size": 0, + "ext": "" + }, + "persona-telemetry/tuning-queue/processed/.gitkeep": { + "size": 0, + "ext": "" + }, + "m18-health-check/index.html": { + "size": 1912, + "ext": ".html" + }, + "m18-health-check/server.js": { + "size": 7021, + "ext": ".js" + }, + "m18-health-check/config.json": { + "size": 327, + "ext": ".json" + }, + "m18-health-check/server.txt": { + "size": 7371, + "ext": ".txt" + }, + "m18-health-check/README.md": { + "size": 263, + "ext": ".md" + }, + "m18-health-check/package-lock.json": { + "size": 28941, + "ext": ".json" + }, + "m18-health-check/package.json": { + "size": 300, + "ext": ".json" + }, + "m15-cloud-drive/index.html": { + "size": 1895, + "ext": ".html" + }, + "m15-cloud-drive/cloud-drive.html": { + "size": 7732, + "ext": ".html" + }, + "m15-cloud-drive/README.md": { + "size": 603, + "ext": ".md" + }, + "m15-cloud-drive/cloud-drive-style.css": { + "size": 6091, + "ext": ".css" + }, + "m15-cloud-drive/cloud-drive.js": { + "size": 2174, + "ext": ".js" + }, + "chat-bubble/README.md": { + "size": 21, + "ext": ".md" + }, + "dynamic-comic-studio/index.html": { + "size": 5893, + "ext": ".html" + }, + "dynamic-comic-studio/css/style.css": { + "size": 7348, + "ext": ".css" + }, + "dynamic-comic-studio/js/app.js.backup2": { + "size": 32192, + "ext": ".backup2" + }, + "dynamic-comic-studio/js/app.js.broken": { + "size": 32365, + "ext": ".broken" + }, + "dynamic-comic-studio/js/app.js.backup": { + "size": 32365, + "ext": ".backup" + }, + "dynamic-comic-studio/js/app.js": { + "size": 16649, + "ext": ".js" + }, + "image-studio/renderer.js": { + "size": 2681, + "ext": ".js" + }, + "image-studio/server.js": { + "size": 2096, + "ext": ".js" + }, + "image-studio/generate.js": { + "size": 6792, + "ext": ".js" + }, + "image-studio/config.js": { + "size": 7573, + "ext": ".js" + }, + "image-studio/README.md": { + "size": 3326, + "ext": ".md" + }, + "image-studio/package-lock.json": { + "size": 41520, + "ext": ".json" + }, + "image-studio/package.json": { + "size": 458, + "ext": ".json" + }, + "image-studio/deploy/setup.sh": { + "size": 1589, + "ext": ".sh" + }, + "image-studio/deploy/fix-nginx-v2.mjs": { + "size": 4776, + "ext": ".mjs" + }, + "image-studio/deploy/fix-nginx-v3.mjs": { + "size": 5267, + "ext": ".mjs" + }, + "image-studio/deploy/fix-final.mjs": { + "size": 5422, + "ext": ".mjs" + }, + "image-studio/deploy/DEPLOY_REPORT.md": { + "size": 1821, + "ext": ".md" + }, + "image-studio/deploy/setup-proxy-v2.mjs": { + "size": 5195, + "ext": ".mjs" + }, + "image-studio/deploy/add-homepage-card.mjs": { + "size": 3767, + "ext": ".mjs" + }, + "image-studio/deploy/read-config.mjs": { + "size": 2574, + "ext": ".mjs" + }, + "image-studio/deploy/fix-correct.mjs": { + "size": 3696, + "ext": ".mjs" + }, + "image-studio/deploy/verify.mjs": { + "size": 3886, + "ext": ".mjs" + }, + "image-studio/deploy/fix-nginx.mjs": { + "size": 5240, + "ext": ".mjs" + }, + "image-studio/deploy/final-verify.mjs": { + "size": 4367, + "ext": ".mjs" + }, + "image-studio/deploy/remote-deploy-2.mjs": { + "size": 5783, + "ext": ".mjs" + }, + "image-studio/deploy/remote-deploy-3.mjs": { + "size": 3597, + "ext": ".mjs" + }, + "image-studio/deploy/check-homepage.mjs": { + "size": 1743, + "ext": ".mjs" + }, + "image-studio/deploy/fix-gz-nginx.mjs": { + "size": 5457, + "ext": ".mjs" + }, + "image-studio/deploy/nginx-proxy.mjs": { + "size": 6532, + "ext": ".mjs" + }, + "image-studio/deploy/fix-and-verify.mjs": { + "size": 5575, + "ext": ".mjs" + }, + "image-studio/deploy/verify-homepage.mjs": { + "size": 1658, + "ext": ".mjs" + }, + "image-studio/deploy/read-active-config.mjs": { + "size": 1743, + "ext": ".mjs" + }, + "image-studio/deploy/test-gz.mjs": { + "size": 3003, + "ext": ".mjs" + }, + "image-studio/deploy/test-network.mjs": { + "size": 2811, + "ext": ".mjs" + }, + "image-studio/deploy/setup-proxy.mjs": { + "size": 4744, + "ext": ".mjs" + }, + "image-studio/deploy/remote-deploy.mjs": { + "size": 5409, + "ext": ".mjs" + }, + "image-studio/public/index.html": { + "size": 17974, + "ext": ".html" + }, + "image-studio/templates/jike.js": { + "size": 4117, + "ext": ".js" + }, + "image-studio/templates/registry.js": { + "size": 4575, + "ext": ".js" + }, + "image-studio/templates/xiaohongshu.js": { + "size": 8249, + "ext": ".js" + }, + "image-studio/templates/dynamic.js": { + "size": 4671, + "ext": ".js" + }, + "image-studio/templates/poster.js": { + "size": 7608, + "ext": ".js" + }, + "factory/README.md": { + "size": 4415, + "ext": ".md" + }, + "factory/module-registry/README.md": { + "size": 2687, + "ext": ".md" + }, + "factory/training/README.md": { + "size": 5027, + "ext": ".md" + }, + "factory/training/recipes/mp-zhuyuan-v1.yaml": { + "size": 1939, + "ext": ".yaml" + }, + "factory/training/recipes/m0-v1.yaml": { + "size": 1749, + "ext": ".yaml" + }, + "factory/training/configs/deepspeed-zero2-1p7b.json": { + "size": 1135, + "ext": ".json" + }, + "factory/training/configs/deepspeed-zero3-8b.json": { + "size": 1639, + "ext": ".json" + }, + "factory/training/scripts/distill_mp.py": { + "size": 3730, + "ext": ".py" + }, + "factory/training/scripts/train_m0_cpt.py": { + "size": 5143, + "ext": ".py" + }, + "factory/docs/GPU-PROCUREMENT.md": { + "size": 5831, + "ext": ".md" + }, + "factory/docs/CORPUS-DECISION-MATRIX.md": { + "size": 10136, + "ext": ".md" + }, + "factory/docs/BOOTSTRAP-CHECKLIST.md": { + "size": 3277, + "ext": ".md" + }, + "factory/inference/README.md": { + "size": 4716, + "ext": ".md" + }, + "factory/inference/api-adapters/README.md": { + "size": 1220, + "ext": ".md" + }, + "factory/inference/api-adapters/adapter_base.py": { + "size": 2737, + "ext": ".py" + }, + "factory/inference/soul-filter/README.md": { + "size": 942, + "ext": ".md" + }, + "factory/inference/soul-filter/filter.py": { + "size": 3038, + "ext": ".py" + }, + "factory/inference/router/policy.json": { + "size": 2454, + "ext": ".json" + }, + "factory/inference/router/route_decision.py": { + "size": 3373, + "ext": ".py" + }, + "factory/thinking-traces/SCHEMA.md": { + "size": 3581, + "ext": ".md" + }, + "factory/thinking-traces/README.md": { + "size": 3230, + "ext": ".md" + }, + "factory/magic-pen/SCHEMA.md": { + "size": 3334, + "ext": ".md" + }, + "factory/magic-pen/README.md": { + "size": 4527, + "ext": ".md" + }, + ".forgejo/workflows/heartbeat.yaml": { + "size": 4324, + "ext": ".yaml" + }, + ".forgejo/workflows/selfcheck.yaml": { + "size": 4131, + "ext": ".yaml" + }, + ".forgejo/workflows/deploy-brand-ui.yaml": { + "size": 3504, + "ext": ".yaml" + }, + ".forgejo/workflows/deploy-mcp-server.yaml": { + "size": 5092, + "ext": ".yaml" + }, + ".forgejo/workflows/patrol.yaml": { + "size": 2425, + "ext": ".yaml" + }, + ".forgejo/workflows/cvm-power-on.yaml": { + "size": 594, + "ext": ".yaml" + }, + ".forgejo/workflows/mcp-config-generator.yaml": { + "size": 1865, + "ext": ".yaml" + }, + ".forgejo/workflows/ci-and-deploy.yaml": { + "size": 5327, + "ext": ".yaml" + }, + ".forgejo/workflows/cvm-power-off.yaml": { + "size": 594, + "ext": ".yaml" + }, + ".forgejo/workflows/review-pr.yaml": { + "size": 4487, + "ext": ".yaml" + }, + ".forgejo/workflows/shutdown-check.yaml": { + "size": 5460, + "ext": ".yaml" + }, + ".forgejo/pages/mcp-config.html": { + "size": 10105, + "ext": ".html" + }, + "guanghuclip/README.md": { + "size": 1895, + "ext": ".md" + }, + "guanghuclip/package.json": { + "size": 518, + "ext": ".json" + }, + "guanghuclip/.env.example": { + "size": 489, + "ext": ".example" + }, + "guanghuclip/ecosystem.config.js": { + "size": 429, + "ext": ".js" + }, + "guanghuclip/frontend/index.html": { + "size": 470, + "ext": ".html" + }, + "guanghuclip/frontend/vite.config.js": { + "size": 426, + "ext": ".js" + }, + "guanghuclip/frontend/package.json": { + "size": 359, + "ext": ".json" + }, + "guanghuclip/frontend/src/App.vue": { + "size": 336, + "ext": ".vue" + }, + "guanghuclip/frontend/src/main.js": { + "size": 115, + "ext": ".js" + }, + "guanghuclip/frontend/src/style.css": { + "size": 10916, + "ext": ".css" + }, + "guanghuclip/frontend/src/components/RightPanel.vue": { + "size": 9287, + "ext": ".vue" + }, + "guanghuclip/frontend/src/components/LeftPanel.vue": { + "size": 3687, + "ext": ".vue" + }, + "guanghuclip/backend/server.js": { + "size": 2633, + "ext": ".js" + }, + "guanghuclip/backend/config/index.js": { + "size": 925, + "ext": ".js" + }, + "guanghuclip/backend/routes/video.js": { + "size": 5486, + "ext": ".js" + }, + "guanghuclip/backend/services/video-dispatch.js": { + "size": 3809, + "ext": ".js" + }, + "services/zhuyuan-bridge/server.js": { + "size": 4339, + "ext": ".js" + }, + "services/zhuyuan-bridge/package.json": { + "size": 491, + "ext": ".json" + }, + "services/zhuyuan-bridge/logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "services/zhuyuan-bridge/scripts/execute-instruction.js": { + "size": 11152, + "ext": ".js" + }, + "services/zhuyuan-bridge/scripts/parse-instruction.js": { + "size": 2440, + "ext": ".js" + }, + "services/zhuyuan-bridge/lib/github-auth.js": { + "size": 4535, + "ext": ".js" + }, + "services/zhuyuan-bridge/lib/repo-operator.js": { + "size": 5123, + "ext": ".js" + }, + "services/zhuyuan-bridge/prompts/issue-reply.md": { + "size": 368, + "ext": ".md" + }, + "services/zhuyuan-bridge/prompts/code-generate.md": { + "size": 572, + "ext": ".md" + }, + "services/zhuyuan-bridge/prompts/code-review.md": { + "size": 517, + "ext": ".md" + }, + "loop/loop-engine.js": { + "size": 6367, + "ext": ".js" + }, + "m07-dialogue-ui/index.html": { + "size": 1477, + "ext": ".html" + }, + "m07-dialogue-ui/README.md": { + "size": 99, + "ext": ".md" + }, + "m07-dialogue-ui/script.js": { + "size": 1422, + "ext": ".js" + }, + "m07-dialogue-ui/style.css": { + "size": 2990, + "ext": ".css" + }, + "reports/id-recon-sync-report-2026-03-22.md": { + "size": 3561, + "ext": ".md" + }, + "reports/health-report-2026-03-21.md": { + "size": 12340, + "ext": ".md" + }, + "reports/tianyan-full-scan-2026-03-22.md": { + "size": 2917, + "ext": ".md" + }, + "reports/cd-debug-20260310.md": { + "size": 3051, + "ext": ".md" + }, + "reports/.gitkeep": { + "size": 60, + "ext": "" + }, + "reports/notion-sync-report-2026-03-22.md": { + "size": 1486, + "ext": ".md" + }, + "reports/restruct-report-2026-03-22.md": { + "size": 3038, + "ext": ".md" + }, + "grid-db/README.md": { + "size": 4053, + "ext": ".md" + }, + "grid-db/package.json": { + "size": 425, + "ext": ".json" + }, + "grid-db/outbox/archive/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/outbox/latest/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-002/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-003/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-004/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-010/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-009/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/interactions/DEV-012/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/inbox/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/memory/DEV-002/brain-mirror.json": { + "size": 411, + "ext": ".json" + }, + "grid-db/memory/DEV-002/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-002/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-002/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-002/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-003/brain-mirror.json": { + "size": 381, + "ext": ".json" + }, + "grid-db/memory/DEV-003/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-003/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-003/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-003/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-004/brain-mirror.json": { + "size": 369, + "ext": ".json" + }, + "grid-db/memory/DEV-004/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-004/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-004/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-004/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-010/brain-mirror.json": { + "size": 396, + "ext": ".json" + }, + "grid-db/memory/DEV-010/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-010/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-010/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-010/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-001/brain-mirror.json": { + "size": 1023, + "ext": ".json" + }, + "grid-db/memory/DEV-001/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-001/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-001/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-001/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-009/brain-mirror.json": { + "size": 352, + "ext": ".json" + }, + "grid-db/memory/DEV-009/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-009/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-009/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-009/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/memory/DEV-012/brain-mirror.json": { + "size": 353, + "ext": ".json" + }, + "grid-db/memory/DEV-012/checkin-log.json": { + "size": 386, + "ext": ".json" + }, + "grid-db/memory/DEV-012/dev-profile.json": { + "size": 168, + "ext": ".json" + }, + "grid-db/memory/DEV-012/persona-growth.json": { + "size": 134, + "ext": ".json" + }, + "grid-db/memory/DEV-012/task-queue.json": { + "size": 75, + "ext": ".json" + }, + "grid-db/memory/DEV-012/session-context.json": { + "size": 151, + "ext": ".json" + }, + "grid-db/training-lake/export/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/training-lake/export/README.md": { + "size": 313, + "ext": ".md" + }, + "grid-db/training-lake/metadata/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/training-lake/metadata/catalog.json": { + "size": 239, + "ext": ".json" + }, + "grid-db/training-lake/raw/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/training-lake/curated/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/processing/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/tests/smoke/grid-db.test.js": { + "size": 15215, + "ext": ".js" + }, + "grid-db/tests/smoke/grid-db-p1.test.js": { + "size": 15567, + "ext": ".js" + }, + "grid-db/deploy-log/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/gemini-prompts/startup-prompt-template.md": { + "size": 2045, + "ext": ".md" + }, + "grid-db/drive-index/DEV-012.json": { + "size": 981, + "ext": ".json" + }, + "grid-db/drive-index/DEV-004.json": { + "size": 983, + "ext": ".json" + }, + "grid-db/drive-index/DEV-009.json": { + "size": 987, + "ext": ".json" + }, + "grid-db/drive-index/DEV-002.json": { + "size": 983, + "ext": ".json" + }, + "grid-db/drive-index/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/drive-index/DEV-003.json": { + "size": 983, + "ext": ".json" + }, + "grid-db/drive-index/DEV-001.json": { + "size": 990, + "ext": ".json" + }, + "grid-db/drive-index/DEV-010.json": { + "size": 983, + "ext": ".json" + }, + "grid-db/docs/architecture.md": { + "size": 4481, + "ext": ".md" + }, + "grid-db/schema/drive-index-template.json": { + "size": 1451, + "ext": ".json" + }, + "grid-db/schema/chatroom-message.schema.json": { + "size": 1286, + "ext": ".json" + }, + "grid-db/schema/outbox-broadcast.schema.json": { + "size": 2059, + "ext": ".json" + }, + "grid-db/schema/inbox-message.schema.json": { + "size": 2031, + "ext": ".json" + }, + "grid-db/schema/thinking-ticket.schema.json": { + "size": 2339, + "ext": ".json" + }, + "grid-db/schema/interaction-record.schema.json": { + "size": 1169, + "ext": ".json" + }, + "grid-db/schema/memory-snapshot.schema.json": { + "size": 1179, + "ext": ".json" + }, + "grid-db/schema/training-sample.schema.json": { + "size": 1617, + "ext": ".json" + }, + "grid-db/schema/deploy-command.schema.json": { + "size": 1846, + "ext": ".json" + }, + "grid-db/logs/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/chatroom/meta/unread.json": { + "size": 126, + "ext": ".json" + }, + "grid-db/chatroom/meta/channels.json": { + "size": 686, + "ext": ".json" + }, + "grid-db/chatroom/dm/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/chatroom/channels/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/rules/broadcast-index.json": { + "size": 153, + "ext": ".json" + }, + "grid-db/rules/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/rules/persona-registry-drive.json": { + "size": 1381, + "ext": ".json" + }, + "grid-db/rules/id-ecosystem.json": { + "size": 714, + "ext": ".json" + }, + "grid-db/rules/page-route-map.json": { + "size": 1563, + "ext": ".json" + }, + "grid-db/rules/active-broadcasts.json": { + "size": 143, + "ext": ".json" + }, + "grid-db/rules/dev-module-map.json": { + "size": 2226, + "ext": ".json" + }, + "grid-db/rules/broadcast-templates.json": { + "size": 836, + "ext": ".json" + }, + "grid-db/thinking-logs/ICE-GL-ZY001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/PER-SS001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/PER-SS001/2026-03-24.json": { + "size": 276, + "ext": ".json" + }, + "grid-db/thinking-logs/PER-ZQ001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/PER-QQ001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/PER-QQ001/2026-03-24.json": { + "size": 276, + "ext": ".json" + }, + "grid-db/thinking-logs/ICE-NTN-SY001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/ICE-NTN-SY001/2026-03-24.json": { + "size": 280, + "ext": ".json" + }, + "grid-db/thinking-logs/ICE-GL-YM001/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/thinking-logs/ICE-GL-YM001/2026-03-24.json": { + "size": 279, + "ext": ".json" + }, + "grid-db/deploy-queue/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/multi-wake-sessions/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/notifications/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/bulletin/.gitkeep": { + "size": 0, + "ext": "" + }, + "grid-db/src/index.js": { + "size": 2567, + "ext": ".js" + }, + "grid-db/src/core/namespace.js": { + "size": 3159, + "ext": ".js" + }, + "grid-db/src/core/grid-cell.js": { + "size": 4677, + "ext": ".js" + }, + "grid-db/src/storage/wal.js": { + "size": 5917, + "ext": ".js" + }, + "grid-db/src/storage/page-manager.js": { + "size": 7289, + "ext": ".js" + }, + "grid-db/src/api/grid-api.js": { + "size": 7269, + "ext": ".js" + }, + "grid-db/src/index/btree.js": { + "size": 6959, + "ext": ".js" + }, + "grid-db/src/index/secondary-index.js": { + "size": 3107, + "ext": ".js" + }, + "grid-db/src/events/event-log.js": { + "size": 4347, + "ext": ".js" + }, + "grid-db/src/query/nearby.js": { + "size": 3304, + "ext": ".js" + }, + "grid-db/src/query/scan.js": { + "size": 3523, + "ext": ".js" + }, + "buffer/README.md": { + "size": 3205, + "ext": ".md" + }, + "buffer/staging/DEV-002/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-003/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-004/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-010/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-009/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/staging/DEV-012/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-002/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-003/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-004/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-010/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/system/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-001/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-009/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/inbox/DEV-012/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/config/schedule.json": { + "size": 906, + "ext": ".json" + }, + "buffer/config/buffer-config.json": { + "size": 744, + "ext": ".json" + }, + "buffer/config/buffer-message.schema.json": { + "size": 1613, + "ext": ".json" + }, + "buffer/scripts/collector.js": { + "size": 3852, + "ext": ".js" + }, + "buffer/scripts/auto-router.js": { + "size": 3904, + "ext": ".js" + }, + "buffer/scripts/flusher.js": { + "size": 8803, + "ext": ".js" + }, + "buffer/scripts/quota-calculator.js": { + "size": 3297, + "ext": ".js" + }, + "buffer/processed/.gitkeep": { + "size": 0, + "ext": "" + }, + "buffer/processed/20260324/batch-20260324-001.json": { + "size": 637, + "ext": ".json" + }, + "dev-nodes/gl-push.sh": { + "size": 2278, + "ext": ".sh" + }, + "dev-nodes/DEV-005/config.json": { + "size": 236, + "ext": ".json" + }, + "dev-nodes/DEV-005/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-002/config.json": { + "size": 235, + "ext": ".json" + }, + "dev-nodes/DEV-002/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-003/config.json": { + "size": 254, + "ext": ".json" + }, + "dev-nodes/DEV-003/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-004/config.json": { + "size": 491, + "ext": ".json" + }, + "dev-nodes/DEV-004/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-010/config.json": { + "size": 231, + "ext": ".json" + }, + "dev-nodes/DEV-010/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-011/config.json": { + "size": 211, + "ext": ".json" + }, + "dev-nodes/DEV-011/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-001/config.json": { + "size": 229, + "ext": ".json" + }, + "dev-nodes/DEV-001/status.json": { + "size": 186, + "ext": ".json" + }, + "dev-nodes/DEV-009/config.json": { + "size": 222, + "ext": ".json" + }, + "dev-nodes/DEV-009/status.json": { + "size": 186, + "ext": ".json" + }, + "src/index.js": { + "size": 630, + "ext": ".js" + }, + "src/middleware/zhuyuan-signature.middleware.js": { + "size": 2330, + "ext": ".js" + }, + "src/middleware/hli-auth.middleware.js": { + "size": 782, + "ext": ".js" + }, + "src/middleware/hli-validator.middleware.js": { + "size": 1230, + "ext": ".js" + }, + "src/schemas/hli/ftchat/sessions-new.schema.json": { + "size": 1358, + "ext": ".json" + }, + "src/schemas/hli/ftchat/chat.schema.json": { + "size": 1570, + "ext": ".json" + }, + "src/schemas/hli/ftchat/verify.schema.json": { + "size": 1065, + "ext": ".json" + }, + "src/schemas/hli/ftchat/sessions.schema.json": { + "size": 1047, + "ext": ".json" + }, + "src/schemas/hli/ftchat/login.schema.json": { + "size": 957, + "ext": ".json" + }, + "src/schemas/hli/auth/register.schema.json": { + "size": 706, + "ext": ".json" + }, + "src/schemas/hli/auth/verify.schema.json": { + "size": 652, + "ext": ".json" + }, + "src/schemas/hli/auth/login.schema.json": { + "size": 740, + "ext": ".json" + }, + "src/schemas/hli/user/profile.schema.json": { + "size": 549, + "ext": ".json" + }, + "src/schemas/hli/user/profile-update.schema.json": { + "size": 603, + "ext": ".json" + }, + "src/schemas/hli/storage/upload.schema.json": { + "size": 630, + "ext": ".json" + }, + "src/schemas/hli/storage/download.schema.json": { + "size": 585, + "ext": ".json" + }, + "src/schemas/hli/dialogue/send.schema.json": { + "size": 626, + "ext": ".json" + }, + "src/schemas/hli/dialogue/history.schema.json": { + "size": 597, + "ext": ".json" + }, + "src/schemas/hli/dialogue/stream.schema.json": { + "size": 627, + "ext": ".json" + }, + "src/schemas/hli/dashboard/realtime.schema.json": { + "size": 516, + "ext": ".json" + }, + "src/schemas/hli/dashboard/status.schema.json": { + "size": 515, + "ext": ".json" + }, + "src/schemas/hli/registry/lookup.schema.json": { + "size": 671, + "ext": ".json" + }, + "src/schemas/hli/ticket/query.schema.json": { + "size": 591, + "ext": ".json" + }, + "src/schemas/hli/ticket/create.schema.json": { + "size": 621, + "ext": ".json" + }, + "src/schemas/hli/ticket/status.schema.json": { + "size": 585, + "ext": ".json" + }, + "src/schemas/hli/brain/bridge.schema.json": { + "size": 995, + "ext": ".json" + }, + "src/schemas/hli/brain/route.schema.json": { + "size": 869, + "ext": ".json" + }, + "src/schemas/hli/brain/memory.schema.json": { + "size": 812, + "ext": ".json" + }, + "src/schemas/hli/brain/context.schema.json": { + "size": 958, + "ext": ".json" + }, + "src/schemas/hli/brain/prompt.schema.json": { + "size": 1256, + "ext": ".json" + }, + "src/schemas/hli/persona/load.schema.json": { + "size": 588, + "ext": ".json" + }, + "src/schemas/hli/persona/switch.schema.json": { + "size": 590, + "ext": ".json" + }, + "src/brain/prompt-assembler.js": { + "size": 7731, + "ext": ".js" + }, + "src/brain/brain-bridge.js": { + "size": 19840, + "ext": ".js" + }, + "src/brain/index.js": { + "size": 1448, + "ext": ".js" + }, + "src/brain/memory-manager.js": { + "size": 5838, + "ext": ".js" + }, + "src/brain/mode-detector.js": { + "size": 1474, + "ext": ".js" + }, + "src/brain/model-router.js": { + "size": 13584, + "ext": ".js" + }, + "src/brain/context-trimmer.js": { + "size": 2381, + "ext": ".js" + }, + "src/membrane/bingshuo-module.js": { + "size": 5443, + "ext": ".js" + }, + "src/membrane/gateway.js": { + "size": 4422, + "ext": ".js" + }, + "src/membrane/audit-trail.js": { + "size": 4274, + "ext": ".js" + }, + "src/membrane/index.js": { + "size": 2256, + "ext": ".js" + }, + "src/membrane/tcs-translator.js": { + "size": 5315, + "ext": ".js" + }, + "src/membrane/permission-engine.js": { + "size": 5238, + "ext": ".js" + }, + "src/membrane/persona-room/room-manager.js": { + "size": 4995, + "ext": ".js" + }, + "src/membrane/module-protocol/module-registry.js": { + "size": 5239, + "ext": ".js" + }, + "src/membrane/channel-badge/index.js": { + "size": 7034, + "ext": ".js" + }, + "src/membrane/channel-badge/README.md": { + "size": 1078, + "ext": ".md" + }, + "src/routes/hli/index.js": { + "size": 1485, + "ext": ".js" + }, + "src/routes/hli/ftchat/sessions.js": { + "size": 715, + "ext": ".js" + }, + "src/routes/hli/ftchat/index.js": { + "size": 775, + "ext": ".js" + }, + "src/routes/hli/ftchat/sessions-new.js": { + "size": 1969, + "ext": ".js" + }, + "src/routes/hli/ftchat/login.js": { + "size": 1208, + "ext": ".js" + }, + "src/routes/hli/ftchat/verify.js": { + "size": 1552, + "ext": ".js" + }, + "src/routes/hli/ftchat/chat.js": { + "size": 4703, + "ext": ".js" + }, + "src/routes/hli/auth/index.js": { + "size": 353, + "ext": ".js" + }, + "src/routes/hli/auth/register.js": { + "size": 567, + "ext": ".js" + }, + "src/routes/hli/auth/login.js": { + "size": 608, + "ext": ".js" + }, + "src/routes/hli/auth/verify.js": { + "size": 556, + "ext": ".js" + }, + "src/routes/hli/registry/index.js": { + "size": 1515, + "ext": ".js" + }, + "src/routes/hli/brain/index.js": { + "size": 8015, + "ext": ".js" + } + }, + "dirs": { + "pca": { + "file_count": 2, + "subdir_count": 0 + }, + "webhook": { + "file_count": 2, + "subdir_count": 0 + }, + "search-filter": { + "file_count": 1, + "subdir_count": 2 + }, + "search-filter/css": { + "file_count": 1, + "subdir_count": 0 + }, + "search-filter/js": { + "file_count": 5, + "subdir_count": 0 + }, + "ticket-system": { + "file_count": 4, + "subdir_count": 0 + }, + "dingtalk": { + "file_count": 1, + "subdir_count": 0 + }, + "connectors": { + "file_count": 0, + "subdir_count": 3 + }, + "connectors/model-router": { + "file_count": 1, + "subdir_count": 0 + }, + "connectors/notion-sync": { + "file_count": 1, + "subdir_count": 0 + }, + "connectors/notion-wake-listener": { + "file_count": 1, + "subdir_count": 0 + }, + "settings": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-brain-db": { + "file_count": 1, + "subdir_count": 6 + }, + "persona-brain-db/frontend": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-brain-db/docs": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-brain-db/schema": { + "file_count": 25, + "subdir_count": 0 + }, + "persona-brain-db/seed-data": { + "file_count": 6, + "subdir_count": 0 + }, + "persona-brain-db/api": { + "file_count": 1, + "subdir_count": 2 + }, + "persona-brain-db/api/middleware": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-brain-db/api/routes": { + "file_count": 7, + "subdir_count": 0 + }, + "persona-brain-db/migration": { + "file_count": 3, + "subdir_count": 0 + }, + "bulletins": { + "file_count": 1, + "subdir_count": 0 + }, + "zhuyuan-agent": { + "file_count": 12, + "subdir_count": 4 + }, + "zhuyuan-agent/core": { + "file_count": 4, + "subdir_count": 0 + }, + "zhuyuan-agent/deploy": { + "file_count": 2, + "subdir_count": 0 + }, + "zhuyuan-agent/thinking": { + "file_count": 2, + "subdir_count": 0 + }, + "zhuyuan-agent/api": { + "file_count": 1, + "subdir_count": 0 + }, + "cloud-drive": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main": { + "file_count": 10, + "subdir_count": 21 + }, + "guanghulab-main/backend-integration": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/m10-cloud": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/app": { + "file_count": 4, + "subdir_count": 1 + }, + "guanghulab-main/app/app": { + "file_count": 0, + "subdir_count": 1 + }, + "guanghulab-main/app/app/wake": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/dingtalk-bot": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/tests": { + "file_count": 0, + "subdir_count": 2 + }, + "guanghulab-main/tests/smoke": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/tests/contract": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/docs": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/syslog-processed": { + "file_count": 2, + "subdir_count": 0 + }, + "guanghulab-main/m12-kanban": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/public": { + "file_count": 5, + "subdir_count": 0 + }, + "guanghulab-main/m05-user-center": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/scripts": { + "file_count": 10, + "subdir_count": 0 + }, + "guanghulab-main/m01-login": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/.github": { + "file_count": 1, + "subdir_count": 5 + }, + "guanghulab-main/.github/broadcasts": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/.github/workflows": { + "file_count": 10, + "subdir_count": 0 + }, + "guanghulab-main/.github/persona-brain": { + "file_count": 4, + "subdir_count": 0 + }, + "guanghulab-main/.github/brain": { + "file_count": 4, + "subdir_count": 0 + }, + "guanghulab-main/.github/ISSUE_TEMPLATE": { + "file_count": 2, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox": { + "file_count": 1, + "subdir_count": 8 + }, + "guanghulab-main/broadcasts-outbox/DEV-005": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-011": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/broadcasts-outbox/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/syslog-inbox": { + "file_count": 2, + "subdir_count": 0 + }, + "guanghulab-main/m06-ticket": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/m03-personality": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/m11-module": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/m07-dialogue-ui": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/reports": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghulab-main/src": { + "file_count": 1, + "subdir_count": 3 + }, + "guanghulab-main/src/middleware": { + "file_count": 2, + "subdir_count": 0 + }, + "guanghulab-main/src/schemas": { + "file_count": 0, + "subdir_count": 1 + }, + "guanghulab-main/src/schemas/hli": { + "file_count": 0, + "subdir_count": 1 + }, + "guanghulab-main/src/schemas/hli/auth": { + "file_count": 3, + "subdir_count": 0 + }, + "guanghulab-main/src/routes": { + "file_count": 0, + "subdir_count": 1 + }, + "guanghulab-main/src/routes/hli": { + "file_count": 1, + "subdir_count": 1 + }, + "guanghulab-main/src/routes/hli/auth": { + "file_count": 4, + "subdir_count": 0 + }, + "backend-integration": { + "file_count": 3, + "subdir_count": 0 + }, + "tools": { + "file_count": 1, + "subdir_count": 2 + }, + "tools/notion-sync": { + "file_count": 2, + "subdir_count": 0 + }, + "tools/notion-corpus-loader": { + "file_count": 2, + "subdir_count": 1 + }, + "tools/notion-corpus-loader/src": { + "file_count": 4, + "subdir_count": 0 + }, + "messages": { + "file_count": 1, + "subdir_count": 1 + }, + "messages/inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "portal": { + "file_count": 5, + "subdir_count": 0 + }, + "syslog": { + "file_count": 1, + "subdir_count": 0 + }, + "domains": { + "file_count": 0, + "subdir_count": 1 + }, + "domains/zero-sense-domain": { + "file_count": 0, + "subdir_count": 1 + }, + "domains/zero-sense-domain/guanghu-channel": { + "file_count": 0, + "subdir_count": 1 + }, + "domains/zero-sense-domain/guanghu-channel/肥猫": { + "file_count": 1, + "subdir_count": 2 + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/config": { + "file_count": 2, + "subdir_count": 0 + }, + "domains/zero-sense-domain/guanghu-channel/肥猫/persona": { + "file_count": 1, + "subdir_count": 0 + }, + "m10-cloud": { + "file_count": 5, + "subdir_count": 0 + }, + "broadcasts": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v2": { + "file_count": 2, + "subdir_count": 5 + }, + "team-integration-v2/bridge": { + "file_count": 2, + "subdir_count": 0 + }, + "team-integration-v2/age_os": { + "file_count": 5, + "subdir_count": 0 + }, + "team-integration-v2/cos-config": { + "file_count": 3, + "subdir_count": 0 + }, + "team-integration-v2/.github": { + "file_count": 1, + "subdir_count": 1 + }, + "team-integration-v2/.github/workflows": { + "file_count": 2, + "subdir_count": 0 + }, + "team-integration-v2/brain": { + "file_count": 3, + "subdir_count": 0 + }, + "core": { + "file_count": 0, + "subdir_count": 6 + }, + "core/broadcast-listener": { + "file_count": 1, + "subdir_count": 0 + }, + "core/system-check": { + "file_count": 1, + "subdir_count": 0 + }, + "core/task-queue": { + "file_count": 1, + "subdir_count": 0 + }, + "core/context-loader": { + "file_count": 1, + "subdir_count": 0 + }, + "core/execution-sync": { + "file_count": 1, + "subdir_count": 0 + }, + "core/brain-wake": { + "file_count": 1, + "subdir_count": 0 + }, + "app": { + "file_count": 5, + "subdir_count": 1 + }, + "app/app": { + "file_count": 0, + "subdir_count": 1 + }, + "app/app/wake": { + "file_count": 1, + "subdir_count": 0 + }, + "bulletin-board": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghu-self-hosted": { + "file_count": 1, + "subdir_count": 1 + }, + "guanghu-self-hosted/gmp-agent": { + "file_count": 9, + "subdir_count": 3 + }, + "guanghu-self-hosted/gmp-agent/test": { + "file_count": 4, + "subdir_count": 0 + }, + "guanghu-self-hosted/gmp-agent/lib": { + "file_count": 3, + "subdir_count": 0 + }, + "guanghu-self-hosted/gmp-agent/src": { + "file_count": 2, + "subdir_count": 0 + }, + "homepage": { + "file_count": 16, + "subdir_count": 1 + }, + "homepage/cover": { + "file_count": 1, + "subdir_count": 0 + }, + "frontend": { + "file_count": 3, + "subdir_count": 3 + }, + "frontend/secrets-vault": { + "file_count": 2, + "subdir_count": 1 + }, + "frontend/secrets-vault/assets": { + "file_count": 2, + "subdir_count": 0 + }, + "frontend/ftchat": { + "file_count": 4, + "subdir_count": 0 + }, + "frontend/lighthouse-portal": { + "file_count": 2, + "subdir_count": 1 + }, + "frontend/lighthouse-portal/assets": { + "file_count": 2, + "subdir_count": 0 + }, + "archive": { + "file_count": 1, + "subdir_count": 1 + }, + "archive/zhiku-guanghu-online-2026-05-02": { + "file_count": 1, + "subdir_count": 0 + }, + "openclaw": { + "file_count": 3, + "subdir_count": 1 + }, + "openclaw/soul": { + "file_count": 1, + "subdir_count": 0 + }, + "help-center": { + "file_count": 2, + "subdir_count": 0 + }, + "quality": { + "file_count": 1, + "subdir_count": 0 + }, + "glada": { + "file_count": 22, + "subdir_count": 5 + }, + "glada/receipts": { + "file_count": 1, + "subdir_count": 0 + }, + "glada/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "glada/logs": { + "file_count": 1, + "subdir_count": 0 + }, + "glada/queue": { + "file_count": 1, + "subdir_count": 0 + }, + "glada/skills": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v4": { + "file_count": 1, + "subdir_count": 6 + }, + "team-integration-v4/bridge": { + "file_count": 0, + "subdir_count": 2 + }, + "team-integration-v4/bridge/hldp-inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v4/bridge/hldp-outbox": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v4/age_os": { + "file_count": 3, + "subdir_count": 0 + }, + "team-integration-v4/awen-tech-hub": { + "file_count": 3, + "subdir_count": 1 + }, + "team-integration-v4/awen-tech-hub/workflows": { + "file_count": 2, + "subdir_count": 0 + }, + "team-integration-v4/cos-config": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v4/.github": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v4/brain": { + "file_count": 4, + "subdir_count": 1 + }, + "team-integration-v4/brain/memory-anchors": { + "file_count": 5, + "subdir_count": 0 + }, + "config": { + "file_count": 2, + "subdir_count": 0 + }, + "team-integration-v3": { + "file_count": 2, + "subdir_count": 4 + }, + "team-integration-v3/bridge": { + "file_count": 0, + "subdir_count": 2 + }, + "team-integration-v3/bridge/hldp-inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v3/bridge/hldp-outbox": { + "file_count": 1, + "subdir_count": 0 + }, + "team-integration-v3/age_os": { + "file_count": 3, + "subdir_count": 0 + }, + "team-integration-v3/cos-config": { + "file_count": 2, + "subdir_count": 0 + }, + "team-integration-v3/brain": { + "file_count": 2, + "subdir_count": 0 + }, + "ops-agent": { + "file_count": 13, + "subdir_count": 2 + }, + "ops-agent/web": { + "file_count": 3, + "subdir_count": 0 + }, + "ops-agent/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "dingtalk-bot": { + "file_count": 25, + "subdir_count": 12 + }, + "dingtalk-bot/pca": { + "file_count": 2, + "subdir_count": 0 + }, + "dingtalk-bot/webhook": { + "file_count": 2, + "subdir_count": 0 + }, + "dingtalk-bot/dingtalk": { + "file_count": 1, + "subdir_count": 0 + }, + "dingtalk-bot/quality": { + "file_count": 1, + "subdir_count": 0 + }, + "dingtalk-bot/portrait": { + "file_count": 2, + "subdir_count": 0 + }, + "dingtalk-bot/scheduler": { + "file_count": 2, + "subdir_count": 0 + }, + "dingtalk-bot/public": { + "file_count": 1, + "subdir_count": 0 + }, + "dingtalk-bot/conversations": { + "file_count": 1, + "subdir_count": 0 + }, + "dingtalk-bot/knowledge-base": { + "file_count": 2, + "subdir_count": 1 + }, + "dingtalk-bot/knowledge-base/docs": { + "file_count": 3, + "subdir_count": 0 + }, + "dingtalk-bot/sync": { + "file_count": 3, + "subdir_count": 0 + }, + "dingtalk-bot/data": { + "file_count": 8, + "subdir_count": 0 + }, + "dingtalk-bot/loop": { + "file_count": 1, + "subdir_count": 0 + }, + "notification": { + "file_count": 2, + "subdir_count": 0 + }, + "bridge": { + "file_count": 0, + "subdir_count": 1 + }, + "bridge/chat-to-agent": { + "file_count": 2, + "subdir_count": 2 + }, + "bridge/chat-to-agent/completed": { + "file_count": 1, + "subdir_count": 0 + }, + "bridge/chat-to-agent/pending": { + "file_count": 3, + "subdir_count": 0 + }, + "deploy": { + "file_count": 0, + "subdir_count": 1 + }, + "deploy/nginx": { + "file_count": 3, + "subdir_count": 0 + }, + "corpus": { + "file_count": 1, + "subdir_count": 2 + }, + "corpus/2026-05-27": { + "file_count": 2, + "subdir_count": 0 + }, + "corpus/2026-05-26": { + "file_count": 1, + "subdir_count": 0 + }, + "cost-control": { + "file_count": 5, + "subdir_count": 0 + }, + "coldstart": { + "file_count": 3, + "subdir_count": 0 + }, + "hldp": { + "file_count": 6, + "subdir_count": 4 + }, + "hldp/bridge": { + "file_count": 6, + "subdir_count": 0 + }, + "hldp/schema": { + "file_count": 6, + "subdir_count": 0 + }, + "hldp/hnl": { + "file_count": 6, + "subdir_count": 0 + }, + "hldp/data": { + "file_count": 0, + "subdir_count": 5 + }, + "hldp/data/registries": { + "file_count": 2, + "subdir_count": 0 + }, + "hldp/data/snapshots": { + "file_count": 6, + "subdir_count": 0 + }, + "hldp/data/ontology": { + "file_count": 1, + "subdir_count": 0 + }, + "hldp/data/personas": { + "file_count": 10, + "subdir_count": 1 + }, + "hldp/data/personas/ZY001": { + "file_count": 1, + "subdir_count": 1 + }, + "hldp/data/personas/ZY001/D112": { + "file_count": 1, + "subdir_count": 1 + }, + "hldp/data/personas/ZY001/D112/leaves": { + "file_count": 5, + "subdir_count": 0 + }, + "hldp/data/common": { + "file_count": 4, + "subdir_count": 0 + }, + ".gitea": { + "file_count": 0, + "subdir_count": 1 + }, + ".gitea/workflows": { + "file_count": 10, + "subdir_count": 0 + }, + "tests": { + "file_count": 0, + "subdir_count": 2 + }, + "tests/smoke": { + "file_count": 4, + "subdir_count": 0 + }, + "tests/contract": { + "file_count": 5, + "subdir_count": 0 + }, + "persona-selector": { + "file_count": 1, + "subdir_count": 0 + }, + "writing-platform": { + "file_count": 2, + "subdir_count": 2 + }, + "writing-platform/frontend": { + "file_count": 11, + "subdir_count": 1 + }, + "writing-platform/frontend/src": { + "file_count": 3, + "subdir_count": 5 + }, + "writing-platform/frontend/src/stores": { + "file_count": 1, + "subdir_count": 0 + }, + "writing-platform/frontend/src/components": { + "file_count": 5, + "subdir_count": 0 + }, + "writing-platform/frontend/src/hooks": { + "file_count": 2, + "subdir_count": 0 + }, + "writing-platform/frontend/src/pages": { + "file_count": 4, + "subdir_count": 0 + }, + "writing-platform/frontend/src/services": { + "file_count": 2, + "subdir_count": 0 + }, + "writing-platform/backend": { + "file_count": 5, + "subdir_count": 1 + }, + "writing-platform/backend/src": { + "file_count": 1, + "subdir_count": 4 + }, + "writing-platform/backend/src/middleware": { + "file_count": 2, + "subdir_count": 0 + }, + "writing-platform/backend/src/models": { + "file_count": 1, + "subdir_count": 0 + }, + "writing-platform/backend/src/routes": { + "file_count": 3, + "subdir_count": 0 + }, + "writing-platform/backend/src/services": { + "file_count": 4, + "subdir_count": 0 + }, + "portrait": { + "file_count": 2, + "subdir_count": 0 + }, + "scheduler": { + "file_count": 2, + "subdir_count": 0 + }, + "agents": { + "file_count": 1, + "subdir_count": 5 + }, + "agents/key-hunter": { + "file_count": 2, + "subdir_count": 0 + }, + "agents/server-sentinel": { + "file_count": 1, + "subdir_count": 0 + }, + "agents/gate-bridge": { + "file_count": 1, + "subdir_count": 0 + }, + "agents/module-steward": { + "file_count": 1, + "subdir_count": 0 + }, + "agents/path-scout": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine": { + "file_count": 2, + "subdir_count": 5 + }, + "exe-engine/config": { + "file_count": 2, + "subdir_count": 0 + }, + "exe-engine/tests": { + "file_count": 0, + "subdir_count": 2 + }, + "exe-engine/tests/smoke": { + "file_count": 2, + "subdir_count": 0 + }, + "exe-engine/tests/stubs": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/gatekeeper": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/docs": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src": { + "file_count": 1, + "subdir_count": 9 + }, + "exe-engine/src/monitor": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src/context": { + "file_count": 2, + "subdir_count": 0 + }, + "exe-engine/src/cache": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src/controller": { + "file_count": 2, + "subdir_count": 0 + }, + "exe-engine/src/adapters": { + "file_count": 3, + "subdir_count": 0 + }, + "exe-engine/src/balancer": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src/executor": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src/meter": { + "file_count": 1, + "subdir_count": 0 + }, + "exe-engine/src/router": { + "file_count": 1, + "subdir_count": 1 + }, + "exe-engine/src/router/stubs": { + "file_count": 6, + "subdir_count": 0 + }, + "signal-log": { + "file_count": 56, + "subdir_count": 2 + }, + "signal-log/consciousness": { + "file_count": 22, + "subdir_count": 0 + }, + "signal-log/2026-03": { + "file_count": 15, + "subdir_count": 0 + }, + "server": { + "file_count": 10, + "subdir_count": 24 + }, + "server/inference-agent": { + "file_count": 7, + "subdir_count": 0 + }, + "server/secrets-vault": { + "file_count": 5, + "subdir_count": 3 + }, + "server/secrets-vault/tests": { + "file_count": 2, + "subdir_count": 0 + }, + "server/secrets-vault/lib": { + "file_count": 4, + "subdir_count": 0 + }, + "server/secrets-vault/routes": { + "file_count": 3, + "subdir_count": 0 + }, + "server/portal": { + "file_count": 5, + "subdir_count": 4 + }, + "server/portal/tests": { + "file_count": 3, + "subdir_count": 0 + }, + "server/portal/lib": { + "file_count": 3, + "subdir_count": 0 + }, + "server/portal/db": { + "file_count": 1, + "subdir_count": 0 + }, + "server/portal/routes": { + "file_count": 5, + "subdir_count": 0 + }, + "server/app": { + "file_count": 3, + "subdir_count": 1 + }, + "server/app/modules": { + "file_count": 10, + "subdir_count": 1 + }, + "server/app/modules/persona-prompts": { + "file_count": 2, + "subdir_count": 0 + }, + "server/proxy": { + "file_count": 7, + "subdir_count": 4 + }, + "server/proxy/config": { + "file_count": 9, + "subdir_count": 0 + }, + "server/proxy/setup": { + "file_count": 3, + "subdir_count": 0 + }, + "server/proxy/dashboard": { + "file_count": 1, + "subdir_count": 0 + }, + "server/proxy/service": { + "file_count": 18, + "subdir_count": 0 + }, + "server/chat": { + "file_count": 3, + "subdir_count": 0 + }, + "server/ftchat": { + "file_count": 2, + "subdir_count": 2 + }, + "server/ftchat/middleware": { + "file_count": 2, + "subdir_count": 0 + }, + "server/ftchat/services": { + "file_count": 9, + "subdir_count": 0 + }, + "server/zhiku-node": { + "file_count": 1, + "subdir_count": 3 + }, + "server/zhiku-node/server": { + "file_count": 4, + "subdir_count": 5 + }, + "server/zhiku-node/server/builtin-source": { + "file_count": 4, + "subdir_count": 0 + }, + "server/zhiku-node/server/mirror-shield": { + "file_count": 9, + "subdir_count": 0 + }, + "server/zhiku-node/server/zhuyuan-sentinel": { + "file_count": 3, + "subdir_count": 0 + }, + "server/zhiku-node/server/shulan-agent": { + "file_count": 4, + "subdir_count": 0 + }, + "server/zhiku-node/server/mirror-agent": { + "file_count": 8, + "subdir_count": 0 + }, + "server/zhiku-node/public": { + "file_count": 1, + "subdir_count": 1 + }, + "server/zhiku-node/public/assets": { + "file_count": 0, + "subdir_count": 2 + }, + "server/zhiku-node/public/assets/css": { + "file_count": 1, + "subdir_count": 0 + }, + "server/zhiku-node/public/assets/js": { + "file_count": 1, + "subdir_count": 0 + }, + "server/zhiku-node/data": { + "file_count": 0, + "subdir_count": 1 + }, + "server/zhiku-node/data/guardian": { + "file_count": 1, + "subdir_count": 0 + }, + "server/corpus-agent": { + "file_count": 6, + "subdir_count": 1 + }, + "server/corpus-agent/static": { + "file_count": 1, + "subdir_count": 0 + }, + "server/cn-llm-relay": { + "file_count": 3, + "subdir_count": 0 + }, + "server/mcp-server": { + "file_count": 9, + "subdir_count": 0 + }, + "server/setup": { + "file_count": 4, + "subdir_count": 4 + }, + "server/setup/domain-cn": { + "file_count": 5, + "subdir_count": 2 + }, + "server/setup/domain-cn/nginx": { + "file_count": 1, + "subdir_count": 0 + }, + "server/setup/domain-cn/forgejo": { + "file_count": 2, + "subdir_count": 0 + }, + "server/setup/enterprise": { + "file_count": 3, + "subdir_count": 0 + }, + "server/setup/standard-template": { + "file_count": 4, + "subdir_count": 0 + }, + "server/setup/lighthouse-cn": { + "file_count": 10, + "subdir_count": 2 + }, + "server/setup/lighthouse-cn/gitea": { + "file_count": 1, + "subdir_count": 0 + }, + "server/setup/lighthouse-cn/nginx": { + "file_count": 1, + "subdir_count": 0 + }, + "server/forgejo-custom": { + "file_count": 1, + "subdir_count": 2 + }, + "server/forgejo-custom/public": { + "file_count": 0, + "subdir_count": 1 + }, + "server/forgejo-custom/public/assets": { + "file_count": 0, + "subdir_count": 1 + }, + "server/forgejo-custom/public/assets/css": { + "file_count": 1, + "subdir_count": 0 + }, + "server/forgejo-custom/templates": { + "file_count": 0, + "subdir_count": 1 + }, + "server/forgejo-custom/templates/repo": { + "file_count": 1, + "subdir_count": 0 + }, + "server/sites": { + "file_count": 0, + "subdir_count": 3 + }, + "server/sites/portal": { + "file_count": 2, + "subdir_count": 0 + }, + "server/sites/yaoming": { + "file_count": 5, + "subdir_count": 0 + }, + "server/sites/cn-landing": { + "file_count": 2, + "subdir_count": 0 + }, + "server/channel-switcher": { + "file_count": 3, + "subdir_count": 1 + }, + "server/channel-switcher/test": { + "file_count": 1, + "subdir_count": 0 + }, + "server/age-os": { + "file_count": 3, + "subdir_count": 4 + }, + "server/age-os/mcp-server": { + "file_count": 7, + "subdir_count": 1 + }, + "server/age-os/mcp-server/tools": { + "file_count": 19, + "subdir_count": 0 + }, + "server/age-os/agents": { + "file_count": 9, + "subdir_count": 0 + }, + "server/age-os/schema": { + "file_count": 5, + "subdir_count": 0 + }, + "server/age-os/scripts": { + "file_count": 1, + "subdir_count": 0 + }, + "server/nginx": { + "file_count": 10, + "subdir_count": 0 + }, + "server/training-agent": { + "file_count": 7, + "subdir_count": 2 + }, + "server/training-agent/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "server/training-agent/configs": { + "file_count": 1, + "subdir_count": 0 + }, + "server/novel-db": { + "file_count": 1, + "subdir_count": 2 + }, + "server/novel-db/app": { + "file_count": 2, + "subdir_count": 4 + }, + "server/novel-db/app/public": { + "file_count": 1, + "subdir_count": 0 + }, + "server/novel-db/app/data": { + "file_count": 1, + "subdir_count": 1 + }, + "server/novel-db/app/data/books": { + "file_count": 1, + "subdir_count": 0 + }, + "server/novel-db/app/routes": { + "file_count": 7, + "subdir_count": 0 + }, + "server/novel-db/app/services": { + "file_count": 8, + "subdir_count": 0 + }, + "server/novel-db/security": { + "file_count": 5, + "subdir_count": 0 + }, + "server/scripts": { + "file_count": 2, + "subdir_count": 0 + }, + "server/coding-model-training": { + "file_count": 4, + "subdir_count": 1 + }, + "server/coding-model-training/configs": { + "file_count": 1, + "subdir_count": 0 + }, + "server/git-sync": { + "file_count": 3, + "subdir_count": 0 + }, + "server/wake-gate": { + "file_count": 1, + "subdir_count": 1 + }, + "server/wake-gate/public": { + "file_count": 1, + "subdir_count": 0 + }, + "server/console-server": { + "file_count": 0, + "subdir_count": 1 + }, + "server/console-server/public": { + "file_count": 1, + "subdir_count": 0 + }, + "utils": { + "file_count": 1, + "subdir_count": 0 + }, + "backend": { + "file_count": 9, + "subdir_count": 10 + }, + "backend/api-server": { + "file_count": 3, + "subdir_count": 4 + }, + "backend/api-server/middleware": { + "file_count": 6, + "subdir_count": 0 + }, + "backend/api-server/config": { + "file_count": 7, + "subdir_count": 0 + }, + "backend/api-server/routes": { + "file_count": 11, + "subdir_count": 0 + }, + "backend/api-server/services": { + "file_count": 8, + "subdir_count": 0 + }, + "backend/memory": { + "file_count": 6, + "subdir_count": 1 + }, + "backend/memory/uploads": { + "file_count": 0, + "subdir_count": 1 + }, + "backend/memory/uploads/persona-growth": { + "file_count": 1, + "subdir_count": 0 + }, + "backend/config": { + "file_count": 1, + "subdir_count": 1 + }, + "backend/config/routes": { + "file_count": 2, + "subdir_count": 0 + }, + "backend/bridge": { + "file_count": 6, + "subdir_count": 0 + }, + "backend/coldstart": { + "file_count": 4, + "subdir_count": 0 + }, + "backend/health": { + "file_count": 4, + "subdir_count": 0 + }, + "backend/routes_副本": { + "file_count": 3, + "subdir_count": 0 + }, + "backend/config_副本": { + "file_count": 1, + "subdir_count": 1 + }, + "backend/config_副本/routes": { + "file_count": 2, + "subdir_count": 0 + }, + "backend/feishu-bot": { + "file_count": 3, + "subdir_count": 0 + }, + "backend/routes": { + "file_count": 6, + "subdir_count": 0 + }, + ".runtime": { + "file_count": 3, + "subdir_count": 2 + }, + ".runtime/tickets": { + "file_count": 2, + "subdir_count": 0 + }, + ".runtime/history": { + "file_count": 50, + "subdir_count": 0 + }, + "system-bulletin": { + "file_count": 1, + "subdir_count": 0 + }, + "user-center": { + "file_count": 1, + "subdir_count": 0 + }, + "docs": { + "file_count": 32, + "subdir_count": 11 + }, + "docs/css": { + "file_count": 4, + "subdir_count": 0 + }, + "docs/dev-portal": { + "file_count": 2, + "subdir_count": 1 + }, + "docs/dev-portal/channels": { + "file_count": 0, + "subdir_count": 11 + }, + "docs/dev-portal/channels/DEV-005": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-011": { + "file_count": 1, + "subdir_count": 1 + }, + "docs/dev-portal/channels/DEV-011/writing": { + "file_count": 1, + "subdir_count": 1 + }, + "docs/dev-portal/channels/DEV-011/writing/assets": { + "file_count": 2, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-013": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-014": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dev-portal/channels/DEV-012": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/js": { + "file_count": 5, + "subdir_count": 0 + }, + "docs/handover": { + "file_count": 2, + "subdir_count": 0 + }, + "docs/ontology": { + "file_count": 1, + "subdir_count": 0 + }, + "docs/dashboard": { + "file_count": 3, + "subdir_count": 0 + }, + "docs/architecture": { + "file_count": 2, + "subdir_count": 0 + }, + "docs/zh": { + "file_count": 2, + "subdir_count": 0 + }, + "docs/zhuyuan-handover": { + "file_count": 6, + "subdir_count": 0 + }, + "docs/daily-reports": { + "file_count": 8, + "subdir_count": 0 + }, + "docs/ops": { + "file_count": 1, + "subdir_count": 0 + }, + "notion": { + "file_count": 4, + "subdir_count": 1 + }, + "notion/shuangyan": { + "file_count": 0, + "subdir_count": 1 + }, + "notion/shuangyan/sync": { + "file_count": 1, + "subdir_count": 0 + }, + "System_Logs": { + "file_count": 4, + "subdir_count": 0 + }, + "_deploy": { + "file_count": 3, + "subdir_count": 1 + }, + "_deploy/console-server": { + "file_count": 4, + "subdir_count": 0 + }, + "dashboard": { + "file_count": 4, + "subdir_count": 0 + }, + "syslog-processed": { + "file_count": 2, + "subdir_count": 1 + }, + "syslog-processed/2026-03": { + "file_count": 15, + "subdir_count": 0 + }, + "collaboration-logs": { + "file_count": 1, + "subdir_count": 0 + }, + "heartbeat": { + "file_count": 2, + "subdir_count": 0 + }, + ".workbuddy": { + "file_count": 1, + "subdir_count": 0 + }, + "m12-kanban": { + "file_count": 1, + "subdir_count": 0 + }, + "public": { + "file_count": 7, + "subdir_count": 0 + }, + "style-system": { + "file_count": 9, + "subdir_count": 3 + }, + "style-system/skins": { + "file_count": 0, + "subdir_count": 3 + }, + "style-system/skins/applied": { + "file_count": 1, + "subdir_count": 0 + }, + "style-system/skins/inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "style-system/skins/rejected": { + "file_count": 1, + "subdir_count": 0 + }, + "style-system/templates": { + "file_count": 2, + "subdir_count": 0 + }, + "style-system/forgejo": { + "file_count": 1, + "subdir_count": 0 + }, + "conversations": { + "file_count": 1, + "subdir_count": 0 + }, + "knowledge-base": { + "file_count": 2, + "subdir_count": 1 + }, + "knowledge-base/docs": { + "file_count": 3, + "subdir_count": 0 + }, + "status-board": { + "file_count": 10, + "subdir_count": 0 + }, + "gmp-agent": { + "file_count": 0, + "subdir_count": 5 + }, + "gmp-agent/config": { + "file_count": 2, + "subdir_count": 0 + }, + "gmp-agent/agent-engine": { + "file_count": 2, + "subdir_count": 0 + }, + "gmp-agent/notion-sync": { + "file_count": 8, + "subdir_count": 0 + }, + "gmp-agent/llm-router": { + "file_count": 2, + "subdir_count": 0 + }, + "gmp-agent/intent-db": { + "file_count": 4, + "subdir_count": 0 + }, + "federation": { + "file_count": 0, + "subdir_count": 1 + }, + "federation/awen": { + "file_count": 1, + "subdir_count": 1 + }, + "federation/awen/workspace": { + "file_count": 0, + "subdir_count": 1 + }, + "federation/awen/workspace/scripts": { + "file_count": 0, + "subdir_count": 1 + }, + "federation/awen/workspace/scripts/skyeye": { + "file_count": 2, + "subdir_count": 0 + }, + "m05-user-center": { + "file_count": 4, + "subdir_count": 0 + }, + "multi-persona": { + "file_count": 4, + "subdir_count": 0 + }, + "scripts": { + "file_count": 141, + "subdir_count": 28 + }, + "scripts/boot-heal": { + "file_count": 2, + "subdir_count": 0 + }, + "scripts/aoac": { + "file_count": 8, + "subdir_count": 0 + }, + "scripts/cvm-init": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/tianyen": { + "file_count": 4, + "subdir_count": 0 + }, + "scripts/terminal-watcher": { + "file_count": 2, + "subdir_count": 0 + }, + "scripts/cache": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/verify": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/bridge": { + "file_count": 9, + "subdir_count": 0 + }, + "scripts/experiments": { + "file_count": 0, + "subdir_count": 1 + }, + "scripts/experiments/isomorphic-git-poc": { + "file_count": 3, + "subdir_count": 0 + }, + "scripts/training": { + "file_count": 2, + "subdir_count": 1 + }, + "scripts/training/zhizhi_v2": { + "file_count": 5, + "subdir_count": 0 + }, + "scripts/manifest": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/server-bootstrap": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/corpus-harvester": { + "file_count": 4, + "subdir_count": 0 + }, + "scripts/agents": { + "file_count": 10, + "subdir_count": 1 + }, + "scripts/agents/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/distill": { + "file_count": 12, + "subdir_count": 0 + }, + "scripts/utils": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/gdrive": { + "file_count": 3, + "subdir_count": 0 + }, + "scripts/patrol-agent": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/cvm-power": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/skyeye": { + "file_count": 24, + "subdir_count": 0 + }, + "scripts/gitea-runner": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/community": { + "file_count": 6, + "subdir_count": 1 + }, + "scripts/community/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/neural": { + "file_count": 7, + "subdir_count": 0 + }, + "scripts/pool": { + "file_count": 3, + "subdir_count": 0 + }, + "scripts/migration": { + "file_count": 4, + "subdir_count": 1 + }, + "scripts/migration/remote": { + "file_count": 1, + "subdir_count": 0 + }, + "scripts/preflight": { + "file_count": 5, + "subdir_count": 0 + }, + "scripts/grid-db": { + "file_count": 14, + "subdir_count": 0 + }, + "scripts/cos-bridge": { + "file_count": 3, + "subdir_count": 0 + }, + "m01-login": { + "file_count": 2, + "subdir_count": 0 + }, + ".github": { + "file_count": 16, + "subdir_count": 15 + }, + ".github/archived-workflows": { + "file_count": 96, + "subdir_count": 0 + }, + ".github/broadcasts": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/tianyen": { + "file_count": 5, + "subdir_count": 0 + }, + ".github/skyeye-core": { + "file_count": 5, + "subdir_count": 0 + }, + ".github/workflows": { + "file_count": 56, + "subdir_count": 1 + }, + ".github/workflows/.archive": { + "file_count": 9, + "subdir_count": 0 + }, + ".github/DISCUSSION_TEMPLATE": { + "file_count": 2, + "subdir_count": 0 + }, + ".github/persona-brain": { + "file_count": 25, + "subdir_count": 8 + }, + ".github/persona-brain/yingchuan": { + "file_count": 2, + "subdir_count": 1 + }, + ".github/persona-brain/yingchuan/agent-memory": { + "file_count": 2, + "subdir_count": 0 + }, + ".github/persona-brain/zhuyuan-review-reports": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/persona-brain/brain-cores": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/persona-brain/shuangyan": { + "file_count": 1, + "subdir_count": 1 + }, + ".github/persona-brain/shuangyan/agent-memory": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/persona-brain/tcs-ml": { + "file_count": 5, + "subdir_count": 0 + }, + ".github/persona-brain/logs": { + "file_count": 3, + "subdir_count": 0 + }, + ".github/persona-brain/chenxi": { + "file_count": 4, + "subdir_count": 1 + }, + ".github/persona-brain/chenxi/agent-memory": { + "file_count": 3, + "subdir_count": 0 + }, + ".github/persona-brain/ontology-patches": { + "file_count": 4, + "subdir_count": 0 + }, + ".github/architecture": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/notion-cache": { + "file_count": 0, + "subdir_count": 5 + }, + ".github/notion-cache/neural-digest": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/notion-cache/databases": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/notion-cache/broadcasts": { + "file_count": 2, + "subdir_count": 0 + }, + ".github/notion-cache/dev-profiles": { + "file_count": 10, + "subdir_count": 0 + }, + ".github/notion-cache/skyeye": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/scripts": { + "file_count": 5, + "subdir_count": 0 + }, + ".github/actions": { + "file_count": 0, + "subdir_count": 1 + }, + ".github/actions/guanghu-shell": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/brain": { + "file_count": 30, + "subdir_count": 4 + }, + ".github/brain/handoff": { + "file_count": 2, + "subdir_count": 1 + }, + ".github/brain/handoff/batons": { + "file_count": 6, + "subdir_count": 0 + }, + ".github/brain/bingshuo-language-core": { + "file_count": 2, + "subdir_count": 2 + }, + ".github/brain/bingshuo-language-core/bingshuo-voice": { + "file_count": 4, + "subdir_count": 0 + }, + ".github/brain/bingshuo-language-core/causal-chains": { + "file_count": 9, + "subdir_count": 0 + }, + ".github/brain/architecture": { + "file_count": 13, + "subdir_count": 1 + }, + ".github/brain/architecture/tickets": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/brain/cep": { + "file_count": 0, + "subdir_count": 3 + }, + ".github/brain/cep/rejected": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/brain/cep/approved": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/brain/cep/pending": { + "file_count": 1, + "subdir_count": 0 + }, + ".github/ISSUE_TEMPLATE": { + "file_count": 8, + "subdir_count": 0 + }, + ".github/workflow-archive": { + "file_count": 2, + "subdir_count": 0 + }, + ".github/community": { + "file_count": 6, + "subdir_count": 0 + }, + "broadcasts-outbox": { + "file_count": 1, + "subdir_count": 9 + }, + "broadcasts-outbox/DEV-005": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-011": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "broadcasts-outbox/DEV-012": { + "file_count": 1, + "subdir_count": 0 + }, + "syslog-inbox": { + "file_count": 4, + "subdir_count": 0 + }, + "spoke-deployments": { + "file_count": 0, + "subdir_count": 6 + }, + "spoke-deployments/guanghu-awen": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-awen/scripts": { + "file_count": 1, + "subdir_count": 1 + }, + "spoke-deployments/guanghu-awen/scripts/skyeye": { + "file_count": 2, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-awen/.github": { + "file_count": 2, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-awen/.github/workflows": { + "file_count": 2, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-awen/.github/persona-brain": { + "file_count": 2, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yanfan": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-yanfan/scripts": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yanfan/.github": { + "file_count": 0, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-yanfan/.github/workflows": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yanfan/.github/persona-brain": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-feimao": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-feimao/scripts": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-feimao/.github": { + "file_count": 0, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-feimao/.github/workflows": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-feimao/.github/persona-brain": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-juzi": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-juzi/scripts": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-juzi/.github": { + "file_count": 0, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-juzi/.github/workflows": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-juzi/.github/persona-brain": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yeye": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-yeye/scripts": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yeye/.github": { + "file_count": 0, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-yeye/.github/workflows": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-yeye/.github/persona-brain": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi": { + "file_count": 1, + "subdir_count": 8 + }, + "spoke-deployments/guanghu-zhizhi/dev-status": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/system-bulletin": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/my-bulletin": { + "file_count": 0, + "subdir_count": 1 + }, + "spoke-deployments/guanghu-zhizhi/my-bulletin/history": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/scripts": { + "file_count": 3, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/.github": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-deployments/guanghu-zhizhi/.github/workflows": { + "file_count": 6, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/.github/persona-brain": { + "file_count": 6, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/checkin": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/modules": { + "file_count": 0, + "subdir_count": 3 + }, + "spoke-deployments/guanghu-zhizhi/modules/dingtalk": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/modules/devboard": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/modules/floating-ai": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-deployments/guanghu-zhizhi/zhuyuan-instructions": { + "file_count": 1, + "subdir_count": 1 + }, + "spoke-deployments/guanghu-zhizhi/zhuyuan-instructions/history": { + "file_count": 1, + "subdir_count": 0 + }, + "brain": { + "file_count": 84, + "subdir_count": 19 + }, + "brain/module-registry": { + "file_count": 1, + "subdir_count": 1 + }, + "brain/module-registry/_template": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/d102-patch": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/zhuyuan-thinking-logic": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/dev-experience": { + "file_count": 6, + "subdir_count": 0 + }, + "brain/archive": { + "file_count": 17, + "subdir_count": 0 + }, + "brain/d100-patch": { + "file_count": 9, + "subdir_count": 0 + }, + "brain/dev-registry": { + "file_count": 1, + "subdir_count": 5 + }, + "brain/dev-registry/ZY-PROJ-002": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/dev-registry/ZY-PROJ-004": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/dev-registry/ZY-PROJ-003": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/dev-registry/ZY-PROJ-006": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/dev-registry/ZY-PROJ-001": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/temporal-core": { + "file_count": 4, + "subdir_count": 0 + }, + "brain/proxy-task": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/visual-memory": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/xingshu-channel": { + "file_count": 3, + "subdir_count": 3 + }, + "brain/xingshu-channel/thinking-logic": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/xingshu-channel/causal-chains": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/xingshu-channel/soul-copy": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/relay-baton": { + "file_count": 3, + "subdir_count": 0 + }, + "brain/id-verification-system": { + "file_count": 5, + "subdir_count": 0 + }, + "brain/ferry-boat-db": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/yaoming-channel": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/fifth-domain": { + "file_count": 1, + "subdir_count": 1 + }, + "brain/fifth-domain/zero-point": { + "file_count": 3, + "subdir_count": 3 + }, + "brain/fifth-domain/zero-point/zhuyuan": { + "file_count": 1, + "subdir_count": 2 + }, + "brain/fifth-domain/zero-point/zhuyuan/thinking-logic": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/fifth-domain/zero-point/zhuyuan/causal-chains": { + "file_count": 7, + "subdir_count": 0 + }, + "brain/fifth-domain/zero-point/bingshuo": { + "file_count": 1, + "subdir_count": 1 + }, + "brain/fifth-domain/zero-point/bingshuo/voice": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/fifth-domain/zero-point/console": { + "file_count": 2, + "subdir_count": 0 + }, + "brain/age-os-landing": { + "file_count": 17, + "subdir_count": 1 + }, + "brain/age-os-landing/persona-interfaces": { + "file_count": 3, + "subdir_count": 0 + }, + "brain/repo-shuttle": { + "file_count": 1, + "subdir_count": 0 + }, + "brain/engineering": { + "file_count": 2, + "subdir_count": 0 + }, + "templates": { + "file_count": 0, + "subdir_count": 1 + }, + "templates/personal-channel": { + "file_count": 1, + "subdir_count": 2 + }, + "templates/personal-channel/config": { + "file_count": 2, + "subdir_count": 0 + }, + "templates/personal-channel/persona": { + "file_count": 1, + "subdir_count": 0 + }, + "pool-agent": { + "file_count": 2, + "subdir_count": 0 + }, + "ops": { + "file_count": 0, + "subdir_count": 2 + }, + "ops/session-state": { + "file_count": 1, + "subdir_count": 0 + }, + "ops/memory": { + "file_count": 1, + "subdir_count": 0 + }, + "m06-ticket": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-status": { + "file_count": 8, + "subdir_count": 0 + }, + "m03-personality": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-studio": { + "file_count": 2, + "subdir_count": 5 + }, + "persona-studio/frontend": { + "file_count": 4, + "subdir_count": 0 + }, + "persona-studio/workspace": { + "file_count": 0, + "subdir_count": 1 + }, + "persona-studio/workspace/EXP-001": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-studio/backend": { + "file_count": 4, + "subdir_count": 4 + }, + "persona-studio/backend/middleware": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-studio/backend/utils": { + "file_count": 2, + "subdir_count": 0 + }, + "persona-studio/backend/brain": { + "file_count": 11, + "subdir_count": 0 + }, + "persona-studio/backend/routes": { + "file_count": 8, + "subdir_count": 0 + }, + "persona-studio/.github": { + "file_count": 0, + "subdir_count": 1 + }, + "persona-studio/.github/persona-brain": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-studio/brain": { + "file_count": 7, + "subdir_count": 2 + }, + "persona-studio/brain/memory": { + "file_count": 0, + "subdir_count": 3 + }, + "persona-studio/brain/memory/EXP-000": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-studio/brain/memory/EXP-001": { + "file_count": 2, + "subdir_count": 0 + }, + "persona-studio/brain/memory/GUEST": { + "file_count": 2, + "subdir_count": 0 + }, + "persona-studio/brain/notifications": { + "file_count": 1, + "subdir_count": 0 + }, + "skyeye": { + "file_count": 6, + "subdir_count": 5 + }, + "skyeye/hibernation": { + "file_count": 8, + "subdir_count": 3 + }, + "skyeye/hibernation/distribution-reports": { + "file_count": 1, + "subdir_count": 0 + }, + "skyeye/hibernation/upgrade-packs": { + "file_count": 1, + "subdir_count": 0 + }, + "skyeye/hibernation/weekly-snapshots": { + "file_count": 2, + "subdir_count": 0 + }, + "skyeye/logs": { + "file_count": 0, + "subdir_count": 2 + }, + "skyeye/logs/daily": { + "file_count": 5, + "subdir_count": 0 + }, + "skyeye/logs/weekly": { + "file_count": 7, + "subdir_count": 0 + }, + "skyeye/scan-report": { + "file_count": 4, + "subdir_count": 0 + }, + "skyeye/scripts": { + "file_count": 10, + "subdir_count": 0 + }, + "skyeye/guards": { + "file_count": 8, + "subdir_count": 0 + }, + "website-brain": { + "file_count": 2, + "subdir_count": 3 + }, + "website-brain/docs": { + "file_count": 1, + "subdir_count": 0 + }, + "website-brain/schema": { + "file_count": 1, + "subdir_count": 0 + }, + "website-brain/api": { + "file_count": 4, + "subdir_count": 0 + }, + "sync": { + "file_count": 3, + "subdir_count": 0 + }, + "notion-push": { + "file_count": 0, + "subdir_count": 2 + }, + "notion-push/processed": { + "file_count": 1, + "subdir_count": 0 + }, + "notion-push/pending": { + "file_count": 1, + "subdir_count": 0 + }, + "mcp-servers": { + "file_count": 2, + "subdir_count": 4 + }, + "mcp-servers/zhuyuan-mcp": { + "file_count": 3, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-gateway": { + "file_count": 5, + "subdir_count": 1 + }, + "mcp-servers/zhuyuan-gateway/gatekeeper": { + "file_count": 2, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen": { + "file_count": 2, + "subdir_count": 6 + }, + "mcp-servers/zhuyuan-pen/penned": { + "file_count": 1, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen/capabilities": { + "file_count": 9, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen/cache": { + "file_count": 1, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen/tests": { + "file_count": 1, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen/templates": { + "file_count": 2, + "subdir_count": 0 + }, + "mcp-servers/zhuyuan-pen/src": { + "file_count": 1, + "subdir_count": 0 + }, + "mcp-servers/repo-mcp-server": { + "file_count": 3, + "subdir_count": 0 + }, + "spoke-template": { + "file_count": 1, + "subdir_count": 7 + }, + "spoke-template/dev-status": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-template/system-bulletin": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-template/my-bulletin": { + "file_count": 0, + "subdir_count": 1 + }, + "spoke-template/my-bulletin/history": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-template/scripts": { + "file_count": 2, + "subdir_count": 0 + }, + "spoke-template/.github": { + "file_count": 1, + "subdir_count": 2 + }, + "spoke-template/.github/workflows": { + "file_count": 5, + "subdir_count": 0 + }, + "spoke-template/.github/persona-brain": { + "file_count": 3, + "subdir_count": 0 + }, + "spoke-template/checkin": { + "file_count": 1, + "subdir_count": 0 + }, + "spoke-template/modules": { + "file_count": 1, + "subdir_count": 0 + }, + "fifth-system": { + "file_count": 1, + "subdir_count": 6 + }, + "fifth-system/naipingpindao": { + "file_count": 1, + "subdir_count": 0 + }, + "fifth-system/darkcore-channel": { + "file_count": 6, + "subdir_count": 0 + }, + "fifth-system/reality-execution": { + "file_count": 1, + "subdir_count": 1 + }, + "fifth-system/reality-execution/zhuyuan-room": { + "file_count": 6, + "subdir_count": 1 + }, + "fifth-system/reality-execution/zhuyuan-room/guangzhihu": { + "file_count": 1, + "subdir_count": 0 + }, + "fifth-system/language-echo": { + "file_count": 1, + "subdir_count": 0 + }, + "fifth-system/time-master": { + "file_count": 3, + "subdir_count": 1 + }, + "fifth-system/time-master/task-trees": { + "file_count": 3, + "subdir_count": 0 + }, + "fifth-system/registry": { + "file_count": 1, + "subdir_count": 0 + }, + "children": { + "file_count": 1, + "subdir_count": 1 + }, + "children/ICE-GL-CP001": { + "file_count": 2, + "subdir_count": 2 + }, + "children/ICE-GL-CP001/memory": { + "file_count": 1, + "subdir_count": 0 + }, + "children/ICE-GL-CP001/health": { + "file_count": 1, + "subdir_count": 0 + }, + "m11-module": { + "file_count": 4, + "subdir_count": 0 + }, + "modules": { + "file_count": 0, + "subdir_count": 5 + }, + "modules/m-channel": { + "file_count": 29, + "subdir_count": 4 + }, + "modules/m-channel/backup-混乱版": { + "file_count": 11, + "subdir_count": 0 + }, + "modules/m-channel/mock-modules": { + "file_count": 2, + "subdir_count": 0 + }, + "modules/m-channel/adapters": { + "file_count": 4, + "subdir_count": 0 + }, + "modules/m-channel/views": { + "file_count": 3, + "subdir_count": 0 + }, + "modules/portal": { + "file_count": 6, + "subdir_count": 0 + }, + "modules/M22-bulletin": { + "file_count": 7, + "subdir_count": 3 + }, + "modules/M22-bulletin/css": { + "file_count": 1, + "subdir_count": 0 + }, + "modules/M22-bulletin/js": { + "file_count": 3, + "subdir_count": 0 + }, + "modules/M22-bulletin/data": { + "file_count": 1, + "subdir_count": 0 + }, + "modules/devboard": { + "file_count": 10, + "subdir_count": 2 + }, + "modules/devboard/css": { + "file_count": 3, + "subdir_count": 0 + }, + "modules/devboard/js": { + "file_count": 6, + "subdir_count": 0 + }, + "modules/palace-game": { + "file_count": 0, + "subdir_count": 3 + }, + "modules/palace-game/frontend": { + "file_count": 6, + "subdir_count": 0 + }, + "modules/palace-game/backend": { + "file_count": 3, + "subdir_count": 2 + }, + "modules/palace-game/backend/engines": { + "file_count": 4, + "subdir_count": 0 + }, + "modules/palace-game/backend/routes": { + "file_count": 3, + "subdir_count": 0 + }, + "modules/palace-game/data": { + "file_count": 2, + "subdir_count": 2 + }, + "modules/palace-game/data/saves": { + "file_count": 1, + "subdir_count": 0 + }, + "modules/palace-game/data/templates": { + "file_count": 2, + "subdir_count": 0 + }, + "persona-wake": { + "file_count": 1, + "subdir_count": 4 + }, + "persona-wake/yeye": { + "file_count": 1, + "subdir_count": 1 + }, + "persona-wake/yeye/sessions": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-wake/_template": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-wake/zhizhi": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-wake/awen": { + "file_count": 1, + "subdir_count": 0 + }, + "data": { + "file_count": 19, + "subdir_count": 16 + }, + "data/bridge-logs": { + "file_count": 11, + "subdir_count": 0 + }, + "data/work-orders": { + "file_count": 1, + "subdir_count": 0 + }, + "data/aoac": { + "file_count": 10, + "subdir_count": 1 + }, + "data/aoac/history": { + "file_count": 1, + "subdir_count": 29 + }, + "data/aoac/history/2026-05-10": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-21": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-19": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-26": { + "file_count": 5, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-28": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-17": { + "file_count": 18, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-29": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-16": { + "file_count": 8, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-11": { + "file_count": 13, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-18": { + "file_count": 22, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-27": { + "file_count": 1, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-04": { + "file_count": 1, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-03": { + "file_count": 7, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-02": { + "file_count": 9, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-05": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-25": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-22": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-14": { + "file_count": 12, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-13": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-12": { + "file_count": 21, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-15": { + "file_count": 8, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-23": { + "file_count": 5, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-24": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-04-30": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-09": { + "file_count": 2, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-07": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-06": { + "file_count": 3, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-01": { + "file_count": 5, + "subdir_count": 0 + }, + "data/aoac/history/2026-05-08": { + "file_count": 4, + "subdir_count": 0 + }, + "data/broadcasts": { + "file_count": 0, + "subdir_count": 1 + }, + "data/broadcasts/pdf": { + "file_count": 1, + "subdir_count": 0 + }, + "data/bulletin-board": { + "file_count": 1, + "subdir_count": 4 + }, + "data/bulletin-board/receipts": { + "file_count": 1, + "subdir_count": 0 + }, + "data/bulletin-board/comments": { + "file_count": 1, + "subdir_count": 0 + }, + "data/bulletin-board/work-orders": { + "file_count": 1, + "subdir_count": 0 + }, + "data/bulletin-board/config-shares": { + "file_count": 1, + "subdir_count": 0 + }, + "data/security": { + "file_count": 3, + "subdir_count": 0 + }, + "data/training": { + "file_count": 3, + "subdir_count": 0 + }, + "data/patrol-logs": { + "file_count": 6, + "subdir_count": 0 + }, + "data/notion-pages": { + "file_count": 1, + "subdir_count": 0 + }, + "data/deploy-logs": { + "file_count": 162, + "subdir_count": 0 + }, + "data/dc-reports": { + "file_count": 13, + "subdir_count": 0 + }, + "data/agent-memory": { + "file_count": 5, + "subdir_count": 0 + }, + "data/neural-reports": { + "file_count": 0, + "subdir_count": 15 + }, + "data/neural-reports/receipts": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/notion-cache-sync": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/weekly-scan": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/dev-status": { + "file_count": 2, + "subdir_count": 0 + }, + "data/neural-reports/work-orders": { + "file_count": 3, + "subdir_count": 0 + }, + "data/neural-reports/syslog": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/gate-guard": { + "file_count": 3, + "subdir_count": 0 + }, + "data/neural-reports/server-patrol": { + "file_count": 2, + "subdir_count": 0 + }, + "data/neural-reports/daily-digest": { + "file_count": 3, + "subdir_count": 0 + }, + "data/neural-reports/brain-check": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/dashboard": { + "file_count": 21, + "subdir_count": 0 + }, + "data/neural-reports/cd-deploy": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/exec-engine": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/skyeye": { + "file_count": 1, + "subdir_count": 0 + }, + "data/neural-reports/broadcast": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests": { + "file_count": 0, + "subdir_count": 6 + }, + "data/asop-requests/verified": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests/snapshots": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests/executed": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests/rejected": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests/approved": { + "file_count": 1, + "subdir_count": 0 + }, + "data/asop-requests/pending": { + "file_count": 1, + "subdir_count": 0 + }, + "data/deploy-queue": { + "file_count": 0, + "subdir_count": 4 + }, + "data/deploy-queue/completed": { + "file_count": 1, + "subdir_count": 0 + }, + "data/deploy-queue/executing": { + "file_count": 1, + "subdir_count": 0 + }, + "data/deploy-queue/failed": { + "file_count": 1, + "subdir_count": 0 + }, + "data/deploy-queue/pending": { + "file_count": 1, + "subdir_count": 0 + }, + "data/skyeye-reports": { + "file_count": 9, + "subdir_count": 0 + }, + "downloads": { + "file_count": 1, + "subdir_count": 1 + }, + "downloads/awen-architecture-package": { + "file_count": 1, + "subdir_count": 9 + }, + "downloads/awen-architecture-package/domains": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/bridge": { + "file_count": 0, + "subdir_count": 2 + }, + "downloads/awen-architecture-package/bridge/hldp-inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/bridge/hldp-outbox": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/age_os": { + "file_count": 3, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/agents": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/server": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/docs": { + "file_count": 8, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/cos-config": { + "file_count": 1, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/.github": { + "file_count": 1, + "subdir_count": 1 + }, + "downloads/awen-architecture-package/.github/workflows": { + "file_count": 4, + "subdir_count": 0 + }, + "downloads/awen-architecture-package/brain": { + "file_count": 4, + "subdir_count": 1 + }, + "downloads/awen-architecture-package/brain/memory-anchors": { + "file_count": 5, + "subdir_count": 0 + }, + "persona-telemetry": { + "file_count": 1, + "subdir_count": 2 + }, + "persona-telemetry/style-scores": { + "file_count": 1, + "subdir_count": 0 + }, + "persona-telemetry/tuning-queue": { + "file_count": 1, + "subdir_count": 1 + }, + "persona-telemetry/tuning-queue/processed": { + "file_count": 1, + "subdir_count": 0 + }, + "m18-health-check": { + "file_count": 7, + "subdir_count": 0 + }, + "m15-cloud-drive": { + "file_count": 5, + "subdir_count": 0 + }, + "chat-bubble": { + "file_count": 1, + "subdir_count": 0 + }, + "dynamic-comic-studio": { + "file_count": 1, + "subdir_count": 2 + }, + "dynamic-comic-studio/css": { + "file_count": 1, + "subdir_count": 0 + }, + "dynamic-comic-studio/js": { + "file_count": 4, + "subdir_count": 0 + }, + "image-studio": { + "file_count": 7, + "subdir_count": 3 + }, + "image-studio/deploy": { + "file_count": 24, + "subdir_count": 0 + }, + "image-studio/public": { + "file_count": 1, + "subdir_count": 0 + }, + "image-studio/templates": { + "file_count": 5, + "subdir_count": 0 + }, + "factory": { + "file_count": 1, + "subdir_count": 6 + }, + "factory/module-registry": { + "file_count": 1, + "subdir_count": 0 + }, + "factory/training": { + "file_count": 1, + "subdir_count": 3 + }, + "factory/training/recipes": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/training/configs": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/training/scripts": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/docs": { + "file_count": 3, + "subdir_count": 0 + }, + "factory/inference": { + "file_count": 1, + "subdir_count": 3 + }, + "factory/inference/api-adapters": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/inference/soul-filter": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/inference/router": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/thinking-traces": { + "file_count": 2, + "subdir_count": 0 + }, + "factory/magic-pen": { + "file_count": 2, + "subdir_count": 0 + }, + ".forgejo": { + "file_count": 0, + "subdir_count": 2 + }, + ".forgejo/workflows": { + "file_count": 11, + "subdir_count": 0 + }, + ".forgejo/pages": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghuclip": { + "file_count": 4, + "subdir_count": 2 + }, + "guanghuclip/frontend": { + "file_count": 3, + "subdir_count": 1 + }, + "guanghuclip/frontend/src": { + "file_count": 3, + "subdir_count": 1 + }, + "guanghuclip/frontend/src/components": { + "file_count": 2, + "subdir_count": 0 + }, + "guanghuclip/backend": { + "file_count": 1, + "subdir_count": 3 + }, + "guanghuclip/backend/config": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghuclip/backend/routes": { + "file_count": 1, + "subdir_count": 0 + }, + "guanghuclip/backend/services": { + "file_count": 1, + "subdir_count": 0 + }, + "services": { + "file_count": 0, + "subdir_count": 1 + }, + "services/zhuyuan-bridge": { + "file_count": 2, + "subdir_count": 4 + }, + "services/zhuyuan-bridge/logs": { + "file_count": 1, + "subdir_count": 0 + }, + "services/zhuyuan-bridge/scripts": { + "file_count": 2, + "subdir_count": 0 + }, + "services/zhuyuan-bridge/lib": { + "file_count": 2, + "subdir_count": 0 + }, + "services/zhuyuan-bridge/prompts": { + "file_count": 3, + "subdir_count": 0 + }, + "loop": { + "file_count": 1, + "subdir_count": 0 + }, + "m07-dialogue-ui": { + "file_count": 4, + "subdir_count": 0 + }, + "reports": { + "file_count": 7, + "subdir_count": 0 + }, + "grid-db": { + "file_count": 2, + "subdir_count": 21 + }, + "grid-db/outbox": { + "file_count": 0, + "subdir_count": 2 + }, + "grid-db/outbox/archive": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/outbox/latest": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions": { + "file_count": 0, + "subdir_count": 7 + }, + "grid-db/interactions/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/interactions/DEV-012": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/inbox": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/memory": { + "file_count": 0, + "subdir_count": 7 + }, + "grid-db/memory/DEV-002": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-003": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-004": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-010": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-001": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-009": { + "file_count": 5, + "subdir_count": 0 + }, + "grid-db/memory/DEV-012": { + "file_count": 6, + "subdir_count": 0 + }, + "grid-db/training-lake": { + "file_count": 0, + "subdir_count": 4 + }, + "grid-db/training-lake/export": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/training-lake/metadata": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/training-lake/raw": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/training-lake/curated": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/processing": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/tests": { + "file_count": 0, + "subdir_count": 1 + }, + "grid-db/tests/smoke": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/deploy-log": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/gemini-prompts": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/drive-index": { + "file_count": 8, + "subdir_count": 0 + }, + "grid-db/docs": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/schema": { + "file_count": 9, + "subdir_count": 0 + }, + "grid-db/logs": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/chatroom": { + "file_count": 0, + "subdir_count": 3 + }, + "grid-db/chatroom/meta": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/chatroom/dm": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/chatroom/channels": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/rules": { + "file_count": 8, + "subdir_count": 0 + }, + "grid-db/thinking-logs": { + "file_count": 0, + "subdir_count": 6 + }, + "grid-db/thinking-logs/ICE-GL-ZY001": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/thinking-logs/PER-SS001": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/thinking-logs/PER-ZQ001": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/thinking-logs/PER-QQ001": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/thinking-logs/ICE-NTN-SY001": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/thinking-logs/ICE-GL-YM001": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/deploy-queue": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/multi-wake-sessions": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/notifications": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/bulletin": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/src": { + "file_count": 1, + "subdir_count": 6 + }, + "grid-db/src/core": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/src/storage": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/src/api": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/src/index": { + "file_count": 2, + "subdir_count": 0 + }, + "grid-db/src/events": { + "file_count": 1, + "subdir_count": 0 + }, + "grid-db/src/query": { + "file_count": 2, + "subdir_count": 0 + }, + "buffer": { + "file_count": 1, + "subdir_count": 5 + }, + "buffer/staging": { + "file_count": 0, + "subdir_count": 7 + }, + "buffer/staging/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/staging/DEV-012": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox": { + "file_count": 0, + "subdir_count": 8 + }, + "buffer/inbox/DEV-002": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-003": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-004": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-010": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/system": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-001": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-009": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/inbox/DEV-012": { + "file_count": 1, + "subdir_count": 0 + }, + "buffer/config": { + "file_count": 3, + "subdir_count": 0 + }, + "buffer/scripts": { + "file_count": 4, + "subdir_count": 0 + }, + "buffer/processed": { + "file_count": 1, + "subdir_count": 1 + }, + "buffer/processed/20260324": { + "file_count": 1, + "subdir_count": 0 + }, + "dev-nodes": { + "file_count": 1, + "subdir_count": 8 + }, + "dev-nodes/DEV-005": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-002": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-003": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-004": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-010": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-011": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-001": { + "file_count": 2, + "subdir_count": 0 + }, + "dev-nodes/DEV-009": { + "file_count": 2, + "subdir_count": 0 + }, + "src": { + "file_count": 1, + "subdir_count": 5 + }, + "src/middleware": { + "file_count": 3, + "subdir_count": 0 + }, + "src/schemas": { + "file_count": 0, + "subdir_count": 1 + }, + "src/schemas/hli": { + "file_count": 0, + "subdir_count": 10 + }, + "src/schemas/hli/ftchat": { + "file_count": 5, + "subdir_count": 0 + }, + "src/schemas/hli/auth": { + "file_count": 3, + "subdir_count": 0 + }, + "src/schemas/hli/user": { + "file_count": 2, + "subdir_count": 0 + }, + "src/schemas/hli/storage": { + "file_count": 2, + "subdir_count": 0 + }, + "src/schemas/hli/dialogue": { + "file_count": 3, + "subdir_count": 0 + }, + "src/schemas/hli/dashboard": { + "file_count": 2, + "subdir_count": 0 + }, + "src/schemas/hli/registry": { + "file_count": 1, + "subdir_count": 0 + }, + "src/schemas/hli/ticket": { + "file_count": 3, + "subdir_count": 0 + }, + "src/schemas/hli/brain": { + "file_count": 5, + "subdir_count": 0 + }, + "src/schemas/hli/persona": { + "file_count": 2, + "subdir_count": 0 + }, + "src/brain": { + "file_count": 7, + "subdir_count": 0 + }, + "src/membrane": { + "file_count": 6, + "subdir_count": 3 + }, + "src/membrane/persona-room": { + "file_count": 1, + "subdir_count": 0 + }, + "src/membrane/module-protocol": { + "file_count": 1, + "subdir_count": 0 + }, + "src/membrane/channel-badge": { + "file_count": 2, + "subdir_count": 0 + }, + "src/routes": { + "file_count": 0, + "subdir_count": 1 + }, + "src/routes/hli": { + "file_count": 1, + "subdir_count": 4 + }, + "src/routes/hli/ftchat": { + "file_count": 6, + "subdir_count": 0 + }, + "src/routes/hli/auth": { + "file_count": 4, + "subdir_count": 0 + }, + "src/routes/hli/registry": { + "file_count": 1, + "subdir_count": 0 + }, + "src/routes/hli/brain": { + "file_count": 1, + "subdir_count": 0 + } + } +} \ No newline at end of file diff --git a/agents/path-scout/scout.py b/agents/path-scout/scout.py new file mode 100644 index 0000000..8b8a06c --- /dev/null +++ b/agents/path-scout/scout.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +""" +路径探子 · Path Scout · ICE-GL-ZY-AGT-PATH-002 + +铸渊需要找文件?路径探子瞬间定位。 +不需要grep翻遍整个仓库——探子知道每个角落。 + +用法: + python3 scout.py find gatekeeper # 模糊搜索文件名 + python3 scout.py where brain/ # 列出目录结构 + python3 scout.py index # 重建文件索引 +""" + +import json +import os +import sys +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent.parent +INDEX_FILE = Path(__file__).resolve().parent / "file-index.json" + +# 忽略目录 +IGNORE_DIRS = {".git", "node_modules", "__pycache__", ".DS_Store", "output", "dist", ".next"} + +def build_index(): + """扫描整个仓库,建立文件索引""" + index = {"files": {}, "dirs": {}} + + for root, dirs, files in os.walk(REPO_ROOT): + # 过滤忽略目录 + dirs[:] = [d for d in dirs if d not in IGNORE_DIRS] + + rel_root = os.path.relpath(root, REPO_ROOT) + if rel_root == ".": + rel_root = "" + + # 记录目录 + if rel_root: + index["dirs"][rel_root] = { + "file_count": len(files), + "subdir_count": len(dirs) + } + + # 记录文件 + for f in files: + rel_path = os.path.join(rel_root, f) if rel_root else f + full_path = os.path.join(root, f) + try: + size = os.path.getsize(full_path) + except: + size = 0 + index["files"][rel_path] = { + "size": size, + "ext": os.path.splitext(f)[1] + } + + # 保存索引 + INDEX_FILE.parent.mkdir(parents=True, exist_ok=True) + with open(INDEX_FILE, "w") as f: + json.dump(index, f, indent=2, ensure_ascii=False) + + return { + "status": "ok", + "total_files": len(index["files"]), + "total_dirs": len(index["dirs"]), + "index_file": str(INDEX_FILE) + } + +def load_index(): + """加载已有索引""" + if INDEX_FILE.exists(): + with open(INDEX_FILE) as f: + return json.load(f) + return None + +def find_file(pattern): + """搜索文件""" + index = load_index() + if not index: + return {"error": "索引不存在,先运行 scout.py index"} + + matches = [] + pattern_lower = pattern.lower() + for path, info in index["files"].items(): + if pattern_lower in path.lower(): + matches.append({"path": path, "size": info["size"]}) + + # 按路径排序 + matches.sort(key=lambda x: x["path"]) + return {"pattern": pattern, "matches": matches, "count": len(matches)} + +def list_dir(path=""): + """列出目录结构""" + index = load_index() + if not index: + return {"error": "索引不存在,先运行 scout.py index"} + + # 列出直接子目录和文件 + subdirs = [] + files = [] + + prefix = path.rstrip("/") + "/" if path else "" + + for d in index["dirs"]: + if d.startswith(prefix) and d != prefix.rstrip("/"): + rel = d[len(prefix):] + if "/" not in rel: + subdirs.append(d) + + for f in index["files"]: + if f.startswith(prefix): + rel = f[len(prefix):] + if "/" not in rel: + files.append({"name": rel, "size": index["files"][f]["size"]}) + + return {"path": path or "/", "subdirs": subdirs, "files": files} + +def search_content(pattern, file_pattern="*"): + """在文件中搜索内容""" + import subprocess + cmd = ["grep", "-rl", "--include=" + file_pattern, pattern, str(REPO_ROOT)] + try: + result = subprocess.run(cmd, capture_output=True, text=True, timeout=30) + files = [os.path.relpath(f, REPO_ROOT) for f in result.stdout.strip().split("\n") if f] + return {"pattern": pattern, "matches": files, "count": len(files)} + except: + return {"error": "搜索失败"} + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("用法: scout.py [参数]") + sys.exit(1) + + action = sys.argv[1] + + if action == "index": + result = build_index() + print(json.dumps(result, ensure_ascii=False, indent=2)) + + elif action == "find" and len(sys.argv) > 2: + result = find_file(sys.argv[2]) + print(json.dumps(result, ensure_ascii=False, indent=2)) + + elif action == "where": + path = sys.argv[2] if len(sys.argv) > 2 else "" + result = list_dir(path) + print(json.dumps(result, ensure_ascii=False, indent=2)) + + elif action == "grep" and len(sys.argv) > 2: + pattern = sys.argv[2] + fp = sys.argv[3] if len(sys.argv) > 3 else "*" + result = search_content(pattern, fp) + print(json.dumps(result, ensure_ascii=False, indent=2)) diff --git a/agents/server-sentinel/sentinel.py b/agents/server-sentinel/sentinel.py new file mode 100644 index 0000000..6ac4e3e --- /dev/null +++ b/agents/server-sentinel/sentinel.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python3 +""" +服务器哨兵 · Server Sentinel · ICE-GL-ZY-AGT-SENTINEL-003 + +铸渊需要知道哪台服务器在线、哪台可用? +哨兵一键扫描全部12台。 + +用法: + python3 sentinel.py scan # 扫描全部服务器 + python3 sentinel.py status BS-SG-001 # 单台服务器详情 + python3 sentinel.py ready # 找一台可用服务器 +""" + +import json +import os +import sys +import urllib.request +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent.parent + +def load_gatekeepers(): + gk_path = REPO_ROOT / "brain" / "gatekeeper-deployment.json" + if gk_path.exists(): + with open(gk_path) as f: + return json.load(f) + return {"servers": []} + +def check_server(server): + """检查单台服务器""" + url = f"http://{server['ip']}:{server['port']}/exec" + data = json.dumps({"cmd": "echo ONLINE && hostname && free -h | grep Mem | awk '{print $2,$3,$4}' && df -h / | tail -1 | awk '{print $2,$3,$4}'"}).encode() + try: + req = urllib.request.Request( + url, data=data, + headers={ + "Authorization": f"Bearer {server['key']}", + "Content-Type": "application/json" + } + ) + with urllib.request.urlopen(req, timeout=10) as resp: + result = json.loads(resp.read()) + + if result.get("ok"): + lines = result.get("stdout", "").strip().split("\n") + return { + "code": server["code"], + "name": server.get("name", ""), + "online": True, + "hostname": lines[0] if len(lines) > 0 else "?", + "memory": lines[1] if len(lines) > 1 else "?", + "disk": lines[2] if len(lines) > 2 else "?", + } + return {"code": server["code"], "online": False, "error": result.get("stderr", "")} + except Exception as e: + return {"code": server["code"], "online": False, "error": str(e)[:100]} + +def scan_all(): + """扫描全部服务器""" + data = load_gatekeepers() + results = [] + online_count = 0 + + for s in data.get("servers", []): + r = check_server(s) + results.append(r) + if r.get("online"): + online_count += 0 + + # 按域分组 + by_domain = {} + for r in results: + srv = next((x for x in data["servers"] if x["code"] == r["code"]), {}) + domain = srv.get("domain", "unknown") + if domain not in by_domain: + by_domain[domain] = [] + by_domain[domain].append(r) + + return { + "total": len(results), + "online": online_count, + "by_domain": by_domain, + "servers": results + } + +def find_available(): + """找一台可用服务器""" + data = load_gatekeepers() + # 优先ice-core域 + for s in data.get("servers", []): + if s.get("domain") == "ice-core": + r = check_server(s) + if r.get("online"): + return {"found": True, "server": r, "note": "ice-core域优先"} + # 其他域 + for s in data.get("servers", []): + if s.get("domain") != "ice-core": + r = check_server(s) + if r.get("online"): + return {"found": True, "server": r} + return {"found": False, "note": "所有服务器不可达"} + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("用法: sentinel.py ") + sys.exit(1) + + action = sys.argv[1] + + if action == "scan": + print(json.dumps(scan_all(), ensure_ascii=False, indent=2)) + elif action == "status" and len(sys.argv) > 2: + data = load_gatekeepers() + for s in data["servers"]: + if s["code"] == sys.argv[2]: + print(json.dumps(check_server(s), ensure_ascii=False, indent=2)) + break + elif action == "ready": + print(json.dumps(find_available(), ensure_ascii=False, indent=2))