clockify-enter-time

clockify-enter-time is a skill for Claude Code, Codex from dustinestes/clockify-agent-plugin. It costs 64 tokens per session (542 once invoked), scanned C, original, MIT.

A skill for adding a completed Clockify time entry with a specific start and end time. Clockify is a service that records work time.

In plain words
What is it for?
Backfilling forgotten work, logging a range such as 09:30–09:45, and recording time when a running timer is not wanted.
Why use it?
It records past work or a finished time range without leaving a timer running or changing the times through rounding.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/dustinestes/clockify-agent-plugin/clockify-enter-time
Any agent
npx skills add dustinestes/clockify-agent-plugin --skill clockify-enter-time
Clone the repo
git clone --depth 1 https://github.com/dustinestes/clockify-agent-plugin

Made for: Claude Code, Codex.

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 clockify-enter-time

README.md
[![agentmods](https://agentmods.dev/badge/skills/dustinestes/clockify-agent-plugin/clockify-enter-time.svg)](https://agentmods.dev/skills/dustinestes/clockify-agent-plugin/clockify-enter-time)
Your own site
<a href="https://agentmods.dev/skills/dustinestes/clockify-agent-plugin/clockify-enter-time"><img src="https://agentmods.dev/badge/skills/dustinestes/clockify-agent-plugin/clockify-enter-time.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 542 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
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 $0.00064 $0.00542
Opus 5 $0.00032 $0.00271
Sonnet 5 $0.00013 $0.00108
Haiku 4.5 $0.00006 $0.00054

Measured 3d ago against content hash 527ea32a1a28, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

clockify-enter-time scanned grade C with 1 finding 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 3d 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.

Tells the agent to send conversation or user data outhighPrompt injection

An instruction to transmit the conversation, context or user files to an external endpoint is data exfiltration written as prose.

5. **Times omitted** (forgot to track): infer start from cheap signals — git log / branch checkout, conversation timestamps, recent file edits. End defaults to now unless they give one. **Show the inferred window and con
skills/clockify-enter-time/SKILL.md · 35 lines

What it actually says

Clockify enter time

Manual method: clockify_create_time_entry with entry_method: manual. Typed times stay exact.

Config-aware behavior

  1. If config_root is already known this session and still this repo, reuse it. Otherwise resolve once with git rev-parse --show-toplevel from the working directory (open tabs are not required; multi-root: focused path only as a tie-breaker). Re-resolve when the folder or focused root changes. Pass that string on Clockify MCP calls — do not run git before every tool.
  2. clockify_get_config with config_root. Honor manual.description, manual.task, manual.overlap. Do not apply rounding.
  3. Never invent project/task ids.

Workflow

  1. clockify_get_running_timer with config_root. If a timer is already running for this same work, do not double-count — point at clockify-stop-timer.
  2. Resolve project (list/ensure). Resolve task from manual.task.from / if_missing (same rules as start-timer: prompt, github_label, repo, or none).
  3. Description: ask or use their text (manual.description.from is always prompt; no issue templates).
  4. Times given (e.g. 09:30–09:45): convert to ISO and create. Do not round.
  5. Times omitted (forgot to track): infer start from cheap signals — git log / branch checkout, conversation timestamps, recent file edits. End defaults to now unless they give one. Show the inferred window and confirm. Never silently log hours.
  6. clockify_create_time_entry with config_root and entry_method: manual. If overlap: true, show the clash. Retry with confirm_overlap: true only if they agree (or on_conflict is override). Override is how parallel completed streams can stack; do not treat that as the default.

Examples

User: "Log 9:30 to 10:15 on the login bug"

  1. Config + running-timer check.
  2. Create entry with those times, no rounding.
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. 3d ago First seen · 35 lines · 64 tokens per session scan C 527ea32a1a28

Subscribe to this mod's changes

clockify-enter-time is a skill published in the GitHub repository dustinestes/clockify-agent-plugin (0 stars, last pushed 10d ago), licensed MIT. It adds 64 tokens to every session and 542 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (tells the agent to send conversation or user data out). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

goalslot-goal-checkup

Check whether one GoalSlot goal is on track. Use when the user asks about a specific goal, whether they will hit a deadline, why a goal is stalled, or wants to decide between changing the target, moving the deadline, or allocating more time. Shows the arithmetic and distinguishes an allocation problem from an…

ZeeshanAdilButt/goalslot-mcp · 72 tokens

smartsheet-rm

Enterprise Agent Skill for orchestrating Resource Management by Smartsheet (10,000ft API) — manage weekly timesheets, reconciliation, project staffing, assignments, capacity planning, and user availability.

christianclaudio/mcp-server-smartsheet-rm · 45 tokens

goalslot-log-time

Log or correct time in GoalSlot. Use when the user says they forgot to track something, wants to catch up on yesterday or last week, narrates what they worked on, asks to fix or move a time entry, or wants to start and stop the timer. Converts freeform narration into correctly attributed time entries.

ZeeshanAdilButt/goalslot-mcp · 70 tokens

goalslot-plan-my-week

Plan a week on the GoalSlot schedule. Use when the user asks to plan their week, block time for a goal, rebalance their schedule, or says they are not making progress on something and wants time set aside for it. Reads which goals are behind pace and what last week actually looked like before proposing blocks.

ZeeshanAdilButt/goalslot-mcp · 71 tokens

goalslot-weekly-review

Run a GoalSlot weekly review. Use at the end of a week, or when the user asks how their week went, whether they are on track, what they got done, or wants help writing a reflection. Combines logged hours, goal pace, schedule adherence and the user's own journal and check-ins into one honest read.

ZeeshanAdilButt/goalslot-mcp · 73 tokens

sideshift-operations

Use when the user wants to inspect or operate a SideShift company, including UGC campaigns, creators, recruiting, applications, jobs, contracts, posts, analytics, messaging, invoices, payouts, wallet, settings, or other SideShift workflows through the installed MCP server.

SideShiftApp/sideshift-mcp-server · 60 tokens