warp
開発者の生産性を高めるモダンなターミナルWarpの活用を支援し、Warp Workflowによるコマンド共有、Warp Driveでのチーム知識共有、AI機能やブロック編集による効率的なターミナル操作をサポートするSkill。
📜 元の英語説明(参考)
Expert guidance for Warp, the modern terminal built for developer productivity. Helps developers create Warp Workflows (shareable command templates), configure Warp Drive for team knowledge sharing, and leverage Warp's AI features and block-based editing for efficient terminal usage.
🇯🇵 日本人クリエイター向け解説
開発者の生産性を高めるモダンなターミナルWarpの活用を支援し、Warp Workflowによるコマンド共有、Warp Driveでのチーム知識共有、AI機能やブロック編集による効率的なターミナル操作をサポートするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o warp.zip https://jpskill.com/download/15550.zip && unzip -o warp.zip && rm warp.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15550.zip -OutFile "$d\warp.zip"; Expand-Archive "$d\warp.zip" -DestinationPath $d -Force; ri "$d\warp.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
warp.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
warpフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Warp — モダンなターミナルとワークフロー自動化
概要
Warp は、開発者の生産性向上のために構築されたモダンなターミナルです。開発者が Warp ワークフロー (共有可能なコマンドテンプレート) を作成したり、チームの知識共有のために Warp Drive を構成したり、効率的なターミナル利用のために Warp の AI 機能やブロックベースの編集を活用したりするのに役立ちます。
手順
Warp ワークフロー
再利用可能な、パラメータ化されたコマンドテンプレートを作成します。
# ~/.warp/workflows/deploy-service.yaml — パラメータ化されたデプロイメントワークフロー
name: Deploy Service
description: ヘルスチェック付きでサービスを本番環境にビルドおよびデプロイします
author: DevOps Team
tags: [deploy, production, docker]
command: |-
echo "🚀 {{service_name}} を {{environment}} にデプロイしています..." &&
docker build -t {{registry}}/{{service_name}}:{{version}} . &&
docker push {{registry}}/{{service_name}}:{{version}} &&
kubectl set image deployment/{{service_name}} \
{{service_name}}={{registry}}/{{service_name}}:{{version}} \
-n {{namespace}} &&
kubectl rollout status deployment/{{service_name}} -n {{namespace}} --timeout=300s &&
echo "✅ デプロイメントが完了しました。ヘルスチェックを実行しています..." &&
curl -sf https://{{service_name}}.{{domain}}/health || \
(echo "❌ ヘルスチェックに失敗しました! ロールバックしています..." && \
kubectl rollout undo deployment/{{service_name}} -n {{namespace}} && exit 1)
arguments:
- name: service_name
description: デプロイするサービスの名前
default_value: api-server
- name: environment
description: ターゲット環境
default_value: production
- name: registry
description: コンテナレジストリ URL
default_value: ghcr.io/myorg
- name: version
description: イメージバージョンのタグ
default_value: latest
- name: namespace
description: Kubernetes 名前空間
default_value: production
- name: domain
description: ヘルスチェックのベースドメイン
default_value: api.example.com
# ~/.warp/workflows/git-cleanup.yaml — 古い git ブランチをクリーンアップします
name: Git Branch Cleanup
description: マージされたブランチをローカルおよびリモートで削除します
tags: [git, cleanup]
command: |-
echo "🧹 マージされたブランチをクリーンアップしています..." &&
git fetch --prune &&
echo "ローカルのマージされたブランチ:" &&
git branch --merged {{base_branch}} | grep -v "{{base_branch}}" | grep -v "^\*" &&
echo "" &&
read -p "これらのローカルブランチを削除しますか? (y/n) " confirm &&
if [ "$confirm" = "y" ]; then
git branch --merged {{base_branch}} | grep -v "{{base_branch}}" | grep -v "^\*" | xargs -r git branch -d &&
echo "✅ ローカルブランチをクリーンアップしました"
fi &&
if [ "{{clean_remote}}" = "true" ]; then
echo "リモートのマージされたブランチ:" &&
git branch -r --merged {{base_branch}} | grep -v "{{base_branch}}" | grep "origin/" | sed 's/origin\///' &&
read -p "これらのリモートブランチを削除しますか? (y/n) " confirm2 &&
if [ "$confirm2" = "y" ]; then
git branch -r --merged {{base_branch}} | grep -v "{{base_branch}}" | grep "origin/" | sed 's/origin\///' | xargs -r -I{} git push origin --delete {} &&
echo "✅ リモートブランチをクリーンアップしました"
fi
fi
arguments:
- name: base_branch
description: 比較対象のベースブランチ
default_value: main
- name: clean_remote
description: リモートブランチもクリーンアップしますか (true/false)
default_value: "false"
# ~/.warp/workflows/db-ops.yaml — データベース操作ワークフロー
name: Database Operations
description: 安全性チェック付きの一般的なデータベースタスク
tags: [database, postgres, backup]
command: |-
{{#if (eq operation "backup")}}
echo "📦 {{host}} 上の {{db_name}} をバックアップしています..." &&
pg_dump -h {{host}} -U {{user}} -d {{db_name}} \
--format=custom --compress=9 \
-f "backup_{{db_name}}_$(date +%Y%m%d_%H%M%S).dump" &&
echo "✅ バックアップが完了しました: backup_{{db_name}}_$(date +%Y%m%d_%H%M%S).dump"
{{else if (eq operation "restore")}}
echo "⚠️ {{backup_file}} から {{db_name}} を復元しています..." &&
echo "これは現在のデータベースを上書きします!" &&
read -p "続行しますか? (yes/no) " confirm &&
if [ "$confirm" = "yes" ]; then
pg_restore -h {{host}} -U {{user}} -d {{db_name}} \
--clean --if-exists {{backup_file}} &&
echo "✅ 復元が完了しました"
fi
{{else if (eq operation "stats")}}
psql -h {{host}} -U {{user}} -d {{db_name}} -c "
SELECT schemaname, relname, n_tup_ins, n_tup_upd, n_tup_del,
pg_size_pretty(pg_total_relation_size(relid)) as total_size
FROM pg_stat_user_tables ORDER BY pg_total_relation_size(relid) DESC LIMIT 20;"
{{/if}}
arguments:
- name: operation
description: "操作: backup, restore, または stats"
default_value: backup
- name: db_name
description: データベース名
- name: host
description: データベースホスト
default_value: localhost
- name: user
description: データベースユーザー
default_value: postgres
- name: backup_file
description: バックアップファイルパス (復元用)
default_value: ""
Warp Drive — チームナレッジベース
ワークフローとスニペットをチームと共有します。
# チーム共有ワークフロー: 新規開発者オンボーディング
# Warp Drive に保存され、すべてのチームメンバーがアクセスできます
name: New Dev Environment Setup
description: ローカル開発環境をゼロからセットアップします
tags: [onboarding, setup]
command: |-
echo "🔧 開発環境をセットアップしています..." &&
# 必要なすべてのリポジトリをクローンします
echo "📥 リポジトリをクローンしています..." &&
mkdir -p ~/projects &&
cd ~/projects &&
git clone git@github.com:{{org}}/api.git &&
git clone git@github.com:{{org}}/frontend.git &&
git clone git@github.com:{{org}}/infrastructure.git &&
# 依存関係をインストールします
echo "📦 依存関係をインストールしています..." &&
cd api && npm install && cd .. &&
cd frontend && npm install && cd .. &&
# ローカルサービスをセットアップします
echo "🐳 Docker サービスを開始しています..." &&
cd infrastructure &&
docker compose -f docker-compose.local.yml up -d &&
# データベースの移行を実行します
echo "🗄️ 移行を実行しています..." &&
cd ../api &&
npm run db:migrate &&
npm run db:seed &&
# すべてが動作することを確認します
echo "🧪 スモークテストを実行しています..." &&
(原文がここで切り詰められています) 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Warp — Modern Terminal & Workflow Automation
Overview
Warp, the modern terminal built for developer productivity. Helps developers create Warp Workflows (shareable command templates), configure Warp Drive for team knowledge sharing, and leverage Warp's AI features and block-based editing for efficient terminal usage.
Instructions
Warp Workflows
Create reusable, parameterized command templates:
# ~/.warp/workflows/deploy-service.yaml — Parameterized deployment workflow
name: Deploy Service
description: Build and deploy a service to production with health checks
author: DevOps Team
tags: [deploy, production, docker]
command: |-
echo "🚀 Deploying {{service_name}} to {{environment}}..." &&
docker build -t {{registry}}/{{service_name}}:{{version}} . &&
docker push {{registry}}/{{service_name}}:{{version}} &&
kubectl set image deployment/{{service_name}} \
{{service_name}}={{registry}}/{{service_name}}:{{version}} \
-n {{namespace}} &&
kubectl rollout status deployment/{{service_name}} -n {{namespace}} --timeout=300s &&
echo "✅ Deployment complete. Running health check..." &&
curl -sf https://{{service_name}}.{{domain}}/health || \
(echo "❌ Health check failed! Rolling back..." && \
kubectl rollout undo deployment/{{service_name}} -n {{namespace}} && exit 1)
arguments:
- name: service_name
description: Name of the service to deploy
default_value: api-server
- name: environment
description: Target environment
default_value: production
- name: registry
description: Container registry URL
default_value: ghcr.io/myorg
- name: version
description: Image version tag
default_value: latest
- name: namespace
description: Kubernetes namespace
default_value: production
- name: domain
description: Base domain for health check
default_value: api.example.com
# ~/.warp/workflows/git-cleanup.yaml — Clean up old git branches
name: Git Branch Cleanup
description: Delete merged branches locally and remotely
tags: [git, cleanup]
command: |-
echo "🧹 Cleaning merged branches..." &&
git fetch --prune &&
echo "Local merged branches:" &&
git branch --merged {{base_branch}} | grep -v "{{base_branch}}" | grep -v "^\*" &&
echo "" &&
read -p "Delete these local branches? (y/n) " confirm &&
if [ "$confirm" = "y" ]; then
git branch --merged {{base_branch}} | grep -v "{{base_branch}}" | grep -v "^\*" | xargs -r git branch -d &&
echo "✅ Local branches cleaned"
fi &&
if [ "{{clean_remote}}" = "true" ]; then
echo "Remote merged branches:" &&
git branch -r --merged {{base_branch}} | grep -v "{{base_branch}}" | grep "origin/" | sed 's/origin\///' &&
read -p "Delete these remote branches? (y/n) " confirm2 &&
if [ "$confirm2" = "y" ]; then
git branch -r --merged {{base_branch}} | grep -v "{{base_branch}}" | grep "origin/" | sed 's/origin\///' | xargs -r -I{} git push origin --delete {} &&
echo "✅ Remote branches cleaned"
fi
fi
arguments:
- name: base_branch
description: Base branch to compare against
default_value: main
- name: clean_remote
description: Also clean remote branches (true/false)
default_value: "false"
# ~/.warp/workflows/db-ops.yaml — Database operations workflow
name: Database Operations
description: Common database tasks with safety checks
tags: [database, postgres, backup]
command: |-
{{#if (eq operation "backup")}}
echo "📦 Backing up {{db_name}} on {{host}}..." &&
pg_dump -h {{host}} -U {{user}} -d {{db_name}} \
--format=custom --compress=9 \
-f "backup_{{db_name}}_$(date +%Y%m%d_%H%M%S).dump" &&
echo "✅ Backup complete: backup_{{db_name}}_$(date +%Y%m%d_%H%M%S).dump"
{{else if (eq operation "restore")}}
echo "⚠️ Restoring {{db_name}} from {{backup_file}}..." &&
echo "This will OVERWRITE the current database!" &&
read -p "Continue? (yes/no) " confirm &&
if [ "$confirm" = "yes" ]; then
pg_restore -h {{host}} -U {{user}} -d {{db_name}} \
--clean --if-exists {{backup_file}} &&
echo "✅ Restore complete"
fi
{{else if (eq operation "stats")}}
psql -h {{host}} -U {{user}} -d {{db_name}} -c "
SELECT schemaname, relname, n_tup_ins, n_tup_upd, n_tup_del,
pg_size_pretty(pg_total_relation_size(relid)) as total_size
FROM pg_stat_user_tables ORDER BY pg_total_relation_size(relid) DESC LIMIT 20;"
{{/if}}
arguments:
- name: operation
description: "Operation: backup, restore, or stats"
default_value: backup
- name: db_name
description: Database name
- name: host
description: Database host
default_value: localhost
- name: user
description: Database user
default_value: postgres
- name: backup_file
description: Backup file path (for restore)
default_value: ""
Warp Drive — Team Knowledge Base
Share workflows and snippets with your team:
# Team-shared workflow: New Developer Onboarding
# Stored in Warp Drive, accessible to all team members
name: New Dev Environment Setup
description: Set up local development environment from scratch
tags: [onboarding, setup]
command: |-
echo "🔧 Setting up development environment..." &&
# Clone all required repositories
echo "📥 Cloning repositories..." &&
mkdir -p ~/projects &&
cd ~/projects &&
git clone git@github.com:{{org}}/api.git &&
git clone git@github.com:{{org}}/frontend.git &&
git clone git@github.com:{{org}}/infrastructure.git &&
# Install dependencies
echo "📦 Installing dependencies..." &&
cd api && npm install && cd .. &&
cd frontend && npm install && cd .. &&
# Set up local services
echo "🐳 Starting Docker services..." &&
cd infrastructure &&
docker compose -f docker-compose.local.yml up -d &&
# Run database migrations
echo "🗄️ Running migrations..." &&
cd ../api &&
npm run db:migrate &&
npm run db:seed &&
# Verify everything works
echo "🧪 Running smoke tests..." &&
npm run test:smoke &&
echo "✅ Environment ready! Start the API: cd api && npm run dev"
arguments:
- name: org
description: GitHub organization
default_value: mycompany
Custom Themes
# ~/.warp/themes/custom-theme.yaml — Custom terminal theme
name: Midnight Dev
accent: "#7c3aed"
background: "#0f172a"
foreground: "#e2e8f0"
details: darker
terminal_colors:
normal:
black: "#1e293b"
red: "#ef4444"
green: "#22c55e"
yellow: "#eab308"
blue: "#3b82f6"
magenta: "#a855f7"
cyan: "#06b6d4"
white: "#f1f5f9"
bright:
black: "#475569"
red: "#f87171"
green: "#4ade80"
yellow: "#facc15"
blue: "#60a5fa"
magenta: "#c084fc"
cyan: "#22d3ee"
white: "#f8fafc"
Launch Configurations
Configure how Warp starts and behaves:
# ~/.warp/launch_configurations.yaml — Startup configurations
configurations:
- name: Full Stack Dev
tabs:
- title: API Server
directory: ~/projects/api
command: npm run dev
- title: Frontend
directory: ~/projects/frontend
command: npm run dev
- title: Logs
directory: ~/projects
command: docker compose logs -f
- title: Shell
directory: ~/projects
- name: DevOps
tabs:
- title: Cluster
command: kubectl get pods -w --all-namespaces
- title: Monitoring
command: watch -n 5 'kubectl top pods'
- title: Logs
command: stern -n production "api-*" --tail 100
- title: Shell
directory: ~/infrastructure
Warp Features for Developers
Block-Based Editing
Warp treats each command and its output as a "block." This means you can:
- Select and copy just the output of a command (not the prompt)
- Share a block with teammates (includes command + output)
- Navigate between blocks with Ctrl+Shift+↑/↓
- Search command output with Cmd+F within a block
AI Command Search
Type # in Warp to search for commands using natural language:
# find all files larger than 100MB→find / -type f -size +100M# compress this directory as tar.gz→tar -czf archive.tar.gz directory/# show disk usage sorted by size→du -sh * | sort -rh
Notebooks
Interactive documents that combine Markdown explanations with runnable commands:
# Database Maintenance Runbook
## 1. Check current connections
```bash
psql -c "SELECT count(*) FROM pg_stat_activity;"
```
## 2. Run VACUUM on large tables
```bash
psql -c "VACUUM (VERBOSE, ANALYZE) large_table;"
```
Examples
Example 1: Setting up Warp with a custom configuration
User request:
I just installed Warp. Help me configure it for my TypeScript + React workflow with my preferred keybindings.
The agent creates the configuration file with TypeScript-aware settings, configures relevant plugins/extensions for React development, sets up keyboard shortcuts matching the user's preferences, and verifies the setup works correctly.
Example 2: Extending Warp with custom functionality
User request:
I want to add a custom warp drive — team knowledge base to Warp. How do I build one?
The agent scaffolds the extension/plugin project, implements the core functionality following Warp's API patterns, adds configuration options, and provides testing instructions to verify it works end-to-end.
Guidelines
- Parameterize everything — Use
{{variables}}in workflows; never hardcode values that change between environments - Add descriptions — Every workflow and argument needs a description; team members shouldn't guess what things do
- Use Warp Drive for team knowledge — Shared workflows reduce tribal knowledge and onboarding time
- Launch configs for projects — Define multi-tab setups per project so starting work is one click
- Tag workflows consistently — Use tags like
deploy,database,git,debugfor quick filtering - Safety prompts for destructive ops — Add
read -p "Continue? (y/n)"before any data-modifying operation - Version your workflows — Store workflows in your team's git repo; symlink to
~/.warp/workflows/ - Notebooks for runbooks — Incident response and maintenance procedures work better as Warp Notebooks than wiki pages