MiniCode v0.2.0
MiniCode v0.2.0 turns the MVP into an installable local CLI while preserving the existing read-only safety boundary.
Highlights
- Install with
python -m pip install -e .and runminicodefrom any directory. - Select a target project with
-w/--workspace. - Use
--debugfor safe diagnostics and--mockfor deterministic demos. - Run
minicode doctorto inspect Python, app root, workspace, Skill data, memory path, and LLM mode. - Keep
python main.py ...as a compatible source entry. - CI now installs the package and smoke-tests the generated command on Python 3.10, 3.11, and 3.12.
Quick start
git clone https://github.com/wjh4sg/Mini-Code.git
cd Mini-Code
python -m pip install --upgrade pip
python -m pip install -e .
minicode --version
minicode --mock -w examples/sample_project "帮我分析这个项目"Validation
- 58 tests passed locally; 2 Windows symlink tests skipped because symlink creation is unavailable.
- GitHub Actions passed on Python 3.10, 3.11, and 3.12.
- Editable installation,
--version,doctor, and source compatibility were smoke-tested.
Full change: #4