💼 Clockify Automation
Clockify(クロッキファイ)での時間管理を自動
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate time tracking workflows in Clockify -- create and manage time entries, workspaces, and users through natural language commands.
🇯🇵 日本人クリエイター向け解説
Clockify(クロッキファイ)での時間管理を自動
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Clockify Automation で、私のビジネスを分析して改善案を3つ提案して
- › Clockify Automation を使って、来週の会議用の資料を作って
- › Clockify Automation で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Clockify Automation
Automate your Clockify time tracking operations directly from Claude Code. Log time entries, query historical data, manage workspaces, and audit team activity -- all without leaving your terminal.
Toolkit docs: composio.dev/toolkits/clockify
Setup
- Add the Rube MCP server to your Claude Code config with URL:
https://rube.app/mcp - When prompted, authenticate your Clockify account through the connection link provided
- Start automating your time tracking workflows with natural language
Core Workflows
1. Create Time Entries
Log time with project, task, and tag associations, plus billable status.
Tool: CLOCKIFY_CREATE_TIME_ENTRY
Log 2 hours of work on project 64a687e2 in workspace 64a687e3 starting at 9am UTC today with description "API development"
Key parameters:
workspaceId(required) -- workspace where the entry is createdstart(required) -- ISO 8601 start time (e.g.,2026-02-11T09:00:00Z)end-- ISO 8601 end time; omit to create a running timerprojectId-- associate with a projecttaskId-- associate with a taskdescription-- work description (0-3000 chars)tagIds-- array of tag IDsbillable-- whether the entry is billablecustomFieldValues-- array of custom field entries withcustomFieldIdandvalue
2. Query Time Entries
Retrieve historical time entries for reporting, auditing, and invoicing.
Tool: CLOCKIFY_GET_TIME_ENTRIES
Get all time entries for user abc123 in workspace xyz789 from January 2026
Key parameters:
workspaceId(required) -- workspace to queryuserId(required) -- user whose entries to retrievestart/end-- ISO 8601 date range filtersproject-- filter by project IDtask-- filter by task IDtags-- comma-separated tag IDsdescription-- text filter (partial match)hydrated-- settrueto get full project/task/tag objects instead of just IDsin-progress-- settrueto return only the running timerpage/page-size-- pagination (default 50 per page)
3. Delete Time Entries
Remove erroneous, duplicate, or cancelled time entries.
Tool: CLOCKIFY_DELETE_TIME_ENTRY
Delete time entry 5b715448 from workspace 64a687e3
- Requires
workspaceIdandid(the time entry ID) - Use for cleanup of bad imports or duplicates
4. Manage Workspaces
List all workspaces the authenticated user belongs to.
Tool: CLOCKIFY_GET_ALL_MY_WORKSPACES
Show me all my Clockify workspaces
- Optional
rolesfilter -- array of roles like["WORKSPACE_ADMIN", "OWNER"] - Use this to discover workspace IDs before creating or querying entries
5. User Information
Retrieve current user details and list workspace members.
Tools: CLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFO, CLOCKIFY_FIND_ALL_USERS_ON_WORKSPACE
Who am I logged in as? Then list all users in workspace 64a687e3
CLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFOreturns the authenticated user's profile (no parameters needed)CLOCKIFY_FIND_ALL_USERS_ON_WORKSPACErequiresworkspaceId; supportsname,emailfilters and pagination (page,page-sizemax 100)
6. Running Timer Management
Start a timer by omitting end in create, or check for running entries.
Tools: CLOCKIFY_CREATE_TIME_ENTRY, CLOCKIFY_GET_TIME_ENTRIES
Start a timer on project abc in workspace xyz with description "Working on bug fix"
- Create without
endto start a running timer - Use
CLOCKIFY_GET_TIME_ENTRIESwithin-progress: trueto check if a timer is running
Known Pitfalls
- Workspace and user IDs are required: Most Clockify tools require both
workspaceIdanduserId. Always callCLOCKIFY_GET_ALL_MY_WORKSPACESandCLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFOfirst to resolve these IDs. - ISO 8601 timestamps: All time parameters must be in ISO 8601 format with timezone (e.g.,
2026-02-11T09:00:00Z). Omitting the timezone causes unpredictable behavior. - Running timers: Only one timer can run at a time. Creating a new entry without
endwill fail if another timer is already active. Stop the existing timer first. - Pagination defaults:
CLOCKIFY_GET_TIME_ENTRIESdefaults to 50 entries per page. For full exports, loop through pages until no more results are returned. - Tag IDs are workspace-scoped: Tag IDs from one workspace cannot be used in another. Always resolve tags within the target workspace context.
Quick Reference
| Tool Slug | Description |
|---|---|
CLOCKIFY_CREATE_TIME_ENTRY |
Create a time entry or start a timer (requires workspaceId, start) |
CLOCKIFY_GET_TIME_ENTRIES |
List time entries with filters (requires workspaceId, userId) |
CLOCKIFY_DELETE_TIME_ENTRY |
Delete a time entry (requires workspaceId, id) |
CLOCKIFY_GET_ALL_MY_WORKSPACES |
List all workspaces for the authenticated user |
CLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFO |
Get current user profile info |
CLOCKIFY_FIND_ALL_USERS_ON_WORKSPACE |
List all users in a workspace (requires workspaceId) |
Powered by Composio