docs: mark open and generate parity complete

This commit is contained in:
Micheal Wilkinson
2026-03-20 17:53:51 +00:00
parent 59caa62ac6
commit 79d4577083
2 changed files with 5 additions and 5 deletions

View File

@@ -40,6 +40,8 @@ Implemented commands:
- `commit -m MESSAGE [CASTLE]` - `commit -m MESSAGE [CASTLE]`
- `destroy [CASTLE]` - `destroy [CASTLE]`
- `cd [CASTLE]` - `cd [CASTLE]`
- `open [CASTLE]`
- `generate PATH`
- `rc [CASTLE]` - `rc [CASTLE]`
- `version` - `version`
@@ -53,10 +55,8 @@ Implemented commands:
Not yet implemented: Not yet implemented:
- `open`
- `exec` - `exec`
- `exec_all` - `exec_all`
- `generate`
## Outstanding Feature Checklist ## Outstanding Feature Checklist
@@ -67,10 +67,10 @@ Command parity:
- [x] `commit` - [x] `commit`
- [x] `destroy` - [x] `destroy`
- [x] `cd` - [x] `cd`
- [ ] `open` - [x] `open`
- [ ] `exec` - [ ] `exec`
- [ ] `exec_all` - [ ] `exec_all`
- [ ] `generate` - [x] `generate`
Historical flag/behavior parity: Historical flag/behavior parity:

View File

@@ -15,7 +15,7 @@ A `### Breaking` section is used in addition to Keep a Changelog's standard sect
- `rc` command: executes all executable scripts inside a castle's `.homesick.d/` directory in sorted order, with the castle root as the working directory. stdout/stderr from each script is forwarded to the caller. - `rc` command: executes all executable scripts inside a castle's `.homesick.d/` directory in sorted order, with the castle root as the working directory. stdout/stderr from each script is forwarded to the caller.
- `rc` command: when a `.homesickrc` file exists and no `parity.rb` wrapper is present in `.homesick.d/`, a Ruby wrapper script (`parity.rb`) is generated automatically to preserve backwards compatibility. An existing `parity.rb` is never overwritten. - `rc` command: when a `.homesickrc` file exists and no `parity.rb` wrapper is present in `.homesick.d/`, a Ruby wrapper script (`parity.rb`) is generated automatically to preserve backwards compatibility. An existing `parity.rb` is never overwritten.
- Native Go implementations for `clone`, `link`, `unlink`, `track`, `pull`, `push`, `commit`, `destroy`, and `cd`. - Native Go implementations for `clone`, `link`, `unlink`, `track`, `pull`, `push`, `commit`, `destroy`, `cd`, `open`, and `generate`.
- Containerized behavior test suite for command parity validation. - Containerized behavior test suite for command parity validation.
- Dedicated test suites for `list`, `show_path`, `status`, `diff`, and `version`. - Dedicated test suites for `list`, `show_path`, `status`, `diff`, and `version`.
- Just workflow support for building and running the Linux behavior binary. - Just workflow support for building and running the Linux behavior binary.