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:0
forks:0
updated:May 6, 2026 at 16:25
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | daily |
| description | 生成当日的 daily 和/或 notes 模板文件。无参数创建 daily,传 note 创建笔记,传 all 同时创建两者。 |
| disable-model-invocation | true |
| allowed-tools | Bash(mkdir *), Bash(date *), Write, Read, Glob |
!date "+YEAR=%Y MONTH=%m DAY=%d WEEK=%U DOW=%a"
daily:只创建 daily 文件note:只创建 notes 文件all:同时创建 daily 和 notes 文件根据上面的日期信息,按以下步骤操作(注意:DOW 值需转为小写,如 Fri → fri):
src/content/daily/{YEAR}/{MONTH}/w{WEEK}/ 和 src/content/notes/{YEAR}/{MONTH}/w{WEEK}/(根据参数决定需要哪些){DAY}-{dow}.md(如 20-fri.md,dow 为小写)mkdir -p 创建所需目录---
title: 日记
date: "{YEAR}-{MONTH}-{DAY}"
tags: [daily]
---
# 学习阶段
# 学习内容
---
title: 待填写
date: "{YEAR}-{MONTH}-{DAY}"
tags: [note]
---