CLI tools guide for git, gh, npm, and other development tools. Use when executing git commands, managing branches, or when user mentions CLI, コマンドライン, バージョン管理, ブランチ, コミット.
View on GitHubthkt/claude-config
development-skills
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/thkt/claude-config/blob/main/skills/utilizing-cli-tools/SKILL.md -a claude-code --skill utilizing-cli-toolsInstallation paths:
.claude/skills/utilizing-cli-tools/# CLI Tools Guide ## References | Category | Reference | | ------------------ | ----------------------------------------------------------------- | | Version Control | [@./references/git-essentials.md](./references/git-essentials.md) | | GitHub | [@./references/gh-github-cli.md](./references/gh-github-cli.md) | | Package Management | [@./references/npm-scripts.md](./references/npm-scripts.md) | ## Quick Reference ### Git | Action | Command | | ------ | --------------------------- | | Status | `git status --short` | | Diff | `git diff --staged` | | Branch | `git branch --show-current` | | Log | `git log --oneline -10` | ### HEREDOC Commit ```bash git commit -m "$(cat <<'EOF' feat(auth): add OAuth authentication EOF )" ```