Skip to content

Releases: lfnovo/harny

v0.3.1

04 May 15:46
09f835a

Choose a tag to compare

Fix: harny --version and harny --help no longer dispatch a run.

Before this release, any unrecognized argument fell through to the prompt — so harny --version would launch a full planner→developer cycle (creating a stray worktree and branch) instead of printing version info. Both flags now short-circuit before dispatch.

Added

  • --version/-V flag: prints harny <version> (e.g. harny 0.3.1) and exits with code 0. Short-circuits before any dispatch or subcommand handling.
  • --help/-h flag: prints the full usage block (synopsis, global flags table with --verbose, --quiet, --workflow, --assistant, --name, --isolation, --mode, and subcommand list ls show answer ui clean) and exits with code 0. Short-circuits before any dispatch.
  • Both flags are detected in a pre-pass before the FLAGS lookup map is built; first sighting sets the flag and breaks. Unknown flags continue to fall through to the prompt as before.

Notes

This release also bundles the harny plugin (Claude Code skills + orchestrator agent) at v0.2.0, available via:

/plugin marketplace add lfnovo/harny
/plugin install harny@harny

Full Changelog: v0.3.0...v0.3.1