From toggl
Use this skill when the user mentions Toggl, time tracking, logging hours, logging time, tracking work, "how much did I work", "what did I track", "log X hours on Y", "how much time on project/task", "summary for this week", or anything related to tracking or reviewing time spent on tasks or projects.
How this skill is triggered — by the user, by Claude, or both
Slash command
/toggl:togglThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to seven Toggl MCP tools. Use them to log and review time.
You have access to seven Toggl MCP tools. Use them to log and review time.
| Tool | Purpose |
|---|---|
toggl_get_me | Get user info and workspace ID |
toggl_list_projects | List projects (id + name) |
toggl_list_tasks | List tasks inside a project (id + name) |
toggl_list_time_entries | Query entries by date range, optionally filtered by project/task |
toggl_get_summary | Aggregated totals grouped by project → task for a period |
toggl_create_time_entry | Log a completed time entry (with optional project + task) |
toggl_get_current_timer | Check what's currently running |
"Log 2h on Design today" →
toggl_list_projects → find project ID matching "Design"toggl_create_time_entry with description, duration_minutes=120, start=today, project_id"Log 1h on the Login Bug task in the AVA project" →
toggl_list_projects → find project_id for "AVA"toggl_list_tasks(project_id) → find task_id for "Login Bug"toggl_create_time_entry with project_id + task_id"What did I track today?" → toggl_list_time_entries start_date=today
"Show entries for the AVA project this week" → toggl_list_time_entries start_date=Monday, end_date=today, project_id=
Display format:
toggl_list_projects if names are unknown"How much time on the AVA project this month?" →
toggl_list_projects → find project_id for "AVA"toggl_get_summary start_date=first of month, end_date=today, project_id="How much did I track last week in total?" →
toggl_get_summary start_date=last Monday, end_date=last Sunday
"How much time on the Login task this week?" →
toggl_list_tasks(project_id) → get task_idtoggl_get_summary with task_id"Is anything running?" / "What am I tracking?" → toggl_get_current_timer
~/.claude/toggl/credentialsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub run-as-root/toggl-claude-plugin --plugin toggl