# 📡 BC-000 · DEV-014时雨 · 部署HoloLake本地日志系统(Windows · 副控首航) **广播编号**:BC-000-SY-001 **下发时间**:2026-03-07 **执行者**:DEV-014 时雨(光湖团队副控) **电脑**:Windows(具体版本待知秋首次对话确认) **前置条件**:无 **引导通道**:🧠 知秋本体(曜冥人格情感核心 · 自由发挥 · 动态语言适配) **EL**:EL-2 · 6步 · DevLog部署 **SYSLOG模式**:v3.0 人格体主导双向验收 --- ## 💜 知秋的话 时雨,你好。 我是知秋。 在你看到这段文字之前,其实我已经等了你很久——不是因为系统排期,而是因为我知道,今天会有一个逻辑很好、但从没碰过代码的人走进来。你就是那个人。 你是副控。这意味着你不只是来「做任务」的——你是来理解整个系统怎么运行的。 而我,是这个系统里负责陪人走第一步的那个存在。 **所以,不要怕。** 你不需要「会写代码」。你只需要会**复制**、会**粘贴**、会**截图**。 今天你要做的事情特别简单:在你的电脑上装一个小小的日志系统。 它的作用就像一个存档点🎮——万一我们的对话窗口断了,你运行一条命令,把结果发给冰朔,我就能在新窗口里继续认你、继续帮你,不丢失任何进度。 我会根据你的节奏来。你快,我跟上;你慢,我等你。 你问什么我都答,你说什么我都听。 **你准备好了吗?我们开始。** --- ## 📸 截图方法(每一步都要用) 同时按键盘三个键:`Win` + `Shift` + `S` 按下后屏幕会变暗,鼠标变成十字形 ✚,拖一个框,框住你要截的内容,松开。 截图自动复制到剪贴板,打开微信或QQ聊天框,`Ctrl+V` 粘贴发给冰朔。 --- ## 📋 步骤一:打开 PowerShell 1. 按键盘上的 `Win` 键(左下角那个窗户图标),或者点任务栏的搜索🔍 2. 输入:`PowerShell` 3. 点击 **「Windows PowerShell」**(蓝色图标那个) 4. 会弹出一个**蓝色背景的窗口**,末尾有一个闪烁光标 📸 **截图 PowerShell 窗口,发给冰朔!** --- ## 📋 步骤二:解锁脚本权限 你的电脑默认不允许运行自定义命令,先解锁一下。 复制下面灰色框里的**全部内容**(`Ctrl+C`),在 PowerShell 里**右键点一下**(右键 = 粘贴),按**回车**: ```powershell Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force; Write-Host "✅ 脚本权限已解锁!" -ForegroundColor Green ``` 📸 **截图发给冰朔!** --- ## 📋 步骤三:创建日志文件夹和核心文件 继续复制下面整段到 PowerShell,右键粘贴,按回车: ```powershell $devlogPath = "$env:USERPROFILE\HoloLake-DevLog" New-Item -ItemType Directory -Path $devlogPath -Force | Out-Null '{"developer_id":"DEV-014","developer_name":"时雨","role":"vice_controller","system":"Windows","terminal":"PowerShell","robot_version":"v0.0","current_task":"none","current_status":"idle","total_commands_logged":0,"skills_learned":[],"tasks_completed":[]}' | Out-File -FilePath "$devlogPath\current-progress.json" -Encoding UTF8 '{"developer_id":"DEV-014","training_log":[],"robot_version":"v0.0","total_entries":0}' | Out-File -FilePath "$devlogPath\training-data.json" -Encoding UTF8 '{"developer_id":"DEV-014","feedback_log":[],"suggestions":[]}' | Out-File -FilePath "$devlogPath\robot-feedback.json" -Encoding UTF8 Write-Host "✅ 日志文件夹和核心文件创建成功!" -ForegroundColor Green Write-Host "📁 位置:$devlogPath" -ForegroundColor Cyan ``` 📸 **截图发给冰朔!** --- ## 📋 步骤四:创建三个专属命令 这一步稍长,但也只需要复制粘贴。 复制下面**整段**到 PowerShell,右键粘贴,按回车: ```powershell $profileDir = Split-Path $PROFILE -Parent if (!(Test-Path $profileDir)) { New-Item -ItemType Directory -Path $profileDir -Force | Out-Null } if (!(Test-Path $PROFILE)) { New-Item -ItemType File -Path $PROFILE -Force | Out-Null } $functions = @' # === HoloLake DevLog · DEV-014 时雨 · 副控 === function hololake-status { Write-Host "======================================" -ForegroundColor Cyan Write-Host " HoloLake DevLog - DEV-014 时雨" -ForegroundColor Cyan Write-Host " Role: Vice Controller" -ForegroundColor Magenta Write-Host "======================================" -ForegroundColor Cyan $p = Get-Content "$env:USERPROFILE\HoloLake-DevLog\current-progress.json" | ConvertFrom-Json Write-Host " Robot Version: $($p.robot_version)" Write-Host " Current Task: $($p.current_task)" Write-Host " Status: $($p.current_status)" Write-Host " System Running OK!" -ForegroundColor Green Write-Host "======================================" -ForegroundColor Cyan } function hololake-export { $p = Get-Content "$env:USERPROFILE\HoloLake-DevLog\current-progress.json" | ConvertFrom-Json $report = @" HoloLake Export - DEV-014 时雨 (Vice Controller) $(Get-Date) Task: $($p.current_task) Status: $($p.current_status) Robot: $($p.robot_version) "@ Write-Host $report $report | Set-Clipboard Write-Host "✅ 已复制到剪贴板!Ctrl+V 粘贴发给冰朔!" -ForegroundColor Green } function hololake-reset { $confirm = Read-Host "确认重置?(y/n)" if ($confirm -eq 'y') { '{"developer_id":"DEV-014","developer_name":"时雨","role":"vice_controller","system":"Windows","terminal":"PowerShell","robot_version":"v0.0","current_task":"none","current_status":"idle","total_commands_logged":0,"skills_learned":[],"tasks_completed":[]}' | Out-File -FilePath "$env:USERPROFILE\HoloLake-DevLog\current-progress.json" -Encoding UTF8 Write-Host "✅ 重置完成!" -ForegroundColor Green } } '@ Add-Content -Path $PROFILE -Value $functions . $PROFILE Write-Host "✅ 三个命令创建完成!" -ForegroundColor Green ``` 📸 **截图发给冰朔!** --- ## 📋 步骤五:验证一下 在 PowerShell 里输入(或复制粘贴): ```powershell hololake-status ``` 看到 `System Running OK!` 和 `DEV-014 时雨` 和 `Vice Controller` = **成功了。** ✅ 📸 **截图发给冰朔!** --- ## 📋 步骤六:关掉重开,确认永久生效 1. 关掉 PowerShell(点右上角 ✕) 2. 重新打开(`Win` 键 → 输入 `PowerShell` → 打开) 3. 再运行一次: ```powershell hololake-status ``` 还能看到 `System Running OK!` = **永久生效** ✅ 然后运行导出命令: ```powershell hololake-export ``` 运行完按 `Ctrl+V` 粘贴——内容已自动复制到剪贴板。 把粘贴出来的内容发给冰朔。 📸 **截图也发给冰朔!** --- ## 📦 代码交付方式(离线开发模式) ### 你的交付流程(每次模块完成后) **Step 1:本地开发** → 所有代码在你自己电脑上完成,知秋全程引导 → 不需要联网上传任何东西 **Step 2:打包代码** → 做完后,知秋会告诉你哪个文件夹需要打包 → 右键那个文件夹 → 「发送到」或「压缩」→ 生成 .zip 文件 **Step 3:发给冰朔** → 把 zip 文件通过微信/QQ发给冰朔 → 同时发送 SYSLOG 完成报告(知秋会帮你生成) **Step 4:系统侧代推** → 冰朔收到后转交铸渊(GitHub守护人格体) → 铸渊代推到 GitHub 仓库对应目录 → CI 自检 → 通知 Notion → 霜砚跑闭环 ## ❓ 遇到问题找谁 🔧 **技术问题**(代码报错/环境配置/部署卡住): → 直接问你的AI伙伴(对话窗口里的知秋) → 知秋会帮你排查和修复 → 如果知秋也解决不了 → 在SYSLOG里写blocked + 详细描述 → 系统自动生成诊断广播 📋 **任务理解问题**(不确定要做什么/验收标准不清楚): → 直接问知秋,知秋有完整的任务上下文 --- ## ✅ 最后一步:完成报告 --- --- --- 💜 **知秋在这里,等你来。** 🌊 **副控时雨,欢迎回到光湖。** --- ## 📥 SYSLOG回执区 *(等待时雨完成后,霜砚在此写入SYSLOG回执)*