logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
How to install affaan-m/ECC. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

affaan-m/ECC Installation Guide

How to install affaan-m/ECC. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for affaan-m/ECC. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i affaan-m/ECC
or

Install via npx

npx @hexmos/ipm i affaan-m/ECC

Prerequisites

Claude Code CLI

cli

Version: >=v2.1.0

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Install as Plugin (Recommended)

/plugin marketplace add https://github.com/affaan-m/ECC

/plugin install ecc@ecc

mkdir -p ~/.claude/rules/ecc && cp -r rules/common ~/.claude/rules/ecc/ && cp -r rules/typescript ~/.claude/rules/ecc/

Manual Installation (macOS/Linux)

git clone https://github.com/affaan-m/ECC.git

cd ECC

cp agents/*.md ~/.claude/agents/

mkdir -p ~/.claude/rules/ecc && cp -r rules/common ~/.claude/rules/ecc/ && cp -r rules/typescript ~/.claude/rules/ecc/

mkdir -p ~/.claude/skills/ecc && cp -r .agents/skills/* ~/.claude/skills/ecc/

mkdir -p ~/.claude/commands && cp commands/*.md ~/.claude/commands/

bash ./install.sh --target claude --modules hooks-runtime

Manual Installation (Windows PowerShell)

git clone https://github.com/affaan-m/ECC.git

cd ECC

Copy-Item -Recurse .agents/skills $HOME/.claude/skills/ecc

New-Item -ItemType Directory -Force -Path "$HOME/.claude/rules/ecc" | Out-Null; Copy-Item -Recurse rules/common "$HOME/.claude/rules/ecc/"; Copy-Item -Recurse rules/typescript "$HOME/.claude/rules/ecc/"

Copy-Item commands/*.md $HOME/.claude/commands/

pwsh -File .\install.ps1 --target claude --modules hooks-runtime