gitwise-cli 0.35.1__py3-none-any.whl → 0.36.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.35.1"
3
+ __version__ = "0.36.1"
4
4
 
5
5
 
6
6
  def get_version() -> str:
gitwise/_cli_dispatch.py CHANGED
@@ -125,7 +125,6 @@ def _run_clean(args: argparse.Namespace) -> int:
125
125
 
126
126
  return run_clean(
127
127
  branches=args.branches,
128
- refs=args.refs,
129
128
  dry_run=args.dry_run,
130
129
  yes=args.yes,
131
130
  as_json=args.json,
gitwise/_cli_parser.py CHANGED
@@ -157,16 +157,15 @@ def build_parser() -> argparse.ArgumentParser:
157
157
  p.add_argument("--diff", action="store_true")
158
158
  p.add_argument("--max-commits", type=int, default=10, dest="max_commits")
159
159
 
160
- p = sub.add_parser("snapshot", help="generate .claude/git-snapshot.md", parents=[parent])
160
+ p = sub.add_parser("snapshot", help="generate agent git snapshot", parents=[parent])
161
161
 
162
162
  p = sub.add_parser(
163
163
  "clean",
164
- help="clean up stale branches and refs",
164
+ help="clean up stale branches",
165
165
  aliases=["branch-clean"],
166
166
  parents=[parent],
167
167
  )
168
168
  p.add_argument("--branches", action="store_true")
169
- p.add_argument("--refs", action="store_true")
170
169
  p.add_argument("--dry-run", action="store_true")
171
170
  p.add_argument("--yes", "-y", action="store_true")
172
171
 
gitwise/_i18n_data.json CHANGED
@@ -151,13 +151,9 @@
151
151
  "es": "gitwise clean --branches --dry-run",
152
152
  "en": "gitwise clean --branches --dry-run"
153
153
  },
154
- "clean_refs_not_implemented": {
155
- "es": "'clean --refs' no está implementado",
156
- "en": "'clean --refs' is not implemented"
157
- },
158
154
  "clean_specify_flag": {
159
- "es": "especifica --branches (o --refs)",
160
- "en": "specify --branches (or --refs)"
155
+ "es": "especifica --branches",
156
+ "en": "specify --branches"
161
157
  },
162
158
  "clean_to_delete": {
163
159
  "es": "para eliminar: gitwise clean --branches --yes",
@@ -876,7 +872,7 @@
876
872
  "en": ".claude/commands/{skill}.md is legacy format — now using .claude/skills/{skill}/SKILL.md. Delete the old .md manually."
877
873
  },
878
874
  "legacy_migration_mode": {
879
- "es": "modo migracion legacy activo: se prioriza layout canonico (AGENTS.md + .agents/skills)",
875
+ "es": "modo migración legacy activo: se prioriza layout canónico (AGENTS.md + .agents/skills)",
880
876
  "en": "legacy migration mode enabled: canonical layout (AGENTS.md + .agents/skills) is enforced"
881
877
  },
882
878
  "log_no_commits": {
@@ -2071,6 +2067,10 @@
2071
2067
  "es": "ejecutaría: git pull --ff-only en {dir}",
2072
2068
  "en": "would run: git pull --ff-only in {dir}"
2073
2069
  },
2070
+ "update_deprecation_hint": {
2071
+ "es": "update está deprecado; usa `brew upgrade gitwise` para Homebrew o `uv tool upgrade gitwise-cli` para instalaciones con uv tool",
2072
+ "en": "update is deprecated; use `brew upgrade gitwise` for Homebrew or `uv tool upgrade gitwise-cli` for uv tool installations"
2073
+ },
2074
2074
  "updated_git_conventions": {
2075
2075
  "es": "actualizado: {file} (convenciones git agregadas)",
2076
2076
  "en": "updated: {file} (git conventions added)"
gitwise/clean.py CHANGED
@@ -59,7 +59,6 @@ def _categorize(
59
59
  def run_clean(
60
60
  *,
61
61
  branches: bool = False,
62
- refs: bool = False,
63
62
  dry_run: bool = False,
64
63
  yes: bool = False,
65
64
  as_json: bool = False,
@@ -70,11 +69,6 @@ def run_clean(
70
69
  user-cancelled), 1 on delete failures or missing flag, 2 when
71
70
  ``--json`` is used without ``--yes``.
72
71
  """
73
- if refs:
74
- return report_error(
75
- "clean", as_json=as_json, msg=t("clean_refs_not_implemented"), code="not_implemented"
76
- )
77
-
78
72
  if not branches:
79
73
  return report_error(
80
74
  "clean", as_json=as_json, msg=t("clean_specify_flag"), code="clean_specify_flag"
@@ -36,10 +36,6 @@
36
36
  "type": "boolean",
37
37
  "default": false
38
38
  },
39
- "refs": {
40
- "type": "boolean",
41
- "default": false
42
- },
43
39
  "dry_run": {
44
40
  "type": "boolean",
45
41
  "default": false
@@ -54,7 +54,7 @@
54
54
  "type": "object",
55
55
  "properties": {
56
56
  "applied": {
57
- "type": "boolean"
57
+ "type": "string"
58
58
  },
59
59
  "cleared": {
60
60
  "type": "integer",
@@ -65,8 +65,7 @@
65
65
  "minimum": 0
66
66
  },
67
67
  "dropped": {
68
- "type": "integer",
69
- "minimum": 0
68
+ "type": "string"
70
69
  },
71
70
  "dry_run": {
72
71
  "type": "boolean"
@@ -75,7 +74,7 @@
75
74
  "type": "string"
76
75
  },
77
76
  "popped": {
78
- "type": "boolean"
77
+ "type": "string"
79
78
  },
80
79
  "pushed": {
81
80
  "type": "boolean"
@@ -86,14 +85,29 @@
86
85
  "stashes": {
87
86
  "type": "array",
88
87
  "items": {
89
- "type": "string"
88
+ "type": "object",
89
+ "required": [
90
+ "ref"
91
+ ],
92
+ "properties": {
93
+ "ref": {
94
+ "type": "string"
95
+ },
96
+ "branch": {
97
+ "type": "string"
98
+ },
99
+ "message": {
100
+ "type": "string"
101
+ }
102
+ }
90
103
  }
91
104
  },
92
105
  "stat": {
93
106
  "type": "string"
94
107
  },
95
108
  "would_drop": {
96
- "type": "string"
109
+ "type": "integer",
110
+ "minimum": 0
97
111
  }
98
112
  }
99
113
  }
@@ -63,7 +63,7 @@
63
63
  "type": "string"
64
64
  },
65
65
  "updated": {
66
- "type": "string"
66
+ "type": "boolean"
67
67
  }
68
68
  }
69
69
  }
@@ -57,7 +57,8 @@
57
57
  "type": "string"
58
58
  },
59
59
  "cleaned": {
60
- "type": "boolean"
60
+ "type": "integer",
61
+ "minimum": 0
61
62
  },
62
63
  "count": {
63
64
  "type": "integer",
@@ -81,7 +82,7 @@
81
82
  "minimum": 0
82
83
  },
83
84
  "removed": {
84
- "type": "boolean"
85
+ "type": "string"
85
86
  },
86
87
  "worktrees": {
87
88
  "type": "array",
gitwise/update.py CHANGED
@@ -5,13 +5,16 @@ from pathlib import Path
5
5
  from gitwise.git import current_branch, has_upstream
6
6
  from gitwise.git import run as git_run
7
7
  from gitwise.i18n import t
8
- from gitwise.output import error, info, print_dim, print_header, print_json, status
8
+ from gitwise.output import error, info, print_dim, print_header, print_json, status, warn
9
9
  from gitwise.utils.json_envelope import error_envelope, ok_envelope
10
10
 
11
11
 
12
12
  def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
13
13
  """Entry point for the ``gitwise update`` command. Pulls the gitwise repo via git."""
14
14
  install_dir = Path(__file__).parent.parent
15
+ upgrade_hint = t("update_deprecation_hint")
16
+ if not as_json:
17
+ warn(upgrade_hint)
15
18
  if not (install_dir / ".git").is_dir():
16
19
  if as_json:
17
20
  print_json(
@@ -19,6 +22,7 @@ def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
19
22
  "update",
20
23
  error=t("update_requires_git_clone"),
21
24
  code="update_requires_git_clone",
25
+ hint=upgrade_hint,
22
26
  )
23
27
  )
24
28
  else:
@@ -26,7 +30,9 @@ def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
26
30
  return 1
27
31
  if dry_run:
28
32
  if as_json:
29
- print_json(ok_envelope("update", dry_run=True, dir=str(install_dir)))
33
+ print_json(
34
+ ok_envelope("update", dry_run=True, dir=str(install_dir), hints=[upgrade_hint])
35
+ )
30
36
  return 0
31
37
  print_dim(t("update_dry_run", dir=str(install_dir)))
32
38
  return 0
@@ -35,7 +41,15 @@ def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
35
41
  msg = t("update_no_upstream", branch=branch)
36
42
  hint = t("update_no_upstream_hint", branch=branch)
37
43
  if as_json:
38
- print_json(error_envelope("update", error=msg, code="no_upstream", hint=hint))
44
+ print_json(
45
+ error_envelope(
46
+ "update",
47
+ error=msg,
48
+ code="no_upstream",
49
+ hint=hint,
50
+ hints=[upgrade_hint],
51
+ )
52
+ )
39
53
  else:
40
54
  error(msg, hint=hint)
41
55
  return 1
@@ -45,7 +59,9 @@ def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
45
59
  r = git_run(["pull", "--ff-only"], cwd=install_dir, check=False)
46
60
  if r.returncode == 0 and r.stdout.strip() and r.stdout.strip() != "Already up to date.":
47
61
  if as_json:
48
- print_json(ok_envelope("update", updated=True, output=r.stdout.strip()))
62
+ print_json(
63
+ ok_envelope("update", updated=True, output=r.stdout.strip(), hints=[upgrade_hint])
64
+ )
49
65
  return 0
50
66
  for line in r.stdout.strip().splitlines():
51
67
  info(line)
@@ -53,13 +69,23 @@ def run_update(*, dry_run: bool = False, as_json: bool = False) -> int:
53
69
  if as_json:
54
70
  print_json(
55
71
  error_envelope(
56
- "update", error=r.stderr.strip() or t("error_updating"), code="update_failed"
72
+ "update",
73
+ error=r.stderr.strip() or t("error_updating"),
74
+ code="update_failed",
75
+ hint=upgrade_hint,
57
76
  )
58
77
  )
59
78
  return 1
60
79
  error(r.stderr.strip() or t("error_updating"))
61
80
  return 1
62
81
  elif as_json:
63
- print_json(ok_envelope("update", updated=False, output=t("already_up_to_date")))
82
+ print_json(
83
+ ok_envelope(
84
+ "update",
85
+ updated=False,
86
+ output=t("already_up_to_date"),
87
+ hints=[upgrade_hint],
88
+ )
89
+ )
64
90
  return 0
65
91
  return 0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitwise-cli
3
- Version: 0.35.1
3
+ Version: 0.36.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
@@ -44,21 +44,20 @@ Python CLI for optimized Git workflows and coding agents integration.
44
44
  [![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)
45
45
  [![Docs: EN/ES](https://img.shields.io/badge/docs-EN%20%7C%20ES-0A7EA4)](docs/README.md)
46
46
 
47
- gitwise addresses three daily pain points:
48
-
49
- 1. AI context bloat from raw `git diff`
50
- 2. Slow repositories without modern Git maintenance settings
51
- 3. Unsafe commit flows that bypass GPG signing rules
47
+ gitwise gives coding agents bounded repository context, isolated branch workflows,
48
+ and safe commit paths without hiding the underlying Git operations. Every command
49
+ supports machine-readable JSON, and destructive operations expose dry-run or
50
+ confirmation gates.
52
51
 
53
52
  ## Requirements
54
53
 
55
54
  - Python >= 3.10
56
55
  - git >= 2.29
57
- - macOS or Linux
56
+ - macOS, Linux, or Windows
58
57
 
59
58
  ## Install
60
59
 
61
- Pick one:
60
+ Choose the channel you already trust:
62
61
 
63
62
  **Homebrew** (macOS/Linux, recommended if you already use [Homebrew](https://brew.sh)):
64
63
 
@@ -68,7 +67,7 @@ brew install drzioner/tap/gitwise
68
67
 
69
68
  Update later with `brew upgrade gitwise`. Uninstall with `brew uninstall gitwise`.
70
69
 
71
- **curl | bash** (auto-installs `uv` if missing, no package manager required):
70
+ **Installer script** (auto-installs `uv` if needed):
72
71
 
73
72
  ```bash
74
73
  curl -fsSL https://raw.githubusercontent.com/drzioner/gitwise/main/install.sh | bash
@@ -80,7 +79,13 @@ curl -fsSL https://raw.githubusercontent.com/drzioner/gitwise/main/install.sh |
80
79
  uv tool install gitwise-cli
81
80
  ```
82
81
 
83
- **From source** (development only):
82
+ **Windows PowerShell** (PowerShell 5.1+):
83
+
84
+ ```powershell
85
+ irm https://raw.githubusercontent.com/drzioner/gitwise/main/install.ps1 | iex
86
+ ```
87
+
88
+ **From source** (contributors only):
84
89
 
85
90
  ```bash
86
91
  git clone https://github.com/drzioner/gitwise.git
@@ -89,20 +94,12 @@ uv sync
89
94
  uv run python -m gitwise doctor
90
95
  ```
91
96
 
92
- **Windows** (PowerShell 5.1+, auto-installs `uv` if missing):
93
-
94
- ```powershell
95
- irm https://raw.githubusercontent.com/drzioner/gitwise/main/install.ps1 | iex
96
- ```
97
-
98
- For a version-pinned install (e.g. for reproducible setups), see `Get-Help .\install.ps1 -Detailed` after download.
99
-
100
- Update an existing installation:
97
+ Update through the same channel used to install:
101
98
 
102
99
  ```bash
103
100
  brew upgrade gitwise # if installed via Homebrew (macOS/Linux)
104
101
  uv tool upgrade gitwise-cli # if installed via uv (any OS)
105
- # or re-run the curl | bash installer, which always pulls latest
102
+ # or rerun the installer script
106
103
  ```
107
104
 
108
105
  Uninstall:
@@ -112,7 +109,7 @@ brew uninstall gitwise # if installed via Homebrew
112
109
  uv tool uninstall gitwise-cli # if installed via uv (any OS)
113
110
  ```
114
111
 
115
- ## Quick Start
112
+ ## Quick start
116
113
 
117
114
  ```bash
118
115
  gitwise doctor
@@ -121,28 +118,128 @@ gitwise setup-agents --local --dry-run
121
118
  gitwise summarize
122
119
  ```
123
120
 
124
- ## Most Used Commands
121
+ The first three commands inspect or plan changes. Add `--yes` only after reviewing
122
+ the plan.
123
+
124
+ ## Five workflows
125
+
126
+ ### 1. Prepare a repository
127
+
128
+ Check the environment, preview modern Git defaults, and install the canonical
129
+ agent layout:
130
+
131
+ ```bash
132
+ gitwise doctor --json
133
+ gitwise setup --dry-run
134
+ gitwise setup --yes
135
+ gitwise setup-agents --local --dry-run
136
+ gitwise setup-agents --local --yes
137
+ ```
138
+
139
+ `setup` and `setup-agents` do not change `commit.gpgsign` or `user.signingkey`.
140
+
141
+ ### 2. Give an agent bounded context
142
+
143
+ Use structured summaries instead of feeding an agent an unbounded raw diff:
144
+
145
+ ```bash
146
+ gitwise context --json
147
+ gitwise context --max-entries 50 --json
148
+ gitwise summarize --json
149
+ gitwise diff --stat --json
150
+ ```
151
+
152
+ `context --json` defaults to 100 tree entries and reports `tree_total` plus
153
+ `tree_truncated` when it omits entries.
154
+
155
+ ### 3. Isolate agent work
156
+
157
+ Create a sibling worktree for a branch and use the path printed by the command:
158
+
159
+ ```bash
160
+ gitwise worktree new feature/agent-task
161
+ gitwise worktree list --json
162
+ ```
163
+
164
+ Use `gitwise worktree remove feature/agent-task --dry-run` before removal.
165
+
166
+ ### 4. Review and commit safely
167
+
168
+ Inspect staged changes, scan for likely secrets, then create a conventional,
169
+ GPG-signed commit through the repository's Git configuration:
170
+
171
+ ```bash
172
+ gitwise diff --staged --scan-secrets
173
+ gitwise commit -m "fix: handle empty configuration"
174
+ ```
175
+
176
+ gitwise blocks known signing and hook bypasses in generated agent rules. It does
177
+ not create or replace signing keys.
178
+
179
+ ### 5. Maintain the repo and check a PR
180
+
181
+ Keep maintenance explicit and inspect GitHub state without changing it:
182
+
183
+ ```bash
184
+ gitwise audit --quick
185
+ gitwise clean --branches --dry-run
186
+ gitwise optimize --dry-run
187
+ gitwise pr checks
188
+ gitwise pr create --fill
189
+ ```
190
+
191
+ `pr` delegates GitHub operations to `gh`; authenticate `gh` before using it.
192
+
193
+ ## Core commands
125
194
 
126
195
  | Command | Purpose |
127
196
  |---|---|
128
- | `gitwise doctor` | Check Python, git, platform, optional tools |
129
- | `gitwise setup` | Apply modern Git defaults safely |
130
- | `gitwise setup-agents` | Install canonical agents layout + optional provider config |
131
- | `gitwise audit` | Detect stale branches, graph/cache gaps, large blobs |
132
- | `gitwise summarize` | Compact context for humans and AI |
133
- | `gitwise diff` | Focused changed-file view (`--stat`, `--staged`, `--patch`) |
134
- | `gitwise worktree` | Create and clean worktree-based branch setups |
135
- | `gitwise status` | Enhanced status with staged/unstaged and ahead/behind |
136
- | `gitwise commands --json` | List subcommands with aliases and metadata |
137
- | `gitwise schema <command> --json` | Return versioned JSON Schema for command inputs |
138
- | `gitwise completions <shell>` | Generate shell completion scripts (bash/zsh/fish/powershell) |
139
- | `gitwise pr` | List/check/view PRs via GitHub CLI |
140
-
141
- For all commands, examples, aliases, and JSON usage, see:
197
+ | `setup-agents` | Install the canonical multi-agent layout and provider templates |
198
+ | `worktree` | Isolate branch work in sibling directories |
199
+ | `summarize` | Produce compact status, log, and optional diff context |
200
+ | `context` | Produce bounded repository context with truncation metadata |
201
+ | `diff` | Inspect focused, staged, statistical, or patch output |
202
+ | `commit` | Guard and create conventional commits |
203
+ | `audit` | Diagnose stale branches, repository structure, and maintenance gaps |
204
+
205
+ Support commands such as `doctor`, `setup`, `status`, `clean`, `optimize`, `pr`,
206
+ `commands`, and `schema` serve those workflows. For all 30 commands, aliases,
207
+ flags, and examples, see:
142
208
 
143
209
  - [Command reference (English)](docs/reference/commands.md)
144
210
  - [Referencia de comandos (Español)](docs/es/reference/commands.md)
145
211
 
212
+ ## JSON contract for agents
213
+
214
+ Global machine flags work before or after the subcommand:
215
+
216
+ ```bash
217
+ gitwise --json status
218
+ gitwise status --json
219
+ gitwise commands --json
220
+ gitwise schema diff --json
221
+ ```
222
+
223
+ Most JSON commands use the standard v3 envelope:
224
+
225
+ ```json
226
+ {"v":3,"ok":true,"command":"status","data":{},"hints":[],"errors":[]}
227
+ ```
228
+
229
+ Use `command` and stable error `code` values for branching. Treat `data` as the
230
+ command-specific payload. `setup-agents` retains versioned compatibility fields;
231
+ inspect its current contract with `gitwise schema setup-agents --json`.
232
+
233
+ ## Safety model
234
+
235
+ - Git subprocesses scrub executable/config injection variables and use explicit timeouts.
236
+ - Destructive batch commands require confirmation; JSON mode returns an explicit gate.
237
+ - `diff --scan-secrets` and `commit` detect high-confidence credential patterns.
238
+ - setup-agents symlink creation is sandboxed to the target repository.
239
+ - CI runs ruff, basedpyright, pytest with a 75% coverage floor, pip-audit, and shellcheck.
240
+
241
+ See [Security Policy](SECURITY.md) for vulnerability reporting.
242
+
146
243
  ## Documentation
147
244
 
148
245
  - [Documentation index (English)](docs/README.md)
@@ -156,13 +253,6 @@ For all commands, examples, aliases, and JSON usage, see:
156
253
  - [Git conventions](CONVENTIONS.md)
157
254
  - [Convenciones Git](CONVENTIONS.es.md)
158
255
 
159
- ## GPG and Safety Model
160
-
161
- `setup` and `setup-agents` never modify `commit.gpgsign` or `user.signingkey`.
162
-
163
- - Git layer: `setup` manages hooks safely (`--hooks-mode preserve|native|legacy|skip`) to validate signing key availability and conventional commits.
164
- - Agent layer: deny-rules block `--no-gpg-sign`, `--no-verify`, and `-c commit.gpgsign=false`.
165
-
166
256
  ## Environment Variables
167
257
 
168
258
  | Variable | Description |
@@ -203,7 +293,11 @@ Completion covers subcommands as the first token and per-command flags
203
293
 
204
294
  ## Demo
205
295
 
206
- [![asciicast](https://asciinema.org/a/6tm4TnYMygEQT7ef.svg)](https://asciinema.org/a/6tm4TnYMygEQT7ef)
296
+ Run the non-destructive current demo from a Git repository:
297
+
298
+ ```bash
299
+ bash demo/script.sh
300
+ ```
207
301
 
208
302
  ## License
209
303
 
@@ -1,16 +1,16 @@
1
- gitwise/__init__.py,sha256=lTMcJGVkirPuHeStrLjmkW0_lhnXV5Gq9ltWsVUtdjU,432
1
+ gitwise/__init__.py,sha256=Oo1WN5wwJa2yz1nzb_BBrvinPCt9zRPAIfNFcWtcPSo,432
2
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=xtDiinReOH_peyYRRWWrk7HJLmgP205OWXqdzlZWRRQ,19191
4
+ gitwise/_cli_dispatch.py,sha256=v2NTEOLD4MLDuhfA48QvGNB2fdc1EvmmLNxiB2rXLuQ,19167
5
5
  gitwise/_cli_introspection.py,sha256=gLraIn1AoWHv6QvOdsEPixbhXW2NVE0UyL_jqofetmk,11174
6
- gitwise/_cli_parser.py,sha256=vdgoVMghPYaFjy6vzmth8uE0_noWv4qDIhRRXWRD4C4,19437
6
+ gitwise/_cli_parser.py,sha256=C1TVkEldZXEP2kGGd5JsVBa7fTl8bdc_Sn6ybLeCKlg,19373
7
7
  gitwise/_cli_setup_agents.py,sha256=ErDGdTVCx-b416LnkH5yZzHqYEiO2rkBvYtHDi59mW4,15328
8
- gitwise/_i18n_data.json,sha256=kNphQcPbaQjVvp7Sb6kb0hfKRmTDUleZ_4LVkniCoSE,70941
8
+ gitwise/_i18n_data.json,sha256=hXiNdxbt9IdNqccw5YKcC9fXoAYVO9unx1XsbaLP1sA,71093
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
12
12
  gitwise/branches.py,sha256=rCl0oV8Us1qTDlaHVHihlmTkQz-qmQL6tL4lg-ttj2w,7748
13
- gitwise/clean.py,sha256=pU6TA40T1dr7z3RomRY8VU5B3_laDdbsXpWDrdpRVZM,7024
13
+ gitwise/clean.py,sha256=uXkKFdG6gmSXxJit2be-lRQ9TiPkeN8D4se1PK4-V_c,6849
14
14
  gitwise/commit.py,sha256=VmoDrf-yqFKqMi0gcl74RYS525gbnrdQhQSoy-Q3UKk,9714
15
15
  gitwise/conflicts.py,sha256=eyTmqA4HEavn-rW7xCA3TSSaZq3VE5gmVH2BONM_Ah8,8502
16
16
  gitwise/context.py,sha256=l3p-SSxxQNqYl1KUjl2yfX0q_bw2WhiorCf7_uh8fKM,6758
@@ -38,7 +38,7 @@ gitwise/summarize.py,sha256=SqTHBSxNUL1TG4hXMdBZnl-n1Q5AmH-7TJjAOwph7sA,7201
38
38
  gitwise/sync.py,sha256=NG50yVJ36M0IWD5YoZ8bK0APJqETIjId-lcnsXI4JqU,8727
39
39
  gitwise/tag.py,sha256=h2YCqXLR35zdst3EkAiSrOHe4m9OLCybENsA8ul0cjw,8281
40
40
  gitwise/undo.py,sha256=YIGwthyfflYe3ZBR1PCdHmj7jVSDgmLHeG2-fMMuDY0,4641
41
- gitwise/update.py,sha256=n6l89aFuXAyowFpGxoH9TbMjZQ4eLJxlFqHquEi37hs,2446
41
+ gitwise/update.py,sha256=702S1bFiI2djx4JOm7nlk7SUHElFavBwuAlsQZJS0rw,3064
42
42
  gitwise/worktree.py,sha256=gJprT1BMZ2r8DqUK-AO05ewAfxKcOIUP1Xq31eKv3_Q,10243
43
43
  gitwise/setup_agents/__init__.py,sha256=P5IrjTxvT8kZUNNPqIyN9rMvlcNuyckFRyL02ZFuCic,1001
44
44
  gitwise/setup_agents/exec.py,sha256=rT8KulX9T-R71e-HuFRYpbnceWb0IHXme2g0O78z2Sw,18303
@@ -93,7 +93,7 @@ gitwise/share/opencode/agents/gitwise.md.template,sha256=xNstnEA8ClIByBby1e5h2b9
93
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
- gitwise/share/schemas/v1/input/clean.json,sha256=PQX0I00cnbrrb7nGgYVF3Ls-Z0-1CGbU1IBcdQCUQ7Y,1119
96
+ gitwise/share/schemas/v1/input/clean.json,sha256=e19pvkeuOxIg0n0siKsh1gDOCsHiNmlz-dsIoV_YAHg,1050
97
97
  gitwise/share/schemas/v1/input/commands.json,sha256=cY-gQK_k-KpYd1xSeo-9QaD-H5-MQ0CydMEht4QAWg0,843
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
@@ -139,17 +139,17 @@ gitwise/share/schemas/v1/output/pr.json,sha256=6kk9dgJh86xfHH-ottjzEAP74CHorEal7
139
139
  gitwise/share/schemas/v1/output/setup-agents.json,sha256=5im16mTjssXuCn0jaFbyJQQxaSFvFe1nRPW2Ckes2c0,2477
140
140
  gitwise/share/schemas/v1/output/setup.json,sha256=xWSR28U2bDhVokB5SM_Ap-4XDkR22z24JBtCYK1pLhg,1356
141
141
  gitwise/share/schemas/v1/output/snapshot.json,sha256=INGZLeW1-u2x5PM214Hl5XLJLuanXMzZiSgBbOQO_vw,1243
142
- gitwise/share/schemas/v1/output/stash.json,sha256=jrQzmI8sUstUHNWqYjgpasa7D-nYOShW21bCMNmbBY0,2016
142
+ gitwise/share/schemas/v1/output/stash.json,sha256=sd3qQODw1JehypmJLegn5FTOo2DdyIQmg7V4gDo6mn0,2343
143
143
  gitwise/share/schemas/v1/output/status.json,sha256=jEhPT1qRXbhVwqdhLvLqzXG9GE25Q2oKpxzTw60_uac,3417
144
144
  gitwise/share/schemas/v1/output/suggest.json,sha256=DElwBI1NGY-N-nx311C0V9pCJh6ykG6ade9_6XHRiLE,1607
145
145
  gitwise/share/schemas/v1/output/summarize.json,sha256=UkVVbX_ozI0H6cwaSorPnkM-rj-_BYY41xn6GF3GZew,1579
146
146
  gitwise/share/schemas/v1/output/sync.json,sha256=vzL8sSh6Sxtd93UWKLfENnDVpUL_vDuIoO8j2c0YGRM,1165
147
147
  gitwise/share/schemas/v1/output/tag.json,sha256=EPDFtSjrPXqUJfhf0j8ciCrEhjACq1VWmsqa2M1GPSQ,1605
148
148
  gitwise/share/schemas/v1/output/undo.json,sha256=eVCVYhGNnUF025ExbxHygaRzWybGCWFhp540U5JMk60,1467
149
- gitwise/share/schemas/v1/output/update.json,sha256=Gm0ACHlpgRhOr1-qrV6fAXxi_Pcbv9zsfZ17_2btJVs,1411
150
- gitwise/share/schemas/v1/output/worktree.json,sha256=55Z6wgv0BOV4YhAZAqLI0vgKXIBcw0Xspbn0N0tW0I4,1929
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,,
149
+ gitwise/share/schemas/v1/output/update.json,sha256=In_CD-qgodOZ3o7yj2kqOw41vTayie-MB0WHvg9naX8,1412
150
+ gitwise/share/schemas/v1/output/worktree.json,sha256=Pb02w1vW3cPvC4I8anBeUwsxrzeJm1eYBOSavaab8fE,1952
151
+ gitwise_cli-0.36.1.dist-info/METADATA,sha256=KXY1M8fgprq0YVkd2SFiC19BjH86-V-hCO-3wxKxrTQ,9742
152
+ gitwise_cli-0.36.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
153
+ gitwise_cli-0.36.1.dist-info/entry_points.txt,sha256=m3_cGIC4VTGp7Wn5_s7NBPACs9Yiwdn4ZBWUBX4PMfQ,77
154
+ gitwise_cli-0.36.1.dist-info/licenses/LICENSE,sha256=vfJO-ThMtWhZOD9MsArN2yul1EJmxAXxfeGHKnEk9QQ,1063
155
+ gitwise_cli-0.36.1.dist-info/RECORD,,