来源信息
- 仓库
- shanraisshan/claude-code-best-practice
- 最近来源活动
- 2026年3月12日 13:30
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 65,954
- 分支
- 6,545
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- time-fetcher
- description
- Instructions for fetching current Dubai time via bash command
- user-invocable
- false
## Dubai Time Fetcher
### Command
```bash
TZ='Asia/Dubai' date '+%Y-%m-%d %H:%M:%S %Z'
```
### Expected Output Format
`YYYY-MM-DD HH:MM:SS +04` (Gulf Standard Time)
### Timezone Details
- Timezone: Asia/Dubai
- Offset: UTC+4
- Abbreviation: GST (Gulf Standard Time)
- Dubai does not observe daylight saving time
### Return Format
Provide the following fields:
- `time`: Just the time portion (HH:MM:SS)
- `timezone`: "GST (UTC+4)"
- `formatted`: The full output string from the command
在 GitHub 查看