Codemod
コードの大規模変更を自動化するツール。
Next.js
npx @next/codemod <transform> <path>
Upgrading: Codemods | Next.js
Use codemods to upgrade your Next.js codebase when new features are released.
nextjs.org

Tailwind CSS
npx @tailwindcss/upgrade
Upgrade guide - Getting started
Upgrading your Tailwind CSS projects from v3 to v4.
tailwindcss.com

HeroUI
npx @heroui/codemod@latest migrate
NextUI to HeroUI
Learn how to migrate your NextUI project to HeroUI, including automatic and manual migration steps.
heroui.com

GitHub Copilot 関連のブックマーク
GitHub Copilot の 3 つのモード(Ask, Edit, Agent)の正しい使い分け
zenn.dev

このMCPはプロジェクト全体を把握 VSCode GitHub Copilotで 「Serena MCP」を使う方法 - Qiita
追記 2025年8月16日 なぜSerena MCPを使うのかの理由を知りたい人は必読! 話題のSerenaMCPの仕組みを解説! - izanami 追記終了 GitHub Copilotシリーズ ...
qiita.com

GitHub Copilot で serena mcp を使う
Terminal
brew install uv
.vscode/mcp.json
{
"servers": {
"serena": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant"
]
},
}
}
Macのキーボード設定変更
スペース2個入力すると .
を勝手に挿入する設定はオフにした。
macOSでスペース2回押すとピリオドが入力されるのを止めた話
zenn.dev
