hoanglv-xiaohuang
v1.2.7
Published
Interactive Hybrid AI Development CLI tool using Claude and Qwen
Readme
Xiaohuang AI Dev Console
An interactive, autonomous AI development CLI tool that orchestrates Claude Opus 4.6 Thinking and Qwen3-Coder-Plus for a seamless Plan -> Code -> Test -> Review -> Fix pipeline.
Features
- Interactive REPL console
- Intelligent Model Routing (Claude for planning/review, Qwen for coding/testing)
- Persistent configuration wizard
- Built-in sandboxing and safe file writing
- Memory tracking for conversation context
Setup
- Clone or download this project
cd xiaohuang-cli- Run
npm install - Run
npm linkto make thexiaohuangcommand available globally.
First Time Wizard
Simply run xiaohuang to launch the interactive setup wizard. It will securely prompt for your API keys and store them persistently in ~/.xiaohuang/config.json.
xiaohuangConfiguration Commands
xiaohuang config- Rerun the configuration wizardxiaohuang config --show- Display your current (masked) configurationxiaohuang config --reset- Delete your configuration and start overxiaohuang avatar set <path>- Set a custom image as your CLI avatarxiaohuang uninstall- Delete all local data (~/.xiaohuang)
Usage
Navigate to any project directory and start the console:
cd my-project
xiaohuangOnce inside the interactive console (> ), you can type tasks like:
> build friend system with private chat
> fix websocket duplicate message bug
> optimize prisma query performanceConsole Commands
/exit- Close the console/reset- Clear current conversation memory/plan <task>- Force planning phase only/code <task>- Force coding phase only/review- Force code review/fix- Force fix on tests
