jpskill.com
💼 ビジネス コミュニティ

deepwork-tracker

Track deep work sessions locally (start/stop/status) and generate a GitHub-contribution-graph style minutes-per-day heatmap for sharing (e.g., via Telegram). Use when the user says things like “start deep work”, “stop deep work”, “am I in a session?”, “show my deep work graph”, or asks to review deep work history.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o deepwork-tracker.zip https://jpskill.com/download/8135.zip && unzip -o deepwork-tracker.zip && rm deepwork-tracker.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/8135.zip -OutFile "$d\deepwork-tracker.zip"; Expand-Archive "$d\deepwork-tracker.zip" -DestinationPath $d -Force; ri "$d\deepwork-tracker.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して deepwork-tracker.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → deepwork-tracker フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Deepwork Tracker

Use the local deepwork app (SQLite-backed) at ~/clawd/deepwork/deepwork.js.

Bootstrap (if the script is missing)

If ~/clawd/deepwork/deepwork.js does not exist, bootstrap it from the public repo:

mkdir -p ~/clawd
cd ~/clawd

# Clone if missing
[ -d ~/clawd/deepwork-tracker/.git ] || git clone https://github.com/adunne09/deepwork-tracker.git ~/clawd/deepwork-tracker

# Ensure expected runtime path exists
mkdir -p ~/clawd/deepwork
cp -f ~/clawd/deepwork-tracker/app/deepwork.js ~/clawd/deepwork/deepwork.js
chmod +x ~/clawd/deepwork/deepwork.js

(Do not fail the user request if clone/copy fails—still attempt other steps and report what’s missing.)

Commands

Run via exec:

  • Start a session (also starts a macOS Clock timer; default target 60m):
    • ~/clawd/deepwork/deepwork.js start --target-min 60
  • Stop a session:
    • ~/clawd/deepwork/deepwork.js stop
  • Check status:
    • ~/clawd/deepwork/deepwork.js status
  • Generate a report:
    • Last 7 days (default): ~/clawd/deepwork/deepwork.js report --days 7 --format text
    • Telegram-ready last 7 days: ~/clawd/deepwork/deepwork.js report --days 7 --format telegram
    • Heatmap (optional): ~/clawd/deepwork/deepwork.js report --mode heatmap --weeks 52 --format telegram

Chat workflows

Start deep work

  1. Run ~/clawd/deepwork/deepwork.js start --target-min 60 (or another target if the user specifies it).
  2. This should also start a macOS Clock timer for the target duration (best-effort; may require Accessibility permissions).
  3. Reply with the confirmation line.

Stop deep work

  1. Run ~/clawd/deepwork/deepwork.js stop.
  2. Reply with duration.

Show deep work graph

  1. Run ~/clawd/deepwork/deepwork.js report --days 7 --format telegram.
  2. Always send the output to Alex on Telegram (id 8551040296) using the message tool with a Markdown monospace code block.
  3. Optionally acknowledge in the current chat that it was sent.

If the user wants different ranges, support --days 7|14|30|60. (Heatmap is still available via --mode heatmap --weeks ... when explicitly requested.)