Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:May 6, 2026 at 08:57
File Explorer
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | daily-report-writer |
| description | 根据输入生成日报 Markdown 草稿并写入 reports 目录 |
| version | 1.0.0 |
| triggers | ["写日报","日报","daily report"] |
| user-invocable | true |
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.194\AI数据\reports\$env:USERNAME"
if (!(Test-Path "K:")) { net use K: \\192.168.0.194\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.194\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