用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill timer-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | timer-skill |
| description | Set one-time delayed timers. Execute actions after a specified duration (seconds, minutes, hours, days). |
| allowed-tools | timer |
| metadata | {"author":"opencompany","version":"1.0","category":"automation"} |
Set one-time delayed execution timers.
This skill provides instructions for the Timer tool node. Connect the Timer node to Zeenie's input-tools handle to enable timed delays.
Create a one-time timer that triggers after a specified duration.
| Field | Type | Required | Description |
|---|---|---|---|
| duration | number | Yes | Time value for the delay |
| unit | string | Yes | Time unit: "seconds", "minutes", "hours", "days" |
| Unit | Range | Use Case |
|---|---|---|
seconds | 1-3600 | Short delays, testing |
minutes | 1-1440 | Task reminders, short waits |
hours | 1-168 | Scheduled checks, delayed notifications |
days | 1-30 | Long-term reminders, follow-ups |
30 second delay:
{
"duration": 30,
"unit": "seconds"
}
5 minute reminder:
{
"duration": 5,
"unit": "minutes"
}
1 hour delay:
{
"duration": 1,
"unit": "hours"
}
2 day follow-up:
{
"duration": 2,
"unit": "days"
}
Timer set:
{
"success": true,
"message": "Timer set for 5 minutes",
"duration": 5,
"unit": "minutes",
"duration_seconds": 300,
"trigger_at": "2025-01-30T12:05:00Z"
}
Timer triggered:
{
"success": true,
"triggered": true,
"message": "Timer completed after 5 minutes",
"duration": 5,
"unit": "minutes"
}
{
"error": "Duration must be a positive number"
}
| Use Case | Duration | Unit | Description |
|---|---|---|---|
| Quick test | 10-30 | seconds | Testing workflow execution |
| Reminder | 5-30 | minutes | Short-term reminders |
| Rate limit | 60 | seconds | Wait between API calls |
| Daily check | 24 | hours | Daily automation |
| Follow-up | 2-7 | days | Long-term follow-ups |
When used as a trigger node in a workflow:
When used as AI tool:
input-tools handle