From claude-code-settings
CLIツールリファレンス。GitHub CLI、データベースCLI、デプロイCLI、ブラウザ自動化ツールのコマンド参照に使用。
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin tubone24-claude-code-settingsThis skill uses the workspace's default tool permissions.
開発で頻繁に使用するCLIツールのクイックリファレンス。
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
開発で頻繁に使用するCLIツールのクイックリファレンス。
| ツール | 用途 | 参照 |
|---|---|---|
| gh | GitHub CLI | references/github-cli.md |
| agent-browser | AIネイティブブラウザ自動化 | references/agent-browser.md |
| Chrome DevTools | ブラウザデバッグ | references/chrome-devtools.md |
| Supabase/Prisma/Drizzle | データベース操作 | references/database-cli.md |
| Vercel/Railway/Fly.io | デプロイ | references/deploy-cli.md |
gh pr create --title "..." --body "..."
gh pr list --state open
gh pr view [number]
gh issue create --title "..." --body "..."
gh release create [tag] --notes "..."
agent-browser open <url>
agent-browser snapshot -i # インタラクティブ要素のみ
agent-browser click @e1 # refでクリック
agent-browser fill @e2 "text" # refで入力
agent-browser screenshot
# Supabase
npx supabase db diff -f [name]
npx supabase migration new [name]
npx supabase gen types typescript --local > types/supabase.ts
# Prisma
npx prisma migrate dev --name [name]
npx prisma generate
npx prisma studio
# Vercel
vercel --prod
vercel env pull
# Railway
railway up
railway logs
| 用途 | 推奨ツール |
|---|---|
| AIエージェントのブラウザ操作 | agent-browser |
| パフォーマンス分析 | Chrome DevTools |
| E2Eテスト(CI/CD) | Playwright |
| コンテキスト節約 | agent-browser(93%削減) |
| 用途 | 推奨ツール |
|---|---|
| Supabaseプロジェクト | supabase cli |
| TypeScript ORM | Prisma or Drizzle |
| 直接SQL操作 | psql |
各ツールの詳細なコマンドとオプションはreferences/配下を参照:
references/github-cli.md - gh CLI完全リファレンスreferences/agent-browser.md - agent-browser CLIreferences/chrome-devtools.md - DevToolsデバッグreferences/database-cli.md - DB CLI集references/deploy-cli.md - デプロイCLI集