feat: 残りの同梱アイテムを配布に移す (notedeck#746) - #43
Merged
Merged
Conversation
notedeck 側に同梱として残っていた skill 3 本とプラグイン 1 本を配布に移す。 同梱のままだと、修正版を届ける手段がユーザーによる削除・再シードしかない (notedeck#746)。ストア配布に移せば既存の更新検知がそのまま使える。 #969 で作者系 6 本を移したのと同じ扱い。既存ユーザーの手元は notedeck 側の 移行で storeId 付きに変換され、本文を書き換えていても壊れない。 - notedeck-guide / notedeck-memo / self-profile (skill) - ai-actions (plugin) frontmatter の builtIn を落とし、author / category / tags を配布形式に揃えた。 本文は移管前と同じ。 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (15)
📝 WalkthroughWalkthroughThe registry adds the ChangesRegistry feature additions
Estimated code review effort: 3 (Moderate) | ~25 minutes Sequence Diagram(s)sequenceDiagram
participant Clipboard
participant ai-actions
participant ai.chat
participant Notification
Clipboard->>ai-actions: Read clipboard text
ai-actions->>ai.chat: Send instruction and clipboard text
ai.chat-->>ai-actions: Return generated response
ai-actions->>Clipboard: Write generated response
ai-actions->>Notification: Display result notification
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This was referenced Aug 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
notedeck 側に同梱として残っていた skill 3 本とプラグイン 1 本を配布に移す (notedeck-dev/notedeck#746)。
同梱のままだと、修正版を届ける手段がユーザーによる削除・再シードしかない。配布に移せば既存の更新検知がそのまま使えるため、notedeck 側は同梱シード機構ごと廃止する。#969 で作者系 6 本を移したのと同じ扱いで、これで NoteDeck の同梱アイテムはゼロになる。
追加するアイテム
notedeck-guidenotedeck-memo<memos>ブロックを永続記憶として扱う指示書self-profileai-actionsfrontmatter / meta は配布形式に揃えた (
builtInを落とし、author/category/tagsを追加)。本文・ソースは移管前と同じ。既存ユーザーへの影響
notedeck 側の移行が、手元に残っている旧同梱版を
storeId付きのストア配布版相当へ変換する。削除ではなく変換なので、本文やソースを書き換えていても壊れない。以降はストアから更新を受け取れるようになる。プラグインは
installId(ai-actions-builtin) を変えずにstoreIdだけ足す — installId は編集履歴サイドカーや設定の参照先なので、変えると切れるため。マージ順序
この PR を先にマージする必要がある。 notedeck 側の移行が先に出ると、変換後の
storeIdが指す先がまだ存在しない状態になる。確認
pnpm run registry:build成功 (skills 29→32、plugins 26→27)node scripts/check-registry-integrity.mjs— 完全性チェック OK (警告 0 件)🤖 Generated with Claude Code
Summary by CodeRabbit
New Features
Chores