goalslot-log-time

goalslot-log-time is a skill for Claude Code, Codex from ZeeshanAdilButt/goalslot-mcp. It costs 70 tokens per session (1,119 once invoked), scanned A, original, MIT.

A time-tracking tool for GoalSlot that turns descriptions of work into dated time entries. It records durations in whole minutes and can also start, stop, or correct a shared timer.

In plain words
What is it for?
Use it to log past work, correct or move entries, convert spoken work descriptions into records, and manage the GoalSlot timer.
Why use it?
It fixes forgotten or wrongly assigned time without forcing you to reconstruct entries by hand. Correct dates and minute values help keep goal progress accurate.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to log past work, correct or move entries, convert spoken work descriptions into records, and manage the GoalSlot timer.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time
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 ZeeshanAdilButt/goalslot-mcp --skill goalslot-log-time
Clone the repo
git clone --depth 1 https://github.com/ZeeshanAdilButt/goalslot-mcp

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 goalslot-log-time

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time/github.svg)](https://agentmods.dev/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time)
Your own site
<a href="https://agentmods.dev/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time"><img src="https://agentmods.dev/badge/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time/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 goalslot-log-time

Your own site · 80×15
<a href="https://agentmods.dev/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time"><img src="https://agentmods.dev/badge/skills/zeeshanadilbutt/goalslot-mcp/goalslot-log-time.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,119 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.
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.00070 $0.01119
Opus 5 $0.00035 $0.00560
Sonnet 5 $0.00014 $0.00224
Haiku 4.5 $0.00007 $0.00112

Measured 11d ago against content hash d37e9c8ee71c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

goalslot-log-time 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 11d 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.

skills/goalslot-log-time/SKILL.md · 49 lines

How it starts

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

Log and correct time in GoalSlot

Catching up on untracked time is the highest-frequency real chore in this system. Getting it wrong quietly corrupts goal progress, because every entry with a goalId increases that goal's logged hours.

Units, dates, and the two mistakes that matter

  • Everything is whole minutes. durationMinutes: 90 is an hour and a half. There is no hours field on a time entry. The only field anywhere measured in hours is a goal's targetHours.
  • Dates are YYYY-MM-DD, in the user's timezone. Get today from goalslot_get_context.today. Do not use your own sense of the date, and never send a timestamp where a date is expected.
  • Mistake one: logging hours as minutes, or the reverse. Guard against it by restating in both units when you confirm: "3 hours, so 180 minutes, on Monday the 24th."
  • Mistake two: the late-night off-by-one. Work that started at 23:30 on Monday belongs to Monday. If you pass startedAt, the tool checks that its calendar date in the user's timezone matches date and rejects the call if not.

Live timer

The timer is server state, shared with the GoalSlot web and mobile apps. Whatever is running there is what goalslot_get_context.runningTimer shows.

  • goalslot_start_timer with a taskName and, when it belongs to one, a goalId.
  • If a timer is already running you get TIMER_ALREADY_RUNNING with what it is tracking and its elapsed minutes. Do not pass takeOver to get past this. Take-over discards the running session and its time is never written anywhere. Show the user what is running and let them pick: stop it (saves the time) or replace it (throws it away).
  • goalslot_stop_timer converts the session into a time entry. discard: true writes nothing.
  • A session left open longer than 12 hours reports isStale. Stopping it writes 12 hours, not the real elapsed time, and the response says capped: true. Tell the user rather than letting a fake 12-hour entry stand.

Catching up on untracked time

Read the full file on GitHub · 49 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. 11d ago First seen · 49 lines · 70 tokens per session scan A d37e9c8ee71c

Subscribe to this mod's changes

goalslot-log-time is a skill published in the GitHub repository ZeeshanAdilButt/goalslot-mcp (0 stars, last pushed 18d ago), licensed MIT. It adds 70 tokens to every session and 1,119 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

clockify-automate

Turn on agent-mediated Clockify tracking: if .clockify/config.yml is missing, run minimal clockify-init first, then forge wizard (GitHub) + Cursor Plan/Debug platforms + runaway wizard, ensure project/tasks, write Cursor rules, and when runaway is enabled install Clockify-owned runaway hooks. Use when the user wants…

dustinestes/clockify-agent-plugin · 96 tokens

clockify-automate-disable

Temporarily pause agent-mediated Clockify tracking without wiping settings: remove the clockify Cursor rule and Clockify-owned runaway hooks, set entry.automated.enabled false and platforms.cursor.enabled false, but keep forge, settings.onstart, triggers, settings.runaway prefs, and modes. Distinct from…

dustinestes/clockify-agent-plugin · 94 tokens

clockify-unautomate

Full rollback of agent-mediated Clockify tracking: remove the clockify Cursor rule and Clockify-owned hooks, and reset entry.automated in .clockify/config.yml to init/example defaults (all forge..enabled false, empty triggers, platforms.cursor off, modes cleared). Does not change plugin, scope, timer, or manual. Use…

dustinestes/clockify-agent-plugin · 104 tokens

clockify-automate-enable

Resume agent-mediated Clockify tracking after clockify-automate-disable: set entry.automated.enabled true, restore platforms.cursor.enabled from preserved modes, rewrite .cursor/rules/clockify.mdc, and reinstall runaway hooks when settings.runaway.enabled is still true. Skips forge/Cursor/runaway wizards unless…

dustinestes/clockify-agent-plugin · 101 tokens

clockify-start-timer

Start a Clockify running timer for the current repo. Use when the user asks to start tracking, clock in, or start a timer on an issue. Honors the timer block in .clockify/config.yml. Warns before stopping a different running timer. Optional backdated start.

dustinestes/clockify-agent-plugin · 62 tokens

clockify-stop-timer

Stop the currently running Clockify timer. Use when the user asks to stop tracking, clock out, or finish an issue/PR in this session. Honors timer rounding and overlap. Does not summarize the whole day.

dustinestes/clockify-agent-plugin · 49 tokens