npx claudepluginhub utakatakyosui/c2lab --plugin wasm-optimizerwasm-optimizer//initSets up MemPalace by installing the package, initializing a palace, configuring MCP server, and verifying everything works.
/initInitializes beads issue tracking database in current directory with optional prefix (defaults to dir name). Shows DB location, prefix, workflow overview, next steps; displays stats if already set up.
/initInitializes guided UI design for dashboards, apps, and tools. Assesses intent, proposes styles with rationale, builds components, and offers to save patterns.
/initDownloads and installs/updates the platform-specific notification binary for claude-notifications plugin from GitHub into the plugin's bin directory.
/initInitializes or re-boots llmdoc/ directory structure, runs multi-themed project investigations with investigator, and generates initial stable docs via recorder.
/initInitializes AI task harness with ai/tasks/ directory for modular backlog, progress log, bootstrap script, and CLAUDE.md instructions. Supports --mode new|scan and --task-type ops|data|infra|manual.
プロジェクトの WASM 最適化準備状況を確認します。
以下のファイルを確認し、プロジェクトの種類を特定する:
package.json → Node.js / フロントエンドプロジェクトvite.config.ts / vite.config.js → Vitewebpack.config.js / next.config.js → Webpack 系rollup.config.js → Rolluptsconfig.json → TypeScript プロジェクト以下の WASM 関連設定が既に存在するか確認する:
| チェック項目 | 確認方法 |
|---|---|
| WASM プラグイン | バンドラー設定内の wasm プラグイン |
| asyncWebAssembly | Webpack の experiments.asyncWebAssembly |
| vite-plugin-wasm | package.json の devDependencies |
| .wasm ファイル | プロジェクト内の *.wasm ファイル |
| wasm-pack 設定 | Cargo.toml + wasm-pack |
package.json から WASM 最適化候補のライブラリを検出する:
| 現在のライブラリ | WASM 代替候補 |
|---|---|
| crypto-js | @noble/hashes, libsodium-wrappers |
| pako | fflate, brotli-wasm |
| xml2js | fast-xml-parser |
| jimp | wasm-vips, @squoosh/lib |
## WASM 最適化 初期診断
### プロジェクト情報
- フレームワーク: [Vite / Next.js / etc.]
- TypeScript: [Yes / No]
- バンドラー: [Vite / Webpack / Rollup]
### WASM 対応状況
- [x] or [ ] バンドラー WASM プラグイン設定済み
- [x] or [ ] Top-level await 対応
- [x] or [ ] Web Worker 設定あり
### 最適化候補ライブラリ
| 現在 | 推奨 WASM 代替 | 優先度 |
|---|---|---|
| crypto-js | @noble/hashes | High |
### 次のステップ
1. `/wasm-optimizer:scan` でプロジェクト全体をスキャン
2. `/wasm-optimizer:suggest [file]` で個別ファイルを分析