jpskill.com
📦 その他 コミュニティ 🟡 少し慣れが必要 👤 幅広いユーザー

📦 Horizon Track

horizon-track

長期的な目標に対し、複数回の作業にわた

⏱ この作業 数時間 → 数分

📺 まず動画で見る(YouTube)

▶ 【Claude Code完全入門】誰でも使える/Skills活用法/経営者こそ使うべき ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Track long-horizon objectives across multiple sessions with milestone checkpoints, progress persistence, and drift detection

🇯🇵 日本人クリエイター向け解説

一言でいうと

長期的な目標に対し、複数回の作業にわた

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して horizon-track.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → horizon-track フォルダができる
  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-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Horizon Track の使い方を教えて
  • Horizon Track で何ができるか具体例で見せて
  • Horizon Track を初めて使う人向けにステップを案内して

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

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

Horizon Track

Track long-running objectives that span multiple sessions, days, or weeks.

When to use

When an objective is too large for a single session — multi-week features, research programs, migration projects, or any work that requires persistent progress tracking across conversations.

Steps

  1. Initialize horizon — define the objective, target date, and 3-7 milestones
  2. Store horizon — call mcp__claude-flow__memory_store with namespace horizons and key horizon-[name]:
    {
      "objective": "...",
      "created": "2026-04-28",
      "targetDate": "2026-05-15",
      "milestones": [
        {"id": "m1", "name": "...", "criteria": "...", "status": "pending"},
        {"id": "m2", "name": "...", "criteria": "...", "status": "pending"}
      ],
      "currentMilestone": "m1",
      "sessions": []
    }
  3. Session check-in — at the start of each session:
    • Recall horizon: mcp__claude-flow__memory_retrieve key horizon-[name] namespace horizons
    • Review milestone status
    • Assess drift (are we still on track?)
    • Plan this session's contribution
  4. Work and record — as work progresses:
    • Update milestone status
    • Record session summary
    • Store intermediate findings
  5. Session check-out — at the end of each session:
    • Update horizon state in memory
    • Record what was accomplished
    • Note blockers or scope changes
    • Estimate remaining effort
  6. Milestone completion — when a milestone is done:
    • Verify completion criteria met
    • Store learned patterns via mcp__claude-flow__hooks_intelligence_pattern-store
    • Advance to next milestone
  7. Drift detection — flag when:
    • Progress rate suggests target date will be missed
    • Scope has grown beyond original definition
    • Dependencies have changed
    • Approach needs fundamental rethinking

Memory namespaces

  • horizons — active horizon definitions and state
  • horizon-sessions — per-session summaries keyed by [horizon]-[date]
  • horizon-learnings — patterns and insights discovered during the horizon