Skip to content

iamdecatalyst/ccmd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

59 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

🧠 CCMD β€” Custom Command Manager

PyPI version Latest Release License Python Security Downloads

Cross-platform command enhancer for humans. Replace long, repetitive terminal syntax with short, intuitive commands. Works on Linux, Windows PowerShell, and WSL β€” safe, rollback-ready, and open source.

πŸ”§ New in v1.1.6: Bug Fix Release! Fixed critical argument passing bug and command chaining password bypass. Commands like sudo apt update now work correctly.

πŸ”’ v1.1.5: Advanced Security Release! Internal flag protection, atomic shell writes, path diagnostics, threat model documentation, and automated dependency scanning. See Security Report

πŸ›‘οΈ v1.1.4: Security Hardening Release! 0 HIGH vulnerabilities, comprehensive security audit, automated scanning, and professional security documentation.

⚠️ Important: CCMD is a powerful tool that sits between your shell and you. Like electricity or any powerful tool, it can be dangerous if used wrongly. Please read the Security Policy and Threat Model before using CCMD. Use carefully, cautiously, and responsibly.

πŸ“Œ Version Notice: We strongly recommend using v1.1.5 or later. This version includes critical security enhancements and passes all automated security scans with comprehensive threat model documentation. Upgrade now β€” it's safe, fast, and backward compatible!


🧩 Overview

CCMD is an open-source project developed by De Catalyst (Wisyle).
It lets you define simple, natural shortcuts for everyday shell operations β€” no more typing endless flags or remembering weird syntax.

Instead of typing:

cd ~/Downloads
git add .
git commit -m "update"
git push

You can just write:

go downloads
push

CCMD handles the rest. It safely installs into your shell profile, manages custom commands through YAML, and supports plugins, system monitoring, and SSH management.


✨ Features

πŸ”’ v1.1.5 Advanced Security (LATEST!)

  • πŸ” Internal Flag Protection β€” --exec hidden from help, environment-gated for internal use only
  • βš›οΈ Atomic Shell Config Writes β€” Prevents corruption with temp file + atomic rename pattern
  • 🩺 Path Diagnostics Command β€” --check-paths validates installation, environment, and backups
  • πŸ›‘οΈ Threat Model Documentation β€” Complete attack scenarios, mitigations, and security boundaries (THREAT_MODEL.md)
  • πŸš‘ Recovery Guide β€” Emergency procedures for all failure scenarios (RECOVERY.md)
  • πŸ“¦ Dependabot Integration β€” Weekly automated dependency vulnerability scanning
  • πŸ” Enhanced CI Scanning β€” Safety dependency scanner added to security workflow
  • πŸ“Š Security Metrics β€” 0 HIGH severity issues maintained, all 7 audit items addressed

Security Achievement: Comprehensive threat model, automated scanning, and emergency recovery procedures!

πŸ›‘οΈ v1.1.4 Security Hardening

  • πŸ›‘οΈ Tarfile Path Traversal Fixed β€” Prevents malicious archives from writing outside target directory (CVE-2007-4559)
  • πŸ” URL Scheme Validation β€” Restricts all URL operations to HTTPS only, prevents downgrade attacks
  • πŸ“¦ Dependency Security β€” GitPython pinned to v3.1.43, eliminates 6 known vulnerabilities
  • πŸ€– Automated Security Scanning β€” Bandit and Safety integrated with GitHub Actions
  • πŸ“‹ Security Policy β€” Professional vulnerability reporting process (48-hour response time)
  • πŸ“Š Security Metrics β€” 0 HIGH severity issues, all dependencies secured
  • πŸ“ Security Changelog β€” Complete audit trail of all security improvements
  • βš™οΈ CodeQL Analysis β€” Semantic code analysis detects vulnerabilities automatically

πŸ› v1.1.3 Bug Fixes

  • πŸ”§ Fixed Directory Persistence β€” Chained commands now correctly persist directory changes
  • ⏱️ Fixed Interactive Timeouts β€” Interactive commands like claude no longer timeout
  • πŸ“¦ Fixed Pip Install Warnings β€” Automatic handling of externally-managed Python environments
  • βž• Enhanced Navigation β€” Support for custom project directory paths in go command
  • 🎯 180s Timeout for Non-Interactive β€” Non-interactive commands timeout after 3 minutes (prevents hangs)

πŸ”— v1.1.2 Features

  • πŸ”— Command Chaining β€” Chain commands with >>> operator: go downloads >>> ls >>> echo "done"
  • πŸ”„ Command Composability β€” CCMD commands can call other CCMD commands
  • 🎯 Smart Directory Chaining β€” Directory changes persist through command chains
  • πŸ›‘οΈ Enhanced Security β€” Context-aware validation, expanded pattern detection (40+ patterns)
  • πŸ’€ Process Management β€” kap kills all processes (with confirmation), kp kills by name
  • πŸ” bcrypt Fallback β€” PBKDF2-HMAC-SHA256 fallback if bcrypt unavailable
  • πŸ”’ Type Enforcement β€” Custom commands cannot abuse privileged types

Example: ccmd add β†’ name: devwork β†’ command: go projects >>> ls >>> echo "Ready to code!"

πŸ” v1.1.1 Security Features

  • πŸ”’ Master Password System β€” Protect sensitive commands with bcrypt-hashed passwords
  • πŸ›‘οΈ Command Injection Prevention β€” Automatic blocking of dangerous command patterns
  • πŸ” SSH Key Validation β€” Verify key permissions (0600) before use
  • πŸ” Sensitive Command Detection β€” Auto-detect and protect sudo, ssh, AWS commands
  • πŸ“ Atomic File Operations β€” Safe, corruption-proof file writes
  • 🎯 Intelligent Auto-Locator β€” No more path issues, works anywhere
  • πŸ“Š Audit Logging β€” Track all authentication attempts
  • ⚑ Security Cache β€” 5-minute authentication window for convenience

New Commands: init, debug, sudo, change-password, reset-password, kap, kp

πŸ†• v1.1.0 Features

  • ✨ Custom Commands β€” Create your own commands with add, manage with remove
  • πŸ”„ Instant Reload β€” reload command updates config without manual reinstall
  • 🎯 Interactive Push β€” Full git workflow with file selection and auto-commit messages
  • πŸ“‹ Command Manager β€” Enable/disable commands with list
  • πŸ›‘οΈ Graceful Cancellation β€” Press Ctrl+C anytime without ugly errors
  • 🌍 Better Windows Support β€” Fully tested on PowerShell with proper encoding

Core Features

  • Cross-Platform Support β€” Linux, WSL, Windows PowerShell (macOS code exists but untested*)
  • Natural Commands β€” No prefixes; just type go, push, cpu, etc.
  • Smart Directory Navigation β€” Search and jump to directories anywhere
  • Auto Git Integration β€” Interactive add, commit, and push workflow
  • System Insights β€” Monitor CPU, memory, and processes
  • Safe Rollback β€” Backs up your shell configuration before any changes
  • Persistent Customization β€” Your custom commands survive CCMD updates
  • Password Protection β€” Mark custom commands as requiring authentication

*macOS users: We need your feedback! Please test and report issues.


πŸ“š Documentation

For detailed guides and technical documentation, see:


🧱 Project Structure

ccmd/
 β”œβ”€β”€ cli/
 β”‚   β”œβ”€β”€ main.py           # CLI entrypoint
 β”‚   β”œβ”€β”€ install.py        # Installation and PATH setup
 β”‚   β”œβ”€β”€ editor.py         # Interactive command editor
 β”‚   └── ssh_manager.py    # Manage SSH aliases and keys
 β”œβ”€β”€ core/
 β”‚   β”œβ”€β”€ parser.py         # Parse and map custom commands
 β”‚   β”œβ”€β”€ executor.py       # Execute commands securely
 β”‚   β”œβ”€β”€ registry.py       # Manage alias storage
 β”‚   β”œβ”€β”€ rollback.py       # Backup & restore shell configs
 β”‚   └── system_check.py   # Detect OS and compatibility
 β”œβ”€β”€ commands.yaml         # Default command definitions
 β”œβ”€β”€ run.py                # Master entrypoint
 β”œβ”€β”€ setup.sh              # Unix installer
 β”œβ”€β”€ setup.ps1             # Windows installer
 β”œβ”€β”€ LICENSE
 └── README.md

πŸš€ Installation

Prerequisites

  • Python 3.7+
  • pip (usually included with Python)

Method 1: Install from PyPI (Recommended) ⭐

The easiest way to install CCMD:

pip install ccmd

That's it! CCMD is now available as the ccmd command globally.

Test installation:

ccmd --version
ccmd --list

Note: PyPI installation provides the CCMD package but you may still need to run shell integration for full functionality:

ccmd --install  # Sets up shell integration (one-time setup)

Method 2: Install from GitHub (For Development)

For users who want the latest development version or want to contribute:

# Clone the repository (ccmd branch)
git clone -b ccmd https://github.com/Wisyle/ccmd.git
cd ccmd

# Run the installer for your platform
# Linux/macOS/WSL:
bash setup.sh

# Windows PowerShell:
.\setup.ps1

# Reload your shell
source ~/.bashrc  # or ~/.zshrc for Zsh, or restart terminal

Method 3: Download Release ZIP (Offline Install)

If you don't have pip or git access:

  1. Download the latest release:

  2. Extract and install:

    # Linux/macOS/WSL:
    cd /path/to/ccmd
    bash setup.sh
    source ~/.bashrc
    
    # Windows PowerShell:
    cd C:\path\to\ccmd
    .\setup.ps1
    . $PROFILE

Verify Installation

After installation, test that CCMD is working:

# Check system status
ccmd --check

# List available commands
ccmd --list

# Test a command
go home

Update CCMD

If installed via PyPI (recommended):

pip install --upgrade ccmd

If installed via Git:

cd /path/to/ccmd
git pull origin ccmd
python3 run.py --install

If installed via ZIP:

  • Download the latest version from PyPI: pip install --upgrade ccmd
  • Or download latest ZIP and reinstall

Uninstall

If installed via PyPI:

pip uninstall ccmd
ccmd --restore  # Optional: restore shell config

If installed via Git/ZIP:

python3 run.py --restore  # Removes shell integration

🧠 Default Commands

Navigation

Command Description Example
go <dir> Navigate to directory or search go downloads

Git Operations

Command Description Notes
push Interactive git add, commit, and push Auto-generates commit messages πŸ†•

System Monitoring

Command Description Platform Support
cpu Show CPU usage Linux, macOS, Windows
mem Show memory usage Linux, macOS, Windows
proc List running processes Linux, macOS, Windows
kap Kill process by PID Linux, macOS, Windows

Custom Commands πŸ†• v1.1.0

Command Description Notes
add Create a custom command Interactive prompts
remove Delete a custom command Shows list to select from
list Manage commands (enable/disable) Toggle commands on/off

CCMD Management

Command Description Notes
reload Reload config and update shell πŸ†• No manual reinstall needed
update Update CCMD from GitHub Downloads latest version
version Show current and latest version Checks GitHub releases
restore Restore shell config from backup Rollback changes
uninstall Remove CCMD completely Cleans everything
hi Show system dashboard System overview

βš™οΈ Configuration

Default Commands

CCMD default commands are defined in $CCMD_HOME/commands.yaml. These are managed by CCMD and updated when you upgrade.

Custom Commands (v1.1.0+)

Your custom commands are stored separately in:

~/.ccmd/custom_commands.yaml

Why separate? Your custom commands survive CCMD updates and never get overwritten.

Create custom commands:

add                    # Interactive command creation

Remove custom commands:

remove                 # Interactive command removal

Reload after manual edits:

reload                 # Reloads config and updates shell

Each command follows this format:

mycommand:
  description: "What this command does"
  action: "the shell command to execute"
  type: custom
  interactive: false   # Set to true for commands needing user input

πŸ” Security & Safety

Security Score: 7.8/10 (GOOD) βœ…

CCMD has been professionally audited using both Bandit static analysis and Claude AI security scanning. See SECURITY_AUDIT_CLAUDE.md for the complete AI security audit report.

Scan Results:

  • βœ… 0 HIGH severity issues (Bandit)
  • βœ… 0 critical vulnerabilities (Claude AI)
  • βœ… All dependencies secured (Safety + Dependabot)
  • βœ… Comprehensive threat model documented

Security Comparison vs Similar Tools

CCMD beats oh-my-zsh and bash-it in ALL security categories:

Security Feature CCMD oh-my-zsh bash-it Verdict
Command Injection Protection βœ… Strong (40+ patterns) ⚠️ Basic ⚠️ Basic CCMD Best
Password Protection βœ… Yes (bcrypt) ❌ No ❌ No CCMD Best
Atomic Shell Writes βœ… Yes (v1.1.5) ❌ No ❌ No CCMD Best
Backup/Restore βœ… Built-in ⚠️ Manual ⚠️ Manual CCMD Best
Security Documentation βœ… Comprehensive ⚠️ Limited ⚠️ Limited CCMD Best
Dependency Scanning βœ… Automated (CI/CD) ❌ No ❌ No CCMD Best
Cross-Platform Support βœ… Win/Linux/Mac ❌ Unix only ❌ Unix only CCMD Best
Threat Model βœ… Documented ❌ No ❌ No CCMD Best

Security Features

  • βœ… Backups created automatically before modifying any shell files
  • βœ… Rollback available anytime with --restore
  • βœ… SSH keys are never stored or transmitted
  • βœ… Safe execution via subprocess calls, never eval
  • βœ… Command validation with 40+ dangerous pattern detection
  • βœ… Master password protection for sensitive commands
  • βœ… Atomic writes prevent shell config corruption
  • βœ… Automated scanning with Bandit, Safety, and CodeQL

πŸ§ͺ Testing Locally

Before global install, run:

python run.py --test

This simulates:

  • Shell detection and rc edits
  • Git and system command execution
  • Rollback and uninstall checks

🧰 Example Usage

# Navigate fast
go downloads

# Push Git changes instantly
push

# Check system load
cpu

# Connect to your default server
ssh

🌍 Contributing

Contributions are welcome! Fork the repo, create a branch, make your edits, and open a pull request. A contribution guide will soon be added in /docs/CONTRIBUTING.md.


πŸ“œ License

Released under the MIT License. Free to use, modify, and distribute.


πŸ§‘β€πŸ’» Developed By

De Catalyst GitHub: @Wisyle Email: Robert5560newton@gmail.com X (Twitter): @iamdecatalyst Instagram: @iamdecatalyst Telegram: @iamdecatalyst

For bug reports, updates, or collaboration inquiries, feel free to reach out.


πŸͺ„ Tagline

β€œStop remembering commands. Start commanding naturally.”


Always check new releases before downloading

About

CCMD (Custom Command Manager) is a cross-platform command interpreter that lets you define natural shortcuts for everyday shell actions. Works on Linux, macOS, and Windows (PowerShell/WSL). Includes built-in helpers for navigation, git automation, system stats, SSH, and more. Safe by design

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages