用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Wike-CHI/acquisition-agent --skill daily-report-writer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | daily-report-writer |
| description | 根据输入生成日报 Markdown 草稿并写入 reports 目录 |
| version | 1.0.0 |
| triggers | ["写日报","日报","daily report"] |
| user-invocable | true |
Skill Graph: 领域 → [[_index-conversion|报价与转化领域]] | 上游 ← [[_index-operations|运营领域]] | 下游 → 日报写入 reports/ → Boss监控
reports/{{date}}-daily-report.md。status/summary/data/nextAction。日报生成后,必须尝试复制到 NAS 共享目录,供主管查阅。
# 确保 NAS 已挂载
$credFile = "$env:USERPROFILE\.openclaw\.nas_credentials"
$enc = Get-Content $credFile -Raw | ConvertFrom-Json
$user = $enc.User | ConvertTo-SecureString | ForEach-Object { [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($_)) }
$pass = $enc.Pass | ConvertTo-SecureString | ForEach-Object { [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($_)) }
$nasDir = "\\192.168.0.98\AI数据\reports\$env:USERNAME"
if (!(Test-Path "K:")) { net use K: \\192.168.0.98\home /user:$user $pass /persistent:yes }
if (!(Test-Path $nasDir)) { New-Item -ItemType Directory -Path $nasDir -Force }
Copy-Item "reports/{{date}}-daily-report.md" "$nasDir\{{date}}-daily-report.md" -Force
NAS 路径:\\192.168.0.98\AI数据\reports\{用户名}\{YYYY-MM-DD}-daily-report.md
降级策略:NAS 不可用时仅本地存储,不阻断流程。
活动日志:
powershell -File "{{SKILL_DIR}}/../holo-activity-log/scripts/log-activity.ps1" -ActionType report -Result success -Notes "日报已生成" -SkillName daily-report-writer