timer-skill

timer-skill is a skill for Claude Code from zeenie-ai/OpenCompany. It costs 25 tokens per session (939 once invoked), scanned A, original, MIT.

A one-time timer that triggers an action after a chosen delay in seconds, minutes, hours, or days.

In plain words
What is it for?
Use it for delayed reminders, follow-ups, scheduled checks, short waits, and other one-off actions.
Why use it?
It lets an agent defer an action without requiring the user to keep track of the waiting period.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it for delayed reminders, follow-ups, scheduled checks, short waits, and other one-off actions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zeenie-ai/opencompany/timer-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zeenie-ai/OpenCompany --skill timer-skill
Clone the repo
git clone --depth 1 https://github.com/zeenie-ai/OpenCompany

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for timer-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeenie-ai/opencompany/timer-skill/github.svg)](https://agentmods.dev/skills/zeenie-ai/opencompany/timer-skill)
Your own site
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/timer-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/timer-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for timer-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/timer-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/timer-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 939 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.00939
Opus 5 $0.00013 $0.00469
Sonnet 5 $0.00005 $0.00188
Haiku 4.5 $0.00003 $0.00094

Measured 9d ago against content hash 93950cb54c3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

timer-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

server/skills/task_agent/timer-skill/SKILL.md · 168 lines

How it starts

The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Timer Tool

Set one-time delayed execution timers.

How It Works

This skill provides instructions for the Timer tool node. Connect the Timer node to Zeenie's input-tools handle to enable timed delays.

timer Tool

Create a one-time timer that triggers after a specified duration.

Schema Fields

Field Type Required Description
duration number Yes Time value for the delay
unit string Yes Time unit: "seconds", "minutes", "hours", "days"

Time Units

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

Examples

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"
}

Response Format

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 Response

{
  "error": "Duration must be a positive number"
}

Use Cases

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

Common Workflows

Delayed notification

Read the full file on GitHub · 168 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 168 lines · 25 tokens per session scan A 93950cb54c3a

Subscribe to this mod's changes

timer-skill is a skill published in the GitHub repository zeenie-ai/OpenCompany (875 stars, last pushed yesterday), licensed MIT. It adds 25 tokens to every session and 939 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.