Bigsy

Claude Code Command — Development skill for Claude Code

Development community

Natural language to CLI commands powered by Claude Code.

How to install Claude Code Command

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Bigsy/claude-code-command and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Code Command does

Natural language to CLI commands powered by Claude Code.

Alternatives in Development

  • Internet Court Skill — The trust layer for agent-to-agent commerce — natural-language mandates, ERC-7710 delegated permissions, x402 4.9k ★
  • Auto — Smart router - Single entry point with natural language intent detection 2.8k ★
  • Claude Prism — An offline-first scientific writing workspace powered by Claude 1.1k ★

README

CCC - Claude Code Command

[![npm version](https://badge.fury.io/js/claude-code-command.svg)](https://badge.fury.io/js/claude-code-command) [![npm downloads](https://img.shields.io/npm/dm/claude-code-command.svg)](https://www.npmjs.com/package/claude-code-command) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Natural language to CLI commands using Claude Code CLI. Transforms your plain English requests into OS-specific shell commands with an interactive workflow.

Features

  • 🗣️ Natural Language Input: Describe what you want in plain English
  • 🖥️ OS-Aware: Automatically generates macOS, Linux, or Windows specific commands
  • Interactive Menu: Execute, copy, refine, or exit
  • 🔄 Iterative Refinement: Refine your request to get the perfect command
  • 🛡️ Safe: Always shows the command before execution

Installation

npm install -g claude-code-command

Local Development Install

git clone https://github.com/Bigsy/claude-code-command.git
cd claude-code-command
npm install
npm run build
npm install -g .

Prerequisites

  • Node.js (with npm) - version 18 or higher
  • Claude Code CLI installed and authenticated
  • Active Claude Code subscription (uses your existing Claude Code account)

Usage

Basic Usage

ccc "see current processes running"
# Generated command: ps aux (on macOS/Linux) or tasklist (on Windows)

ccc "show memory usage"
# Generated command: vm_stat (on macOS) or free -h (on Linux)

ccc "find all javascript files"
# Generated command: find . -name "*.js"

ccc "create a backup of typescript files with today's date"
# Generated command: tar -czf typescript_backup_$(date +%Y%m%d).tar.gz $(find . -name "*.ts")

Model Selection

CCC uses Claude Haiku by default for balanced speed and cost. You can specify a different model:

# Use default Haiku (balanced)
ccc "list