@aaronshaf/ger 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,14 +1,12 @@
1
1
  # ger
2
2
 
3
- Gerrit CLI built with Bun. XML output by default for LLM/automation compatibility, human-readable output with `--pretty`.
3
+ Gerrit CLI built with Bun.
4
4
 
5
5
  ## Features
6
6
 
7
7
  - **LLM-Friendly**: XML output for AI/automation pipelines
8
- - **Interactive UI**: Terminal UI for change selection and navigation
9
- - **Secure**: Credentials stored in system keychain
8
+ - **Interactive UI**: Terminal UI for change selection and navigation
10
9
  - **Effect-based**: Robust error handling and functional architecture
11
- - **Batch Comments**: JSON array input with line/range targeting and side support
12
10
 
13
11
  ## Installation
14
12
 
@@ -31,8 +29,6 @@ This will prompt for your Gerrit credentials:
31
29
  - Username
32
30
  - HTTP password (from Gerrit settings)
33
31
 
34
- Credentials are securely stored in your system keychain.
35
-
36
32
  ## Common Commands
37
33
 
38
34
  ### Daily Workflow
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aaronshaf/ger",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {
@@ -200,7 +200,6 @@ const GitWorktreeServiceImplLive: GitWorktreeServiceImpl = {
200
200
  validatePreconditions: () =>
201
201
  Effect.gen(function* () {
202
202
  yield* validateGitRepo()
203
- yield* validateCleanRepo()
204
203
  yield* Console.log('✓ Git repository validation passed')
205
204
  }),
206
205