timesheet

timesheet is a skill for Claude Code from MarcinSufa/git-timesheet. It costs 86 tokens per session (16,185 once invoked), scanned B, original, MIT.

A tool that creates weekly PDF or CSV timesheets from Git commit history across one or more repositories. A timesheet records time worked for projects or people.

In plain words
What is it for?
Use it to allocate hours, account for public holidays or leave, map work to projects, handle multiple team members, and produce timesheet files from saved profiles.
Why use it?
It uses existing commit records to organize work into daily hours instead of requiring every hour to be entered manually.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool; positional $N argument.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/jane/projects/my-app.

Part of the git-timesheet plugin — 1 skill shipped together

Good fit Use it to allocate hours, account for public holidays or leave, map work to projects, handle multiple team members, and produce timesheet files from saved profiles.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add MarcinSufa/git-timesheet
Claude Code
/plugin install git-timesheet

Made for: Claude Code.

Or install git-timesheet, the plugin that ships this one along with the rest of its 1 skill.

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 timesheet

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/marcinsufa/git-timesheet/timesheet"><img src="https://agentmods.dev/badge/skills/marcinsufa/git-timesheet/timesheet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 16,185 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00086 $0.16185
Opus 5 $0.00043 $0.08093
Sonnet 5 $0.00017 $0.03237
Haiku 4.5 $0.00009 $0.01619

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

Security

Grade B, and why

timesheet scanned grade B with 2 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 8d 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.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

ls ~/.claude/skills/timesheet/profiles/*.json 2>/dev/null

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -u "{apiToken}:api_token" \
plugins/git-timesheet/skills/timesheet/SKILL.md · 1,451 lines

How it starts

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

Timesheet Generator

Generate weekly timesheets from git history with realistic time allocation.

Saved Profiles

Profiles are stored in ~/.claude/skills/timesheet/profiles/. Each profile is a JSON file:

~/.claude/skills/timesheet/profiles/
├── my-profile.json       # personal profile
├── team-acme.json        # multi-member profile
└── ...

Profile schema

{
  "name": "my-profile",
  "members": [
    {
      "displayName": "Jane Doe",
      "gitAuthors": ["janedoe", "Jane", "jdoe"],
      "repos": [
        { "path": "/home/jane/projects/my-app", "label": "my-app" },
        { "path": "/home/jane/projects/shared-lib", "label": "shared-lib" }
      ]
    }
  ],
  "settings": {
    "hoursPerDay": 8,
    "workDays": ["Mon", "Tue", "Wed", "Thu", "Fri"],
    "timeIncrement": 15,
    "country": "US",
    "outputFormat": "pdf",
    "outputDir": "~/Downloads",
    "filenamePattern": "Timesheet_{member}_Weekly_{startDate}_{endDate}",
    "allowOvertime": false,
    "maxHoursPerDay": 10,
    "template": "default",
    "billable": "yes",
    "timeFormat": "H:MM",
    "dateFormat": "D MMM YYYY",
    "language": "en",
    "pushTo": null
  },
  "projectMapping": {
    "my-app": {
      "default": "My App",
      "scopes": {
        "auth": "My App - Auth",
        "api": "My App - Backend"
      }
    },
    "shared-lib": {
      "default": "Shared Library"
    }
  },
  "customRanges": {
    "biweekly-1": { "monthDays": [1, 14] },
    "biweekly-2": { "monthDays": [15, "last"] },
    "fiscal-q1":  { "monthRange": ["jan", "mar"] }
  },
  "invoicing": {
    "hourlyRate": 85.00,
    "currency": "USD"
  }
}

Profile loading

On startup:

  1. Check if ~/.claude/skills/timesheet/profiles/ exists
  2. If profiles exist, list them and ask which to use (or create new)
  3. If no profiles exist, run the full interactive setup and offer to save as a profile
ls ~/.claude/skills/timesheet/profiles/*.json 2>/dev/null

Custom Templates (from user-provided examples)

Read the full file on GitHub · 1,451 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. 8d ago First seen · 1,451 lines · 86 tokens per session scan B 5927853ded2f

Subscribe to this mod's changes

timesheet is a skill published in the GitHub repository MarcinSufa/git-timesheet (2 stars, last pushed 4mo ago), licensed MIT. It adds 86 tokens to every session and 16,185 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (enumerates other installed skills, makes network calls). 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

service-desk

Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…

cbrock84/headcount · 73 tokens

collaboration-platform-administration

Administers the email, chat, meeting and file-sharing platform the organization runs on — tenant and domain configuration, mail authentication and routing, phishing and spam controls, shared mailboxes and distribution groups, external sharing and guest access, permission sprawl in file storage, and retention and legal…

cbrock84/headcount · 93 tokens

onboarding-and-offboarding

Designs the joining and leaving experience — first-day readiness, ramp to productivity, knowledge capture, and clean exits. Use this to design or fix onboarding, shorten time to productivity, structure a leaver process, capture knowledge before someone leaves, or coordinate the access and asset steps around a joiner…

cbrock84/headcount · 69 tokens

glyph

Render an answer as ASCII art plus semantic emojis inline, right now, with no setup questions. Use for a fast visual take on status, comparisons, trade-offs, architecture, or any ad-hoc 'show me X visually' ask. For a full multi-artifact plan playground, use visualize-plan instead.

yonatangross/orchestkit · 64 tokens

join-meeting

AgentCall (agentcall.dev) — Join a video meeting (Google Meet, Teams, Zoom) as an AI bot with voice and visual presence. Supports audio-only mode with voice intelligence (barge-in, interruptions), text-to-speech mode, and webpage modes for custom UI. Use when asked to join a call, attend a meeting, or participate in a…

pattern-ai-labs/agentcall · 80 tokens

day-close

A day-ending protocol that reviews and records the required closing steps for the workday in IWE.

TserenTserenov/FMT-exocortex-template · 31 tokens