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

monday-brief

Generates a one-page Monday morning briefing — cash, sales, pipeline, week ahead, top three to-dos. Accepts optional post destination and save-to arguments.

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

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

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

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

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

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] monday-brief 月曜朝のブリーフィングを実行します。接続されているすべてのコネクタから情報を取得し、接続されていないコネクタがある場合は適切に機能を縮小し、オーナーが2分以内に読める1ページのブリーフを配信します。

引数を解析します。

  • --post (デフォルト none) — ブリーフの要約を slackteams、または none に投稿します。
  • --save-to (デフォルト files) — files (Google Drive / OneDrive)、desktop (ローカル)、または both に保存します。

ステップ1 — business-pulse を実行する

business-pulse スキルワークフローをトリガーします。接続されているものすべてを対象に、以下の順序で情報を取得します。

  1. 現金 — QuickBooks の残高 + 過去7日間の純流動額
  2. 売上トレンド — PayPal/Square の過去7日間とそれ以前の7日間の比較、変化率、トップSKU
  3. パイプライン — HubSpot の移動した取引、停滞している取引 (14日以上活動なし)、新規インバウンドリード
  4. 今週のコミットメント — 外部参加者とのカレンダーイベント、成果物の締め切り
  5. ウォッチリスト — 「返信が必要」とフラグ付けされた未読のGmail、返信待ちのSlack DM
  6. 3つのこと — 今日の最もレバレッジの高い3つのアクション、ランク付け

コネクタが不足している場合、失敗するのではなく、ブリーフにその旨を記載します(例:「PayPal が接続されていません — 売上トレンドはスキップされました」)。

ステップ2 — 1ページのブリーフをフォーマットする

レイアウト (マークダウン、1画面に収まる):

# 月曜ブリーフ — {Mon DD, YYYY}

## 現金
{$X 残高 · {+/-}$Y 過去7日間の純額 · 運転資金に関するメモ}

## 売上 (過去7日間 vs それ以前の7日間)
{$X 合計 · {+/-}Z% · トップSKU: {名前} ({$})}

## パイプライン
{N 件の取引が移動 · M 件が停滞 · K 件の新規リード}

## 今週の予定
- {火 10時} — {顧客X 発見的対話}
- {木 終業時} — {Y への提案書提出期限}
- ...

## 今日あなたが必要とする3つのこと
1. {最もレバレッジの高いアクションと1行の理由}
2. {...}
3. {...}

ステップ3 — 保存と(オプションで)投稿

  1. 選択した --save-to の場所にブリーフを保存します。
    • files — Google Drive または OneDrive のルート、ファイル名 monday-brief-YYYY-MM-DD.md
    • desktop~/Desktop/monday-brief-YYYY-MM-DD.md
    • both — 両方の場所
  2. --post slack または --post teams の場合、3つのこと セクションのみを投稿し(ブリーフ全体ではなく、チャンネル投稿は短く保ちます)、保存されたファイルへのリンクを貼ります。
  3. 保存先に関わらず、チャットにブリーフ全体を表示します。

承認ゲート

  • ファイルの保存は自動です。 オーナー自身のドライブであるため、承認は不要です。
  • Slack/Teams への投稿には確認が必要です。 投稿の下書きを表示し、「投稿する」という指示を待ってから公開します。
  • ブリーフが好ましくない数字(大幅な現金減少、取引の停滞など)を示している場合、オーナーに明示的に尋ねることなく投稿してはいけません。 チャンネルにはリーダーシップ以外のメンバーがいる可能性があります。

実行頻度に関する注意

このコマンドは毎週実行されるように設計されています。オーナーは Cowork のタスクスケジューラを通じてこれをスケジュールできます。月曜日の午前7時(東部時間)に実行されると、出力は直接オーナーのドライブに送られ、(設定されている場合)Slack/Teams のDMチャンネルにも送られます。

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Run the Monday Morning Briefing. Pull from every connector that's live, gracefully degrade when one isn't, and deliver a one-page brief the owner can read in under two minutes.

Parse arguments:

  • --post (default none) — post the brief summary to slack, teams, or none
  • --save-to (default files) — files (Google Drive / OneDrive), desktop (local), or both

Step 1 — Run business-pulse

Trigger the business-pulse skill workflow. It pulls in this order, scoping to whatever is connected:

  1. Cash — QuickBooks balance + last 7 days of net flow
  2. Sales trend — PayPal/Square last 7 days vs. prior 7 days, % change, top SKU
  3. Pipeline — HubSpot deals moved, deals stalled (>14 days no activity), new inbound leads
  4. This week's commitments — Calendar events with external attendees, deliverable deadlines
  5. Watch-list — unread Gmail flagged "needs reply," Slack DMs awaiting response
  6. The 3 things — the three highest-leverage actions for today, ranked

If a connector is missing, note it in the brief ("PayPal not connected — sales trend skipped") rather than failing.

Step 2 — Format the one-page brief

Layout (markdown, fits on one screen):

# Monday Brief — {Mon DD, YYYY}

## Cash
{$X balance · {+/-}$Y net last 7 days · runway note}

## Sales (last 7d vs prior 7d)
{$X total · {+/-}Z% · top SKU: {name} ({$})}

## Pipeline
{N deals moved · M stalled · K new leads}

## Week ahead
- {Tue 10am} — {Customer X discovery call}
- {Thu EOD}  — {Proposal due to Y}
- ...

## Three things that need you today
1. {Highest-leverage action with one-line why}
2. {...}
3. {...}

Step 3 — Save and (optionally) post

  1. Save the brief to the chosen --save-to location:
    • files — Google Drive or OneDrive root, filename monday-brief-YYYY-MM-DD.md
    • desktop~/Desktop/monday-brief-YYYY-MM-DD.md
    • both — both locations
  2. If --post slack or --post teams, post the Three things section only (not the full brief — keep the channel post short) and link to the saved file.
  3. Show the full brief in chat regardless of save target.

Approval gates

  • Saving the file is auto. No approval needed — it's the owner's own drive.
  • Posting to Slack/Teams requires confirmation. Show the post draft and wait for "post it" before publishing.
  • Never post if the brief surfaces unflattering numbers (significant cash drop, deal slipping) without explicitly asking the owner — the channel may have non-leadership members.

Cadence note

This command is designed to run weekly. The owner may schedule it via Cowork's task scheduler — when run on Monday at 7am ET, the output goes straight to their drive and (if configured) Slack/Teams DM channel.