jpskill.com
🛠️ 開発・MCP コミュニティ 🔴 エンジニア向け 👤 エンジニア・AI開発者

🛠️ OS Scripting

os-scripting

LinuxやmacOS、WindowsなどのOS上で、システムを

⏱ コードレビュー 1時間 → 10分

📺 まず動画で見る(YouTube)

▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Operating system and shell scripting troubleshooting workflow for Linux, macOS, and Windows. Covers bash scripting, system administration, debugging, and automation.

🇯🇵 日本人クリエイター向け解説

一言でいうと

LinuxやmacOS、WindowsなどのOS上で、システムを

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o os-scripting.zip https://jpskill.com/download/3263.zip && unzip -o os-scripting.zip && rm os-scripting.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/3263.zip -OutFile "$d\os-scripting.zip"; Expand-Archive "$d\os-scripting.zip" -DestinationPath $d -Force; ri "$d\os-scripting.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して os-scripting.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → os-scripting フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • OS Scripting を使って、最小構成のサンプルコードを示して
  • OS Scripting の主な使い方と注意点を教えて
  • OS Scripting を既存プロジェクトに組み込む方法を教えて

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] os-scripting

OS/シェルスクリプトのトラブルシューティングワークフローバンドル

概要

Linux、macOS、Windows におけるオペレーティングシステムのトラブルシューティング、シェルスクリプト、システム管理のための包括的なワークフローです。このバンドルは、システムの問題をデバッグし、堅牢なスクリプトを作成し、管理タスクを自動化するためのスキルを編成します。

このワークフローを使用するタイミング

このワークフローは、次のような場合に使用します。

  • シェルスクリプトのエラーをデバッグする
  • 本番環境対応の bash スクリプトを作成する
  • システムの問題をトラブルシューティングする
  • システム管理タスクを自動化する
  • プロセスとサービスを管理する
  • システムリソースを設定する

ワークフローのフェーズ

フェーズ 1: 環境評価

呼び出すスキル

  • bash-linux - Linux bash パターン
  • bash-pro - プロフェッショナルな bash スクリプト
  • bash-defensive-patterns - 防御的なスクリプト

アクション

  1. オペレーティングシステムとバージョンを特定する
  2. 利用可能なツールとコマンドを確認する
  3. 権限とアクセスを検証する
  4. システムリソースを評価する
  5. ログとエラーメッセージを確認する

診断コマンド

# System information
uname -a
cat /etc/os-release
hostnamectl

# Resource usage
top
htop
df -h
free -m

# Process information
ps aux
pgrep -f pattern
lsof -i :port

# Network status
netstat -tulpn
ss -tulpn
ip addr show

コピー&ペーストプロンプト

Use @bash-linux to diagnose system performance issues

フェーズ 2: スクリプト分析

呼び出すスキル

  • bash-defensive-patterns - 防御的なスクリプト
  • shellcheck-configuration - ShellCheck リンティング
  • bats-testing-patterns - Bats テスト

アクション

  1. ShellCheck を実行してリンティングを行う
  2. スクリプト構造を分析する
  3. 潜在的な問題を特定する
  4. エラー処理を確認する
  5. 変数の使用法を検証する

ShellCheck の使用法

# Install ShellCheck
sudo apt install shellcheck  # Debian/Ubuntu
brew install shellcheck      # macOS

# Run ShellCheck
shellcheck script.sh
shellcheck -f gcc script.sh

# Fix common issues
# - Use quotes around variables
# - Check exit codes
# - Handle errors properly

コピー&ペーストプロンプト

Use @shellcheck-configuration to lint and fix shell scripts

フェーズ 3: デバッグ

呼び出すスキル

  • systematic-debugging - 体系的なデバッグ
  • debugger - デバッグスペシャリスト
  • error-detective - エラーパターン検出

アクション

  1. デバッグモードを有効にする
  2. ロギングステートメントを追加する
  3. 実行フローをトレースする
  4. 失敗しているセクションを分離する
  5. コンポーネントを個別にテストする

デバッグ手法

# Enable debug mode
set -x  # Print commands
set -e  # Exit on error
set -u  # Exit on undefined variable
set -o pipefail  # Pipeline failure detection

# Add logging
log() {
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >> /var/log/script.log
}

# Trap errors
trap 'echo "Error on line $LINENO"' ERR

# Test sections
bash -n script.sh  # Syntax check
bash -x script.sh  # Trace execution

コピー&ペーストプロンプト

Use @systematic-debugging to trace and fix shell script errors

フェーズ 4: スクリプト開発

呼び出すスキル

  • bash-pro - プロフェッショナルなスクリプト
  • bash-defensive-patterns - 防御的なパターン
  • linux-shell-scripting - シェルスクリプト

アクション

  1. スクリプト構造を設計する
  2. 関数を実装する
  3. エラー処理を追加する
  4. 入力検証を含める
  5. ヘルプドキュメントを追加する

スクリプトテンプレート

#!/usr/bin/env bash
set -euo pipefail

# Constants
readonly SCRIPT_NAME=$(basename "$0")
readonly SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)

# Logging
log() {
    local level="$1"
    shift
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" >&2
}

info() { log "INFO" "$@"; }
warn() { log "WARN" "$@"; }
error() { log "ERROR" "$@"; exit 1; }

# Usage
usage() {
    cat <<EOF
Usage: $SCRIPT_NAME [OPTIONS]

Options:
    -h, --help      Show this help message
    -v, --verbose   Enable verbose output
    -d, --debug     Enable debug mode

Examples:
    $SCRIPT_NAME --verbose
    $SCRIPT_NAME -d
EOF
}

# Main function
main() {
    local verbose=false
    local debug=false

    while [[ $# -gt 0 ]]; do
        case "$1" in
            -h|--help)
                usage
                exit 0
                ;;
            -v|--verbose)
                verbose=true
                shift
                ;;
            -d|--debug)
                debug=true
                set -x
                shift
                ;;
            *)
                error "Unknown option: $1"
                ;;
        esac
    done

    info "Script started"
    # Your code here
    info "Script completed"
}

main "$@"

コピー&ペーストプロンプト

Use @bash-pro to create a production-ready backup script
Use @linux-shell-scripting to automate system maintenance tasks

フェーズ 5: テスト

呼び出すスキル

  • bats-testing-patterns - Bats テストフレームワーク
  • test-automator - テスト自動化

アクション

  1. Bats テストを作成する
  2. エッジケースをテストする
  3. エラー条件をテストする
  4. 期待される出力を検証する
  5. テストスイートを実行する

Bats テストの例

#!/usr/bin/env bats

@test "script returns success" {
    run ./script.sh
    [ "$status" -eq 0 ]
}

@test "script handles missing arguments" {
    run ./script.sh
    [ "$status" -ne 0 ]
    [ "$output" == *"Usage:"* ]
}

@test "script creates expected output" {
    run ./script.sh --output test.txt
    [ -f "test.txt" ]
}

コピー&ペーストプロンプト

Use @bats-testing-patterns to write tests for shell scripts

フェーズ 6: システムトラブルシューティング

呼び出すスキル

  • devops-troubleshooter - DevOps トラブルシューティング
  • incident-responder - インシデント対応
  • server-management - サーバー管理

アクション

  1. 症状を特定する
  2. システムログを確認する
  3. リソース使用量を分析する
  4. 接続性をテストする
  5. 設定を検証する
  6. 修正を実装する

トラブルシューティングコマンド

# Check logs
journalctl -xe
tail -f /var/log/syslog
dmesg | tail

# Network troubleshooting
ping host
traceroute host
curl -v http://host
dig domain
nslookup domain

# Process troubleshooting
strace -p PID
lsof -p PID
iotop

# Disk troubleshooting
d
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

OS/Shell Scripting Troubleshooting Workflow Bundle

Overview

Comprehensive workflow for operating system troubleshooting, shell scripting, and system administration across Linux, macOS, and Windows. This bundle orchestrates skills for debugging system issues, creating robust scripts, and automating administrative tasks.

When to Use This Workflow

Use this workflow when:

  • Debugging shell script errors
  • Creating production-ready bash scripts
  • Troubleshooting system issues
  • Automating system administration tasks
  • Managing processes and services
  • Configuring system resources

Workflow Phases

Phase 1: Environment Assessment

Skills to Invoke

  • bash-linux - Linux bash patterns
  • bash-pro - Professional bash scripting
  • bash-defensive-patterns - Defensive scripting

Actions

  1. Identify operating system and version
  2. Check available tools and commands
  3. Verify permissions and access
  4. Assess system resources
  5. Review logs and error messages

Diagnostic Commands

# System information
uname -a
cat /etc/os-release
hostnamectl

# Resource usage
top
htop
df -h
free -m

# Process information
ps aux
pgrep -f pattern
lsof -i :port

# Network status
netstat -tulpn
ss -tulpn
ip addr show

Copy-Paste Prompts

Use @bash-linux to diagnose system performance issues

Phase 2: Script Analysis

Skills to Invoke

  • bash-defensive-patterns - Defensive scripting
  • shellcheck-configuration - ShellCheck linting
  • bats-testing-patterns - Bats testing

Actions

  1. Run ShellCheck for linting
  2. Analyze script structure
  3. Identify potential issues
  4. Check error handling
  5. Verify variable usage

ShellCheck Usage

# Install ShellCheck
sudo apt install shellcheck  # Debian/Ubuntu
brew install shellcheck      # macOS

# Run ShellCheck
shellcheck script.sh
shellcheck -f gcc script.sh

# Fix common issues
# - Use quotes around variables
# - Check exit codes
# - Handle errors properly

Copy-Paste Prompts

Use @shellcheck-configuration to lint and fix shell scripts

Phase 3: Debugging

Skills to Invoke

  • systematic-debugging - Systematic debugging
  • debugger - Debugging specialist
  • error-detective - Error pattern detection

Actions

  1. Enable debug mode
  2. Add logging statements
  3. Trace execution flow
  4. Isolate failing sections
  5. Test components individually

Debug Techniques

# Enable debug mode
set -x  # Print commands
set -e  # Exit on error
set -u  # Exit on undefined variable
set -o pipefail  # Pipeline failure detection

# Add logging
log() {
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >> /var/log/script.log
}

# Trap errors
trap 'echo "Error on line $LINENO"' ERR

# Test sections
bash -n script.sh  # Syntax check
bash -x script.sh  # Trace execution

Copy-Paste Prompts

Use @systematic-debugging to trace and fix shell script errors

Phase 4: Script Development

Skills to Invoke

  • bash-pro - Professional scripting
  • bash-defensive-patterns - Defensive patterns
  • linux-shell-scripting - Shell scripting

Actions

  1. Design script structure
  2. Implement functions
  3. Add error handling
  4. Include input validation
  5. Add help documentation

Script Template

#!/usr/bin/env bash
set -euo pipefail

# Constants
readonly SCRIPT_NAME=$(basename "$0")
readonly SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)

# Logging
log() {
    local level="$1"
    shift
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" >&2
}

info() { log "INFO" "$@"; }
warn() { log "WARN" "$@"; }
error() { log "ERROR" "$@"; exit 1; }

# Usage
usage() {
    cat <<EOF
Usage: $SCRIPT_NAME [OPTIONS]

Options:
    -h, --help      Show this help message
    -v, --verbose   Enable verbose output
    -d, --debug     Enable debug mode

Examples:
    $SCRIPT_NAME --verbose
    $SCRIPT_NAME -d
EOF
}

# Main function
main() {
    local verbose=false
    local debug=false

    while [[ $# -gt 0 ]]; do
        case "$1" in
            -h|--help)
                usage
                exit 0
                ;;
            -v|--verbose)
                verbose=true
                shift
                ;;
            -d|--debug)
                debug=true
                set -x
                shift
                ;;
            *)
                error "Unknown option: $1"
                ;;
        esac
    done

    info "Script started"
    # Your code here
    info "Script completed"
}

main "$@"

Copy-Paste Prompts

Use @bash-pro to create a production-ready backup script
Use @linux-shell-scripting to automate system maintenance tasks

Phase 5: Testing

Skills to Invoke

  • bats-testing-patterns - Bats testing framework
  • test-automator - Test automation

Actions

  1. Write Bats tests
  2. Test edge cases
  3. Test error conditions
  4. Verify expected outputs
  5. Run test suite

Bats Test Example

#!/usr/bin/env bats

@test "script returns success" {
    run ./script.sh
    [ "$status" -eq 0 ]
}

@test "script handles missing arguments" {
    run ./script.sh
    [ "$status" -ne 0 ]
    [ "$output" == *"Usage:"* ]
}

@test "script creates expected output" {
    run ./script.sh --output test.txt
    [ -f "test.txt" ]
}

Copy-Paste Prompts

Use @bats-testing-patterns to write tests for shell scripts

Phase 6: System Troubleshooting

Skills to Invoke

  • devops-troubleshooter - DevOps troubleshooting
  • incident-responder - Incident response
  • server-management - Server management

Actions

  1. Identify symptoms
  2. Check system logs
  3. Analyze resource usage
  4. Test connectivity
  5. Verify configurations
  6. Implement fixes

Troubleshooting Commands

# Check logs
journalctl -xe
tail -f /var/log/syslog
dmesg | tail

# Network troubleshooting
ping host
traceroute host
curl -v http://host
dig domain
nslookup domain

# Process troubleshooting
strace -p PID
lsof -p PID
iotop

# Disk troubleshooting
du -sh /*
find / -type f -size +100M
lsof | grep deleted

Copy-Paste Prompts

Use @devops-troubleshooter to diagnose server connectivity issues
Use @incident-responder to investigate system outage

Phase 7: Automation

Skills to Invoke

  • workflow-automation - Workflow automation
  • cicd-automation-workflow-automate - CI/CD automation
  • linux-shell-scripting - Shell scripting

Actions

  1. Identify automation opportunities
  2. Design automation workflows
  3. Implement scripts
  4. Schedule with cron/systemd
  5. Monitor automation health

Cron Examples

# Edit crontab
crontab -e

# Backup every day at 2 AM
0 2 * * * /path/to/backup.sh

# Clean logs weekly
0 3 * * 0 /path/to/cleanup.sh

# Monitor disk space hourly
0 * * * * /path/to/monitor.sh

Systemd Timer Example

# /etc/systemd/system/backup.timer
[Unit]
Description=Daily backup timer

[Timer]
OnCalendar=daily
Persistent=true

[Install]
WantedBy=timers.target

Copy-Paste Prompts

Use @workflow-automation to create automated system maintenance workflow

Common Troubleshooting Scenarios

High CPU Usage

top -bn1 | head -20
ps aux --sort=-%cpu | head -10
pidstat 1 5

Memory Issues

free -h
vmstat 1 10
cat /proc/meminfo

Disk Space

df -h
du -sh /* 2>/dev/null | sort -h
find / -type f -size +500M 2>/dev/null

Network Issues

ip addr show
ip route show
ss -tulpn
curl -v http://target

Service Failures

systemctl status service-name
journalctl -u service-name -f
systemctl restart service-name

Quality Gates

Before completing workflow, verify:

  • [ ] All scripts pass ShellCheck
  • [ ] Tests pass with Bats
  • [ ] Error handling implemented
  • [ ] Logging configured
  • [ ] Documentation complete
  • [ ] Automation scheduled

Related Workflow Bundles

  • development - Software development
  • cloud-devops - Cloud and DevOps
  • security-audit - Security testing
  • database - Database operations

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.