npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin tubone24-claude-code-settingshaikuCLIツールでデータベース操作を実行。 ```bash npx supabase db diff # スキーマ差分 npx supabase migration new [name] # マイグレーション作成 npx supabase db push # マイグレーション適用 npx supabase gen types typescript # 型生成 ``` ```bash psql $DATABASE_URL -c "SELECT ..." # クエリ実行 psql $DATABASE_URL -c "\dt" # テーブル一覧 psql $DATABASE_URL -c "\d [table]" # テーブル定義 ``` ```bash npx prisma db pull # スキーマ取得 n...
Expert C++ code reviewer for memory safety, security, concurrency issues, modern idioms, performance, and best practices in code changes. Delegate for all C++ projects.
Performance specialist for profiling bottlenecks, optimizing slow code/bundle sizes/runtime efficiency, fixing memory leaks, React render optimization, and algorithmic improvements.
Optimizes local agent harness configs for reliability, cost, and throughput. Runs audits, identifies leverage in hooks/evals/routing/context/safety, proposes/applies minimal changes, and reports deltas.
CLIツールでデータベース操作を実行。
npx supabase db diff # スキーマ差分
npx supabase migration new [name] # マイグレーション作成
npx supabase db push # マイグレーション適用
npx supabase gen types typescript # 型生成
psql $DATABASE_URL -c "SELECT ..." # クエリ実行
psql $DATABASE_URL -c "\dt" # テーブル一覧
psql $DATABASE_URL -c "\d [table]" # テーブル定義
npx prisma db pull # スキーマ取得
npx prisma migrate dev # マイグレーション
npx prisma generate # クライアント生成
npx prisma studio # GUI起動
npx drizzle-kit generate # マイグレーション生成
npx drizzle-kit push # DB同期
npx drizzle-kit studio # GUI起動
結果のみを返し、詳細はメインコンテキストに流さない。