jpskill.com
📦 その他 コミュニティ

friday-brief

Delivers the Friday end-of-week pulse — revenue vs prior week, top sellers, wins and watches. Accepts optional lookback window of 7 or 14 days.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して friday-brief.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → friday-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 名] friday-brief 金曜日の「成果と注目点」ブリーフィングを実行します。数値を抽出し、重要な点を明らかにし、オーナーに週末の状況を明確に伝えます。

引数を解析します。

  • --lookback (デフォルト: 7d) — 1週間分は7d、2週間分のローリング比較は14d

ステップ1 — 収益の動向

business-pulseスキルワークフローを使用します。

  1. 過去の期間のPayPal取引を抽出します。
  2. 同じ期間のHubSpotの取引成立を抽出します。
  3. 前週比の収益差を計算します。
  4. 貢献度でランク付けされた上位3つの収益源(製品/顧客/チャネル)を明らかにします。

ステップ2 — 売上内訳

  1. 販売量と収益で上位5つの製品/サービスをリストアップします。
  2. 下位3つ(前期間と比較して期待を下回ったもの)をリストアップします。
  3. 急激な上昇または下降(20%を超える変化)があった項目にフラグを立てます。

ステップ3 — 成果と注目点の要約

出力を以下の形式で整形します。

Friday Brief — {date}

WINS
• {win 1}
• {win 2}
• {win 3}

WATCHES
• {watch 1} — {recommended action}
• {watch 2} — {recommended action}

Revenue this week: ${amount} ({+/-}X% vs last week)

コネクタの障害

接続されているものすべてで実行します — このコマンドは正常に機能が低下します。PayPalが接続されていない場合、取引データをスキップし、「PayPalが接続されていません — 収益データはHubSpotの取引のみです。」とメモします。HubSpotが接続されていない場合、取引成立をスキップし、その旨をメモします。どちらも接続されていない場合、停止してオーナーに「収益源が接続されていません。金曜日のブリーフィングを実行するにはPayPalまたはHubSpotを接続してください。」と伝えます。

承認ゲート

  • このブリーフィングを自動的に送信または投稿しないでください。 常にオーナーが最初にレビューできるように表示してください。
  • 何も自動的にキャンセルまたは変更しないでください。 データと推奨事項のみを提示してください。

出力

整形されたブリーフィングで終了し、オーナーに「これをSlackに投稿しますか、ご自身にメールで送信しますか、それとも保存しますか?」と尋ねます。

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

Run the Friday wins-and-watches briefing. Pull the numbers, surface what matters, and give the owner a clean end-of-week picture.

Parse arguments:

  • --lookback (default: 7d) — 7d for one week or 14d for a two-week rolling comparison

Step 1 — Revenue pulse

Using the business-pulse skill workflow:

  1. Pull PayPal transactions for the lookback period.
  2. Pull any HubSpot deal closes for the same window.
  3. Calculate week-over-week revenue delta.
  4. Surface top 3 revenue sources (product / customer / channel) ranked by contribution.

Step 2 — Sales breakdown

  1. List the top 5 selling products/services by volume and revenue.
  2. List the bottom 3 (anything that moved less than expected vs. prior period).
  3. Flag any items with a sudden spike or drop (>20% change).

Step 3 — Wins and watches summary

Format the output as:

Friday Brief — {date}

WINS
• {win 1}
• {win 2}
• {win 3}

WATCHES
• {watch 1} — {recommended action}
• {watch 2} — {recommended action}

Revenue this week: ${amount} ({+/-}X% vs last week)

Connector failures

Run with whatever is connected — this command degrades gracefully. If PayPal is missing, skip transaction data and note "PayPal not connected — revenue data from HubSpot deals only." If HubSpot is missing, skip deal closes and note it. If neither is connected, stop and tell the owner: "No revenue sources connected. Connect PayPal or HubSpot to run the Friday brief."

Approval gates

  • Never send or post this brief automatically. Always display it for the owner to review first.
  • Never auto-cancel or modify anything. Surface the data and recommendations only.

Output

End with the formatted brief and ask the owner: "Want me to post this to Slack, email it to yourself, or save it?"