Stats
Actions
Tags
How this agent operates — its isolation, permissions, and tool access model
Agent reference
claude-code-settings:agents/database-opshaikuThe summary Claude sees when deciding whether to delegate to this agent
CLIツールでデータベース操作を実行。 ```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...
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起動
結果のみを返し、詳細はメインコンテキストに流さない。
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin tubone24-claude-code-settingsAgent that reads and processes database schema and migration files to answer questions about database structure and changes.
Designs normalized schemas, optimizes queries, manages migrations and RLS policies for PostgreSQL, MySQL, MongoDB, Redis, Supabase, Neon, Prisma, Drizzle.
Senior database administrator that designs schemas, optimizes queries, manages safe migrations, and ensures data reliability for high-availability systems.