From 20de3d3badae6c85593bbc63cb04ca9cb31a9701 Mon Sep 17 00:00:00 2001 From: Mithun Gowda B Date: Thu, 17 Jul 2025 11:39:18 +0530 Subject: [PATCH] Update README.md Signed-off-by: Mithun Gowda B --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index d580861..e3aac1b 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,40 @@ python3 SuperClaude install --profile developer # See all available options python3 SuperClaude install --help ``` +### Or Python Modular Usage +```bash +# Quick setup (recommended for most users) +python3 -m SuperClaude install + +# Interactive selection (choose components) +python3 -m SuperClaude install --interactive + +# Minimal install (just core framework) +python3 -m SuperClaude install --minimal + +# Developer setup (everything included) +python3 -m SuperClaude install --profile developer + +# See all available options +python3 -m SuperClaude install --help +``` +### Simple bash Command Usage +```bash +# Quick setup (recommended for most users) +SuperClaude install + +# Interactive selection (choose components) +SuperClaude install --interactive + +# Minimal install (just core framework) +SuperClaude install --minimal + +# Developer setup (everything included) +SuperClaude install --profile developer + +# See all available options +SuperClaude install --help +``` **That's it! 🎉** The installer handles everything: framework files, MCP servers, and Claude Code configuration.