← ClaudeAtlas

script-developmentlisted

スクリプト開発ガイド。Shell、Python、Node.jsスクリプト、自動化、バッチ処理、環境変数管理など、効率的なスクリプト開発のベストプラクティス。
Gaku52/software-engineering-universe · ★ 5 · AI & Automation · score 60
Install: claude install-skill Gaku52/software-engineering-universe
# Script Development Skill ## 📋 目次 1. [概要](#概要) 2. [いつ使うか](#いつ使うか) 3. [Shell スクリプト](#shellスクリプト) 4. [Python スクリプト](#pythonスクリプト) 5. [Node.js スクリプト](#nodejsスクリプト) 6. [環境変数管理](#環境変数管理) 7. [実践例](#実践例) 8. [Agent連携](#agent連携) --- ## 概要 このSkillは、スクリプト開発をカバーします: - **Shell スクリプト** - Bash/Zsh - **Python スクリプト** - 自動化、データ処理 - **Node.js スクリプト** - TypeScript/JavaScript - **環境変数管理** - .env、dotenv - **エラーハンドリング** - 適切なエラー処理 - **ログ出力** - 実行ログ記録 ## 📚 公式ドキュメント・参考リソース **このガイドで学べること**: Shell/Python/Node.jsスクリプトの基本文法、自動化パターン、環境変数管理、エラーハンドリング **公式で確認すべきこと**: 最新の言語機能、セキュリティベストプラクティス、パッケージのアップデート ### 主要な公式ドキュメント - **[Bash Reference Manual](https://www.gnu.org/software/bash/manual/)** - Bash公式リファレンス - [Shell Builtin Commands](https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html) - [Shell Parameters](https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html) - **[Python Documentation](https://docs.python.org/3/)** - Python公式ドキュメント - [argparse](https://docs.python.org/3/library/argparse.html) - [pathlib](https://docs.python.org/3/library/pathlib.html) - **[Node.js Documentation](https://nodejs.org/docs/)** - Node.js公式ドキュメント - [fs module](https://nodejs.org/api/fs.html) - [process module](https://nodejs.org/api/process.html) - **[Commander.js](https://github.com/tj/commander.js)** - Node.js CLIフレームワーク ### 関連リソース - **[ShellCheck](https://www.shellcheck.net/)** - Shellスクリプトの静的解析ツール - **[Python Click](https://click.palletsprojects.com/)