feat: 新增 account 和 plan 目录

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 16:26:22 +08:00
parent 243a190124
commit 0cab33b16b
694 changed files with 161549 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
---
name: openakita/skills@datetime-tool
description: |
获取当前时间、格式化日期、计算日期差值、时区转换。
当用户询问时间、日期、时区相关问题时使用此技能。
关键词: 时间, 日期, 时区, 今天, 现在, 星期, 几点
license: MIT
metadata:
author: myagent
version: "1.0.0"
---
# DateTime Tool
处理时间和日期相关的操作。
## When to Use
- 用户询问当前时间或日期
- 需要格式化日期输出
- 计算两个日期之间的差值
- 时区转换
- 获取星期几、月份名称等
## Instructions
### 获取当前时间
运行脚本获取当前时间:
```bash
python scripts/get_time.py
```
支持的参数:
- `--timezone <tz>`: 指定时区 (如 Asia/Shanghai, UTC)
- `--format <fmt>`: 日期格式 (如 %Y-%m-%d %H:%M:%S)
### 计算日期差值
```bash
python scripts/get_time.py --diff "2024-01-01" "2024-12-31"
```
### 时区转换
```bash
python scripts/get_time.py --convert "2024-01-01 12:00:00" --from-tz UTC --to-tz Asia/Shanghai
```
## Output Format
脚本输出 JSON 格式:
```json
{
"datetime": "2024-01-15 10:30:00",
"date": "2024-01-15",
"time": "10:30:00",
"timezone": "Asia/Shanghai",
"weekday": "Monday",
"timestamp": 1705285800
}
```
## Common Formats
| 格式 | 示例 |
|------|------|
| ISO | 2024-01-15T10:30:00+08:00 |
| 中文 | 2024年01月15日 10:30:00 |
| 美式 | 01/15/2024 |
| 欧式 | 15/01/2024 |