blocklet-updater
blockletプロジェクトのバージョンを上げ、ビルドとバンドルを行い、新しいリリースを作成することで、「新しいリリースを作成して」などの依頼に対応するSkill。
📜 元の英語説明(参考)
Creates a new release for a blocklet project by bumping version, building, and bundling. Use when asked to "create a new release", "bump and bundle", or "update blocklet version".
🇯🇵 日本人クリエイター向け解説
blockletプロジェクトのバージョンを上げ、ビルドとバンドルを行い、新しいリリースを作成することで、「新しいリリースを作成して」などの依頼に対応するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o blocklet-updater.zip https://jpskill.com/download/17232.zip && unzip -o blocklet-updater.zip && rm blocklet-updater.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17232.zip -OutFile "$d\blocklet-updater.zip"; Expand-Archive "$d\blocklet-updater.zip" -DestinationPath $d -Force; ri "$d\blocklet-updater.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
blocklet-updater.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
blocklet-updaterフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 この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-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Blocklet Updater
Blocklet プロジェクトのバージョンを上げ、リリースバンドルを作成します。
ワークフロー
1. バージョン上げ
blocklet version patch
失敗した場合 → エラーを出力して終了 します。
2. ビルドシステムの検出
package.json が存在し、build スクリプトが含まれているかを確認します。
ビルドスクリプトが存在する場合
依存関係をインストールしてビルドします。
pnpm install && pnpm run build
いずれかが失敗した場合 → エラーを出力して終了 します。
ビルドスクリプトが存在しない場合
ビルドステップをスキップします - プロジェクトは事前にビルドされているか、静的である可能性があります。
3. エントリーポイントの検証
出力ディレクトリとエントリーポイントの特定
一般的な場所 (dist/ → build/ → out/ → public/ → ./) から index.html を探します。
見つからない場合 → エラーメッセージ "No index.html entry point found." を出力して終了 します。
blocklet.yml の Main フィールドの検証
blocklet.yml を読み込み、main フィールドを確認します。
mainがindex.htmlを含むディレクトリを指している場合 → 有効mainがずれている場合 → 正しい出力ディレクトリに更新- 更新後、変更をユーザーに通知
4. メタデータの検証
blocklet meta
失敗した場合 → エラーと提案を出力して終了 します。
5. バンドルの作成
blocklet bundle --create-release
失敗した場合 → エラーを出力して終了 します。
6. 完了処理
完了後にサマリーや要約を出力しないでください。 バンドルの作成が成功したら、何も出力せずに静かに終了します。ツールの出力は、すでにユーザーに十分なフィードバックを提供しています。
エラーリファレンス
すべてのエラー条件と提案については、{baseDir}/errors.md を参照してください。
サポートファイル
errors.md- エラーリファレンスexamples.md- ワークフローの例
{baseDir} は、スキルのインストールディレクトリに解決されます。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Blocklet Updater
Bumps a blocklet project version and creates a release bundle.
Workflow
1. Version Bump
blocklet version patch
If fails → EXIT with error output.
2. Build System Detection
Check if package.json exists and contains a build script.
If Build Script Exists
Install dependencies and build:
pnpm install && pnpm run build
If either fails → EXIT with error output.
If No Build Script
Skip build step - project is likely pre-built or static.
3. Entry Point Verification
Locate Output Directory & Entry Point
Find index.html in common locations: dist/ → build/ → out/ → public/ → ./
If not found → EXIT with error message: "No index.html entry point found."
Verify blocklet.yml Main Field
Read blocklet.yml and check the main field:
- If
mainpoints to directory containingindex.html→ valid - If
mainis misaligned → update it to the correct output directory - After any update, inform user of the change
4. Metadata Verification
blocklet meta
If fails → EXIT with error output and suggestions.
5. Bundle Creation
blocklet bundle --create-release
If fails → EXIT with error output.
6. Finalization
Do NOT output any summary or recap after completion. Simply end silently after successful bundle creation. The tool outputs already provide sufficient feedback to the user.
Error Reference
See {baseDir}/errors.md for all error conditions and suggestions.
Supporting Files
errors.md- Error referenceexamples.md- Workflow examples
{baseDir} resolves to the skill's installation directory.