Skip to content

MiniCode v0.2.0

Choose a tag to compare

@wjh4sg wjh4sg released this 20 Jun 10:39
7ee3613

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 run minicode from any directory.
  • Select a target project with -w/--workspace.
  • Use --debug for safe diagnostics and --mock for deterministic demos.
  • Run minicode doctor to 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