gitwise-cli 0.34.2__py3-none-any.whl → 0.35.1__py3-none-any.whl

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.
gitwise/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  """gitwise -- CLI for optimizing git workflows and coding-agent integration."""
2
2
 
3
- __version__ = "0.34.2"
3
+ __version__ = "0.35.1"
4
4
 
5
5
 
6
6
  def get_version() -> str:
gitwise/__main__.py CHANGED
@@ -113,7 +113,8 @@ def main() -> int:
113
113
  reset_runtime_config()
114
114
 
115
115
  set_json_pretty(args.json_pretty)
116
- set_json_mode(args.json)
116
+ machine_output = args.json or getattr(args, "json_lines", False)
117
+ set_json_mode(machine_output)
117
118
 
118
119
  if args.lang:
119
120
  set_locale(args.lang)
@@ -147,8 +148,7 @@ def main() -> int:
147
148
  ret = 1
148
149
 
149
150
  elapsed = time.monotonic() - start
150
- as_json = getattr(args, "json", False)
151
- if not as_json and elapsed > 0.2 and args.command not in ("doctor",):
151
+ if not machine_output and elapsed > 0.2 and args.command not in ("doctor",):
152
152
  print_dim(t("completed_in", elapsed=f"{elapsed:.1f}"))
153
153
 
154
154
  return ret
gitwise/_cli_dispatch.py CHANGED
@@ -328,7 +328,7 @@ def _run_context(args: argparse.Namespace) -> int:
328
328
  """Dispatch to ``context`` subcommand."""
329
329
  from gitwise.context import run_context
330
330
 
331
- return run_context(as_json=args.json)
331
+ return run_context(max_entries=args.max_entries, as_json=args.json)
332
332
 
333
333
 
334
334
  def _run_health(args: argparse.Namespace) -> int:
@@ -233,7 +233,12 @@ def _action_property_schema(action: argparse.Action) -> dict[str, object]:
233
233
 
234
234
  # A "limit"/"max-count" argument is a positive-integer bound; surface that
235
235
  # in the input schema so consumers know 0/negative are invalid.
236
- if value_schema["type"] == "integer" and action.dest in {"limit", "max_count", "maxcount"}:
236
+ if value_schema["type"] == "integer" and action.dest in {
237
+ "limit",
238
+ "max_count",
239
+ "max_entries",
240
+ "maxcount",
241
+ }:
237
242
  value_schema["minimum"] = 1
238
243
 
239
244
  description = "" if action.help is argparse.SUPPRESS else (action.help or "")
gitwise/_cli_parser.py CHANGED
@@ -353,6 +353,12 @@ def build_parser() -> argparse.ArgumentParser:
353
353
  p.add_argument("--yes", "-y", action="store_true", help="skip confirmation for --hard")
354
354
 
355
355
  p = sub.add_parser("context", help="enriched repo snapshot for LLMs", parents=[parent])
356
+ p.add_argument(
357
+ "--max-entries",
358
+ type=int,
359
+ default=100,
360
+ help="maximum directory tree entries (default: 100)",
361
+ )
356
362
 
357
363
  p = sub.add_parser("health", help="repo health score (0-100)", parents=[parent])
358
364
 
gitwise/_i18n_data.json CHANGED
@@ -395,6 +395,10 @@
395
395
  "es": "## Tipos de archivo",
396
396
  "en": "## File Types"
397
397
  },
398
+ "ctx_invalid_max_entries": {
399
+ "es": "--max-entries debe ser mayor que cero",
400
+ "en": "--max-entries must be greater than zero"
401
+ },
398
402
  "ctx_more_entries": {
399
403
  "es": " ... ({count} entradas más)",
400
404
  "en": " ... ({count} more entries)"
gitwise/context.py CHANGED
@@ -12,10 +12,13 @@ from gitwise.output import (
12
12
  print_dim,
13
13
  print_header,
14
14
  print_json,
15
+ report_error,
15
16
  status,
16
17
  )
17
18
  from gitwise.utils.json_envelope import ok_envelope
18
19
 
20
+ DEFAULT_MAX_ENTRIES = 100
21
+
19
22
 
20
23
  def _directory_tree(root: Path, max_depth: int = 3) -> list[str]:
21
24
  """Return Unicode box-drawing lines for the directory tree, skipping common noise dirs."""
@@ -118,14 +121,24 @@ def _branch_topology(root: Path) -> dict[str, list[str]]:
118
121
  return {"local": local, "remote": remote}
119
122
 
120
123
 
121
- def run_context(*, as_json: bool = False) -> int:
124
+ def run_context(*, max_entries: int = DEFAULT_MAX_ENTRIES, as_json: bool = False) -> int:
122
125
  """Entry point for the ``gitwise context`` command."""
123
126
  root = require_root(as_json=as_json, command="context")
124
127
  if root is None:
125
128
  return 1
129
+ if max_entries <= 0:
130
+ return report_error(
131
+ "context",
132
+ as_json=as_json,
133
+ msg=t("ctx_invalid_max_entries"),
134
+ code="invalid_max_entries",
135
+ )
126
136
 
127
137
  with status(t("status_context_scan")):
128
- tree = _directory_tree(root)
138
+ full_tree = _directory_tree(root)
139
+ tree = full_tree[:max_entries]
140
+ tree_total = len(full_tree)
141
+ tree_truncated = tree_total > len(tree)
129
142
  contributors = _top_contributors(root)
130
143
  file_types = _file_type_breakdown(root)
131
144
  todo_fixme = _todo_fixme_counts(root)
@@ -140,6 +153,8 @@ def run_context(*, as_json: bool = False) -> int:
140
153
  "context",
141
154
  data={
142
155
  "tree": tree,
156
+ "tree_total": tree_total,
157
+ "tree_truncated": tree_truncated,
143
158
  "contributors": contributors,
144
159
  "file_types": file_types,
145
160
  "todo_fixme": todo_fixme,
@@ -150,10 +165,10 @@ def run_context(*, as_json: bool = False) -> int:
150
165
  )
151
166
  else:
152
167
  print_header(t("ctx_directory_tree"))
153
- for ln in tree[:50]:
168
+ for ln in tree:
154
169
  info(f" {ln}")
155
- if len(tree) > 50:
156
- print_dim(t("ctx_more_entries", count=str(len(tree) - 50)))
170
+ if tree_truncated:
171
+ print_dim(t("ctx_more_entries", count=str(tree_total - len(tree))))
157
172
  print_blank()
158
173
  if contributors:
159
174
  print_bracket(t("ctx_top_contributors"))
@@ -9,7 +9,7 @@ globs: "**/*"
9
9
  - Changed files: `gitwise diff` — never raw `git diff`
10
10
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
11
11
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
12
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
12
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
13
13
 
14
14
  ## Shell note
15
15
 
@@ -10,7 +10,7 @@ developer_instructions = """
10
10
  - Changed files: `gitwise diff` — never raw `git diff`
11
11
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
12
12
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
13
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
13
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
14
14
 
15
15
  ## Shell note
16
16
 
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
8
8
  - Changed files: `gitwise diff` — never raw `git diff`
9
9
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
10
10
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
11
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
11
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
12
12
  - Audit: `gitwise audit --quick` — before large commits
13
13
  - Clean: `gitwise clean --branches` — remove stale branches
14
14
  - Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
@@ -10,7 +10,7 @@ alwaysApply: true
10
10
  - Changed files: `gitwise diff` — never raw `git diff`
11
11
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
12
12
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
13
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
13
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
14
14
  - Audit: `gitwise audit --quick` — before large commits
15
15
  - Clean: `gitwise clean --branches` — remove stale branches
16
16
  - Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
8
8
  - Changed files: `gitwise diff` — never raw `git diff`
9
9
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
10
10
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
11
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
11
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
12
12
  - Audit: `gitwise audit --quick` — before large commits
13
13
  - Clean: `gitwise clean --branches` — remove stale branches
14
14
  - Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
8
8
  - Changed files: `gitwise diff` — never raw `git diff`
9
9
  - Status + log: `gitwise summarize` — never raw `git status` or `git log`
10
10
  - Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
11
- - Snapshot: `gitwise snapshot` regenerates `.claude/git-snapshot.md`
11
+ - Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
12
12
  - Audit: `gitwise audit --quick` — before large commits
13
13
  - Clean: `gitwise clean --branches` — remove stale branches
14
14
  - Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
@@ -31,6 +31,12 @@
31
31
  "type": "boolean",
32
32
  "description": "pretty-print JSON output",
33
33
  "default": false
34
+ },
35
+ "max_entries": {
36
+ "type": "integer",
37
+ "minimum": 1,
38
+ "description": "maximum directory tree entries (default: 100)",
39
+ "default": 100
34
40
  }
35
41
  }
36
42
  }
@@ -52,7 +52,21 @@
52
52
  },
53
53
  "data": {
54
54
  "type": "object",
55
- "properties": {}
55
+ "properties": {
56
+ "tree": {
57
+ "type": "array",
58
+ "items": {
59
+ "type": "string"
60
+ }
61
+ },
62
+ "tree_total": {
63
+ "type": "integer",
64
+ "minimum": 0
65
+ },
66
+ "tree_truncated": {
67
+ "type": "boolean"
68
+ }
69
+ }
56
70
  }
57
71
  }
58
72
  }
gitwise/snapshot.py CHANGED
@@ -10,6 +10,13 @@ from gitwise.output import debug, print_header, print_json, status
10
10
  from gitwise.utils.json_envelope import ok_envelope
11
11
 
12
12
 
13
+ def _snapshot_relative_path(root: Path) -> str:
14
+ """Return the snapshot path for the repository's active agent layout."""
15
+ if (root / ".agents").is_dir():
16
+ return ".agents/git-snapshot.md"
17
+ return ".claude/git-snapshot.md"
18
+
19
+
13
20
  def _append_branch_section(lines: list[str], *, root: Path) -> None:
14
21
  """Append the current branch section to *lines*."""
15
22
  branch = git_run(["branch", "--show-current"], cwd=root, check=False)
@@ -105,7 +112,7 @@ def run_snapshot(*, as_json: bool = False) -> int:
105
112
  return 1
106
113
 
107
114
  with status(t("status_snapshot_gen")):
108
- path = generate_snapshot(root)
115
+ path = generate_snapshot(root, relative_path=_snapshot_relative_path(root))
109
116
 
110
117
  if as_json:
111
118
  print_json(ok_envelope("snapshot", path=str(path)))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitwise-cli
3
- Version: 0.34.2
3
+ Version: 0.35.1
4
4
  Summary: Python CLI for optimizing git workflows and Claude Code integration
5
5
  Project-URL: Homepage, https://github.com/drzioner/gitwise
6
6
  Project-URL: Repository, https://github.com/drzioner/gitwise
@@ -1,11 +1,11 @@
1
- gitwise/__init__.py,sha256=J65EqE0j1_NcQFH4XCgKopAMMFlY1qvLEgALjnH5PK8,432
2
- gitwise/__main__.py,sha256=seS0qQDTl0WH4FHBeNA_HGJtnpXnfRqi8qCc7C3MbIc,5186
1
+ gitwise/__init__.py,sha256=lTMcJGVkirPuHeStrLjmkW0_lhnXV5Gq9ltWsVUtdjU,432
2
+ gitwise/__main__.py,sha256=un7xnbcNDlKp3yBXw8tPKY6eFttldppCumYIEHFknE0,5224
3
3
  gitwise/_cli_completions.py,sha256=TlVH42FLU6_1vpTpbxKp-i7r6B8yPtk_LZ3D2l8HMWI,6570
4
- gitwise/_cli_dispatch.py,sha256=8cPF9dLD0n5l-4O0XeAGuvZz9_AQyJfdKg6wnV4ckE8,19161
5
- gitwise/_cli_introspection.py,sha256=yzPXo3OjoZXCpPK5wj908kE9BfkIOs9fwXXChIdjIZ0,11120
6
- gitwise/_cli_parser.py,sha256=Zj7N_qLV057yFqjV70zVXzGdtIzCxxPS67e3snPwkMM,19285
4
+ gitwise/_cli_dispatch.py,sha256=xtDiinReOH_peyYRRWWrk7HJLmgP205OWXqdzlZWRRQ,19191
5
+ gitwise/_cli_introspection.py,sha256=gLraIn1AoWHv6QvOdsEPixbhXW2NVE0UyL_jqofetmk,11174
6
+ gitwise/_cli_parser.py,sha256=vdgoVMghPYaFjy6vzmth8uE0_noWv4qDIhRRXWRD4C4,19437
7
7
  gitwise/_cli_setup_agents.py,sha256=ErDGdTVCx-b416LnkH5yZzHqYEiO2rkBvYtHDi59mW4,15328
8
- gitwise/_i18n_data.json,sha256=WJmNbKqiIGWxFLkP3jiKvVOkqqjuPEA2fuEDUpXT7qc,70802
8
+ gitwise/_i18n_data.json,sha256=kNphQcPbaQjVvp7Sb6kb0hfKRmTDUleZ_4LVkniCoSE,70941
9
9
  gitwise/_paths.py,sha256=VRkql9HQ5_OjwbpcX-18fwe_lMpuQffP4AiBV6suSFg,658
10
10
  gitwise/_runtime_config.py,sha256=EF0NOlNNvEf9awRsfHr0Ma7MNgy4Fl3aPbLY9HEVEpQ,8350
11
11
  gitwise/audit.py,sha256=644-WhyxelBS6lkSKvidQgOXGSs-UWwyWKfxphQ8PSE,11322
@@ -13,7 +13,7 @@ gitwise/branches.py,sha256=rCl0oV8Us1qTDlaHVHihlmTkQz-qmQL6tL4lg-ttj2w,7748
13
13
  gitwise/clean.py,sha256=pU6TA40T1dr7z3RomRY8VU5B3_laDdbsXpWDrdpRVZM,7024
14
14
  gitwise/commit.py,sha256=VmoDrf-yqFKqMi0gcl74RYS525gbnrdQhQSoy-Q3UKk,9714
15
15
  gitwise/conflicts.py,sha256=eyTmqA4HEavn-rW7xCA3TSSaZq3VE5gmVH2BONM_Ah8,8502
16
- gitwise/context.py,sha256=Drxv7isxsQy4haf5uo0BTCugvaClT_qUAWoLw-IdJ8Y,6240
16
+ gitwise/context.py,sha256=l3p-SSxxQNqYl1KUjl2yfX0q_bw2WhiorCf7_uh8fKM,6758
17
17
  gitwise/design.py,sha256=9P_XJc6P_glRc9DPOwb_VbnxaB-ekFRcd71rcs4JWc8,12936
18
18
  gitwise/diff.py,sha256=6FBLC2NOitaOpAdLveMNN1BG3G8DmYsUGmvWFu2RQFY,21163
19
19
  gitwise/doctor.py,sha256=SyefSCTQ2oLFeB6r5saRcl1UCfCyoYmh6YSoKBy6BdE,4291
@@ -30,7 +30,7 @@ gitwise/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
30
  gitwise/schema.py,sha256=O8IMVWVRCQlOg6y84FHtQflhOb5iE5Lm99zajaYef9A,4107
31
31
  gitwise/setup.py,sha256=0kM7fJ28fLWoIS2Ks--QR9UWbA2M-z6WcGW8TIWWb8A,18427
32
32
  gitwise/show.py,sha256=tdDKeHhrlagmjcg2tHxTVZTEesa0XYylG3hZwRdhrio,5216
33
- gitwise/snapshot.py,sha256=4_kGmaRfMTVMEUHLJiI-M6_dygCwNszEQjBpu4-VawU,3899
33
+ gitwise/snapshot.py,sha256=3-qqHxsZZciHRnO-kmrhTIFPFN01DhTY5oSQZ7hB_zQ,4185
34
34
  gitwise/stash.py,sha256=GLM_UHJqwds64k1xscEyNKwc9iFbJaAX1FqvkQu17XM,9790
35
35
  gitwise/status.py,sha256=IyMLauvAMTjqqgCa8jUeVAg2djy4A5PdSnb2ZY9PWMs,6954
36
36
  gitwise/suggest.py,sha256=pgbTQdGJ7K7_viHd602Ib1T04SfE2IYddnDoC_WEJu8,6212
@@ -80,17 +80,17 @@ gitwise/share/aider/CONVENTIONS.md.template,sha256=yy34J9bvbo053SFYu3d0qqNwTet3V
80
80
  gitwise/share/aider/aider.conf.yml.template,sha256=S95dRmqO79JQyPVuB6FolmzjblkZZ_UBaTTamSD9sOY,95
81
81
  gitwise/share/claude/CLAUDE.md.template,sha256=cEwWJ2UdtZ1BkrZB6s_BNzMsVAakoWPmmxpfsMJjlMs,524
82
82
  gitwise/share/claude/settings.json.template,sha256=K-gRttFJ8LmxzakKK4wYhmXWB25CBrTKdyLa1pLLS90,1282
83
- gitwise/share/claude/rules/gitwise.md,sha256=O38mehD8DlOva9jh8upUTZYWaNfjrKpf-QQvICDH7MQ,536
83
+ gitwise/share/claude/rules/gitwise.md,sha256=xoEtkWQL7cQBQaSBI5Zqv1y8pbRICHWYso6S_wrOonY,588
84
84
  gitwise/share/claude/skills/git-audit/SKILL.md,sha256=ItlLBBKUcug11dC2_ftRcp1eRSmNHaJpBtMGQXMksFA,1079
85
85
  gitwise/share/claude/skills/git-clean/SKILL.md,sha256=vNxY4KJ6hYvSknTiZsTuJx8fZJFdhJ0VwXLJ49PU_6U,930
86
86
  gitwise/share/claude/skills/git-optimize/SKILL.md,sha256=zuPfPlvu-_XJ2AbYho6vJh65gTMHo0jROQvbOhgtUiE,886
87
- gitwise/share/codex/agents/gitwise.toml.template,sha256=IzthW-8O3nVtFhw9GKOZUDt7Jf4hdZmJAmDUQVEUMsw,622
88
- gitwise/share/continue/rules/gitwise.md.template,sha256=qpHNHs-yYDx0TuO0ztQshcMIa_j_yBw1DBJZHW7acZs,619
89
- gitwise/share/cursor/rules/gitwise.mdc.template,sha256=63l2MWe6bQXL253x09O7CgM7_Ws9JUgrUOtNB9Zhag4,641
87
+ gitwise/share/codex/agents/gitwise.toml.template,sha256=xn7RctD1KehGiz81mnGfs13lXZmSzelTzQDEWHEM0e0,674
88
+ gitwise/share/continue/rules/gitwise.md.template,sha256=xNstnEA8ClIByBby1e5h2b9tPVz48erG7GGQU55Qmgg,671
89
+ gitwise/share/cursor/rules/gitwise.mdc.template,sha256=8mtxGy6ZBfWhCW8V5K-L3Hpe4JcxvFhu032NUZilb44,693
90
90
  gitwise/share/hooks/commit-msg,sha256=XYO1M8yr-dg6RIW1EsbURTPniz_P5NnDAy2g9iyVm4c,967
91
91
  gitwise/share/hooks/pre-commit,sha256=ArwF0ObjO-yrHUS2E0SztH4ya1h9ERww2uQBvGjLXl8,826
92
- gitwise/share/opencode/agents/gitwise.md.template,sha256=qpHNHs-yYDx0TuO0ztQshcMIa_j_yBw1DBJZHW7acZs,619
93
- gitwise/share/pi/skills/gitwise.md.template,sha256=qpHNHs-yYDx0TuO0ztQshcMIa_j_yBw1DBJZHW7acZs,619
92
+ gitwise/share/opencode/agents/gitwise.md.template,sha256=xNstnEA8ClIByBby1e5h2b9tPVz48erG7GGQU55Qmgg,671
93
+ gitwise/share/pi/skills/gitwise.md.template,sha256=xNstnEA8ClIByBby1e5h2b9tPVz48erG7GGQU55Qmgg,671
94
94
  gitwise/share/schemas/v1/input/audit.json,sha256=VRggwo8B-qUPUdWnVlrnTKCRrHAFk6Z-ZbSZOA_tVas,907
95
95
  gitwise/share/schemas/v1/input/branches.json,sha256=-TNmkH9KddkXeSGWWkksd7a64Kxk2zk5xSX86GEo6MM,1474
96
96
  gitwise/share/schemas/v1/input/clean.json,sha256=PQX0I00cnbrrb7nGgYVF3Ls-Z0-1CGbU1IBcdQCUQ7Y,1119
@@ -98,7 +98,7 @@ gitwise/share/schemas/v1/input/commands.json,sha256=cY-gQK_k-KpYd1xSeo-9QaD-H5-M
98
98
  gitwise/share/schemas/v1/input/commit.json,sha256=cqWj9QBqREEkKCuHCH4GpN28Qtu14A9hmf_51gPgeEk,1616
99
99
  gitwise/share/schemas/v1/input/completions.json,sha256=VoDfxoo97dM6LImank7-rz1e89ndc_LS_E69EAsLNO0,1229
100
100
  gitwise/share/schemas/v1/input/conflicts.json,sha256=pak6p3fzlKANWudbOuIUN5i86_HSgGGhPbcwRYTr5wQ,1587
101
- gitwise/share/schemas/v1/input/context.json,sha256=EmHb_SewW6xxDAZ_InJq76_lrAAD_HWlQmGC-V6Zq1o,841
101
+ gitwise/share/schemas/v1/input/context.json,sha256=1GdiULR6_VpHxTIB5s6uEfbLCUBiQ6kPkwy8els00W4,1005
102
102
  gitwise/share/schemas/v1/input/diff.json,sha256=uPzyjZthVSoooBynuCQLKAB2wf04pBfH46lM49cccCk,2365
103
103
  gitwise/share/schemas/v1/input/doctor.json,sha256=qkR-oY8jlNyur8USc62o8g8EmUFA0q3t5sVCSfHO8vE,839
104
104
  gitwise/share/schemas/v1/input/health.json,sha256=ujZmveZ8un8DhgKGan79A_MOTxu0rjXXUmDlSAeU7oM,839
@@ -127,7 +127,7 @@ gitwise/share/schemas/v1/output/clean.json,sha256=U8rH3G9ytiIq7gzu9FwBqRt5nq6QsB
127
127
  gitwise/share/schemas/v1/output/commands.json,sha256=51Hf5v-4_9odGUJ-iKVyNCoXbqNvRxpYYq9ci5SvfjA,1585
128
128
  gitwise/share/schemas/v1/output/commit.json,sha256=mmE4c9I2FkAxxfm9PB8kPe51p2i8D21Bk0gCz0YYd9A,1478
129
129
  gitwise/share/schemas/v1/output/conflicts.json,sha256=F8ub7lYAi51DgM3Qx8fkA5g3trlmIp6QnurRjlD_4J0,1784
130
- gitwise/share/schemas/v1/output/context.json,sha256=L-mck-HvXMPJc06byoq9ry0-Rg7AJ295FHMZZ1oQswE,1177
130
+ gitwise/share/schemas/v1/output/context.json,sha256=p5et0F59qXTx9Jw9PZ4-izn6GIjtkCDOlqgE1tiP93Q,1455
131
131
  gitwise/share/schemas/v1/output/diff.json,sha256=8f5Ah8s43H1W-YoCvtrQMIFmD4PPB1W1DrnWhAZUfc4,2910
132
132
  gitwise/share/schemas/v1/output/doctor.json,sha256=AEhvl6XKJ1WkDo1s1SHPSHlQVUEBY1wSTGblE9RRztg,1173
133
133
  gitwise/share/schemas/v1/output/health.json,sha256=6rgBIM4mUyBkHjupdCVtQ1a_1I3nAxwUTcDJog1Z9hQ,2623
@@ -148,8 +148,8 @@ gitwise/share/schemas/v1/output/tag.json,sha256=EPDFtSjrPXqUJfhf0j8ciCrEhjACq1VW
148
148
  gitwise/share/schemas/v1/output/undo.json,sha256=eVCVYhGNnUF025ExbxHygaRzWybGCWFhp540U5JMk60,1467
149
149
  gitwise/share/schemas/v1/output/update.json,sha256=Gm0ACHlpgRhOr1-qrV6fAXxi_Pcbv9zsfZ17_2btJVs,1411
150
150
  gitwise/share/schemas/v1/output/worktree.json,sha256=55Z6wgv0BOV4YhAZAqLI0vgKXIBcw0Xspbn0N0tW0I4,1929
151
- gitwise_cli-0.34.2.dist-info/METADATA,sha256=k_m8SR6AaRdacN-Bz8FgPtsMqGotH4DK5E1V_pkdXoY,7563
152
- gitwise_cli-0.34.2.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
153
- gitwise_cli-0.34.2.dist-info/entry_points.txt,sha256=m3_cGIC4VTGp7Wn5_s7NBPACs9Yiwdn4ZBWUBX4PMfQ,77
154
- gitwise_cli-0.34.2.dist-info/licenses/LICENSE,sha256=vfJO-ThMtWhZOD9MsArN2yul1EJmxAXxfeGHKnEk9QQ,1063
155
- gitwise_cli-0.34.2.dist-info/RECORD,,
151
+ gitwise_cli-0.35.1.dist-info/METADATA,sha256=6afbKrfxJsLDLyA3TIEXIqx7m1QaF0wmUtrqaVldN3E,7563
152
+ gitwise_cli-0.35.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
153
+ gitwise_cli-0.35.1.dist-info/entry_points.txt,sha256=m3_cGIC4VTGp7Wn5_s7NBPACs9Yiwdn4ZBWUBX4PMfQ,77
154
+ gitwise_cli-0.35.1.dist-info/licenses/LICENSE,sha256=vfJO-ThMtWhZOD9MsArN2yul1EJmxAXxfeGHKnEk9QQ,1063
155
+ gitwise_cli-0.35.1.dist-info/RECORD,,