gitpr-cli 0.0.38__tar.gz → 1.0.0__tar.gz

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.
Files changed (91) hide show
  1. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/PKG-INFO +40 -39
  2. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/README.md +488 -487
  3. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/PKG-INFO +40 -39
  4. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/SOURCES.txt +28 -2
  5. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/blame_engine.py +111 -1
  6. gitpr_cli-1.0.0/src/changelog_builder.py +199 -0
  7. gitpr_cli-1.0.0/src/commit_classifier.py +133 -0
  8. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/config.py +137 -0
  9. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/core.py +317 -62
  10. gitpr_cli-1.0.0/src/diff_parser.py +159 -0
  11. gitpr_cli-1.0.0/src/github_api.py +112 -0
  12. gitpr_cli-1.0.0/src/infrastructure/__init__.py +1 -0
  13. gitpr_cli-1.0.0/src/infrastructure/scm/__init__.py +51 -0
  14. gitpr_cli-1.0.0/src/infrastructure/scm/azure_devops_provider.py +388 -0
  15. gitpr_cli-1.0.0/src/infrastructure/scm/base.py +238 -0
  16. gitpr_cli-1.0.0/src/infrastructure/scm/bitbucket_provider.py +326 -0
  17. gitpr_cli-1.0.0/src/infrastructure/scm/factory.py +97 -0
  18. gitpr_cli-1.0.0/src/infrastructure/scm/github_provider.py +400 -0
  19. gitpr_cli-1.0.0/src/infrastructure/scm/gitlab_provider.py +335 -0
  20. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/main.py +569 -89
  21. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/mcp_server.py +17 -0
  22. gitpr_cli-1.0.0/src/release_engine.py +590 -0
  23. gitpr_cli-1.0.0/src/reviewer_suggestion.py +242 -0
  24. gitpr_cli-1.0.0/src/suggest_reviewers.py +139 -0
  25. gitpr_cli-1.0.0/src/tui_issue.py +281 -0
  26. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/chat_app.py +1 -1
  27. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/help_screen.py +1 -1
  28. gitpr_cli-1.0.0/src/ui/issue_app.py +236 -0
  29. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/pr_publish_app.py +216 -52
  30. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/updater.py +2 -2
  31. gitpr_cli-1.0.0/src/version_bump.py +87 -0
  32. gitpr_cli-1.0.0/tests/test_blame_engine_ranges.py +140 -0
  33. gitpr_cli-1.0.0/tests/test_changelog_builder.py +185 -0
  34. gitpr_cli-1.0.0/tests/test_commit_classifier.py +174 -0
  35. gitpr_cli-1.0.0/tests/test_config_suggest_reviewers.py +82 -0
  36. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_core.py +79 -0
  37. gitpr_cli-1.0.0/tests/test_diff_parser.py +204 -0
  38. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_i18n.py +6 -2
  39. gitpr_cli-1.0.0/tests/test_main_suggest_reviewers.py +110 -0
  40. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_mcp_server.py +23 -0
  41. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_pr_publish_app.py +255 -0
  42. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_pr_publish_linter_modal.py +11 -2
  43. gitpr_cli-1.0.0/tests/test_release_cli.py +155 -0
  44. gitpr_cli-1.0.0/tests/test_release_engine.py +536 -0
  45. gitpr_cli-1.0.0/tests/test_reviewer_suggestion.py +234 -0
  46. gitpr_cli-1.0.0/tests/test_skill_command.py +162 -0
  47. gitpr_cli-1.0.0/tests/test_skill_context.py +68 -0
  48. gitpr_cli-1.0.0/tests/test_suggest_reviewers.py +358 -0
  49. gitpr_cli-1.0.0/tests/test_version_bump.py +121 -0
  50. gitpr_cli-0.0.38/src/github_api.py +0 -162
  51. gitpr_cli-0.0.38/src/tui_issue.py +0 -148
  52. gitpr_cli-0.0.38/src/ui/issue_app.py +0 -159
  53. gitpr_cli-0.0.38/tests/test_github_api.py +0 -384
  54. gitpr_cli-0.0.38/tests/test_skill_command.py +0 -58
  55. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/LICENSE +0 -0
  56. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/dependency_links.txt +0 -0
  57. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/entry_points.txt +0 -0
  58. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/requires.txt +0 -0
  59. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/gitpr_cli.egg-info/top_level.txt +0 -0
  60. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/pyproject.toml +0 -0
  61. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/setup.cfg +0 -0
  62. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/__init__.py +0 -0
  63. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ai_providers.py +0 -0
  64. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/cache.py +0 -0
  65. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/chat_memory.py +0 -0
  66. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/i18n.py +0 -0
  67. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/issue_engine.py +0 -0
  68. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/linter_engine.py +0 -0
  69. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/linter_wizard.py +0 -0
  70. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/metrics.py +0 -0
  71. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/net.py +0 -0
  72. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/security.py +0 -0
  73. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/spinner.py +0 -0
  74. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/__init__.py +0 -0
  75. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/linter_app.py +0 -0
  76. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/metrics_app.py +0 -0
  77. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/src/ui/pr_publish_help.py +0 -0
  78. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_blame_metrics.py +0 -0
  79. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_chat_backend.py +0 -0
  80. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_external_linters.py +0 -0
  81. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_install_wizard.py +0 -0
  82. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_issue_engine.py +0 -0
  83. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_linter_metrics.py +0 -0
  84. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_mcp_prompts.py +0 -0
  85. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_mcp_server_e2e.py +0 -0
  86. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_metrics.py +0 -0
  87. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_net_timeouts.py +0 -0
  88. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_plugins.py +0 -0
  89. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_pre_save.py +0 -0
  90. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_smart_excludes.py +0 -0
  91. {gitpr_cli-0.0.38 → gitpr_cli-1.0.0}/tests/test_thinking_words.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitpr-cli
3
- Version: 0.0.38
3
+ Version: 1.0.0
4
4
  Summary: AI-powered PR automation, commit messages, and code review (Gemini, DeepSeek, and Ollama)
5
5
  Author-email: Natan Fiuza <contato@natanfiuza.dev.br>
6
6
  Requires-Python: >=3.10
@@ -26,7 +26,7 @@ Dynamic: license-file
26
26
 
27
27
  GitPR CLI is a command-line automation tool that uses **Google Gemini**, **DeepSeek**, and **Ollama** artificial intelligence to analyze your code changes (git diff) or entire files. The tool automatically generates commit messages in the *Conventional Commits* standard, detailed Pull Request descriptions, and deep Code Reviews aimed at reducing technical debt.
28
28
 
29
- 🌐 **Website:** [gitpr.natanfiuza.dev.br](https://gitpr.natanfiuza.dev.br/) · 📂 **Repository:** [github.com/natanfiuza/gitpr](https://github.com/natanfiuza/gitpr)
29
+ 🌐 **Website:** [gitpr.natanfiuza.dev.br](https://gitpr.natanfiuza.dev.br/) · 📂 **Repository:** [https://github.com/gitpr-cli/gitpr.git](https://github.com/gitpr-cli/gitpr.git)
30
30
 
31
31
  ----
32
32
 
@@ -130,7 +130,7 @@ Pytest will automatically detect files inside the `tests/` folder and display a
130
130
 
131
131
  ### From Source Code
132
132
 
133
- 1. Clone the repository: `git clone https://github.com/natanfiuza/gitpr.git`
133
+ 1. Clone the repository: `git clone https://github.com/gitpr-cli/gitpr.git.git`
134
134
 
135
135
  2. Enter the folder: `cd gitpr`
136
136
 
@@ -162,11 +162,11 @@ You can pass the following *flags* for specific actions:
162
162
  * `--lang <code>`: Forces the interface language for this execution (e.g.: `en_us`, `pt_br`). Overrides `GITPR_LANG` in `.env` without persisting the change.
163
163
  * `-ch` or `--chat`: Opens the **Interactive Pair Programming Chat** — a TUI terminal where the AI sees your current diff and maintains a contextual conversation. Features memory per branch, slash commands (`/explain`, `/tests`, `/optimize`, `/clear`), auto-patching (F5), diff refresh (F2), and session export (F6).
164
164
  * `-l` or `--linter`: Runs **only the local static linter** (no AI calls). Ideal for use in CI/CD pipelines to block non-compliant code.
165
- * `--status`: Lists uncommitted file changes categorized as **new**, **modified**, and **deleted** — fast, no AI, no network. 📖 [Full docs](https://github.com/natanfiuza/gitpr/blob/main/docs/git-status.md)
166
- * `--no-unstaged-check`: Skips the unstaged files verification before AI processing for a single invocation. Equivalent to `GITPR_SKIP_UNSTAGED_CHECK=true` for one run. 📖 [Full docs](https://github.com/natanfiuza/gitpr/blob/main/docs/git-status.md)
167
- * `--linter-setup`: **Interactive external linter wizard.** Guides you through installing and configuring external linters (ESLint, PHPCS, Stylelint) as a Checkstyle XML bridge. 📖 [Full docs](https://github.com/natanfiuza/gitpr/blob/main/docs/linter-regras-customizadas.md)
165
+ * `--status`: Lists uncommitted file changes categorized as **new**, **modified**, and **deleted** — fast, no AI, no network. 📖 [Full docs](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/git-status.md)
166
+ * `--no-unstaged-check`: Skips the unstaged files verification before AI processing for a single invocation. Equivalent to `GITPR_SKIP_UNSTAGED_CHECK=true` for one run. 📖 [Full docs](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/git-status.md)
167
+ * `--linter-setup`: **Interactive external linter wizard.** Guides you through installing and configuring external linters (ESLint, PHPCS, Stylelint) as a Checkstyle XML bridge. 📖 [Full docs](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/linter-regras-customizadas.md)
168
168
  * `--mcp`: Starts GitPR as an **MCP server** (Model Context Protocol) on stdio transport. Enables integration with VS Code, Cursor, Claude Desktop, and other MCP-compatible editors — exposing all GitPR AI capabilities as 12 annotated tools, 15 resources, and 7 pre-built prompts directly inside your IDE. Also available as the standalone `gitpr-mcp` command.
169
- * `--plugins`: Lists all **globally installed plugins** — custom linter packs from `~/.gitpr/plugins/linter/` and MCP prompt templates from `~/.gitpr/plugins/prompts/`. These plugins apply across all your projects without duplication. 📖 [Full docs](https://github.com/natanfiuza/gitpr/blob/main/docs/plugins-system.md)
169
+ * `--plugins`: Lists all **globally installed plugins** — custom linter packs from `~/.gitpr/plugins/linter/` and MCP prompt templates from `~/.gitpr/plugins/prompts/`. These plugins apply across all your projects without duplication. 📖 [Full docs](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/plugins-system.md)
170
170
  * `--install`: **Interactive Setup Wizard.** Runs a guided 4-step setup: downloads skill templates, installs Git hooks, configures MCP for detected editors, and checks/requests your AI provider API key. Each step asks for confirmation before proceeding.
171
171
  * `-ih` or `--installhooks`: Automatically installs **local Git Hooks** (`pre-commit` and `prepare-commit-msg`) in your repository.
172
172
  * `-s` or `--skill`: Creates the AI context template files (`.gitpr.commit.md`, `.gitpr.pr.md`, `.gitpr.review.md`, `.gitpr.filereview.md`, `.gitpr.issue.md`, `.gitpr.blame.md`) and the Linter (`.gitpr.linter.yml`) at the project root.
@@ -174,7 +174,7 @@ You can pass the following *flags* for specific actions:
174
174
  * **New Code Issue (`gitpr -is`):** Reads the current `git diff`. **Why use:** Ideal for quickly documenting the task you just finished programming, before committing.
175
175
  * **Epic/Release Issue (`gitpr -is -ht`):** Reads the full history of the current branch (Git Log + PR Cache). **Why use:** Ideal for generating consolidated documentation of an entire release or a large *feature* that took several days/commits to complete.
176
176
  * **Archaeological/Technical Debt Issue (`gitpr -is -b file:lines`):** Reads the timeline of a specific business rule. **Why use:** Ideal for documenting technical debt, explaining how a legacy code block evolved and why it needs to be refactored.
177
- * **PR Publisher (default):** Running `gitpr` generates the PR description with AI, saves the `.md` file to `.gitpr/reports/pr_desc/`, and opens an interactive terminal interface (TUI) to review, edit, and publish the Pull Request directly to GitHub via REST API. Before generation, it checks for unstaged files and offers a modal to manage them. Use `--no-publish` to save only the PR file locally without opening the publisher, or `--no-edit` to auto-commit pending changes (with lint validation), auto-push, and publish immediately — handling existing PR updates, optional auto-merge, and clear error feedback when merge conflicts occur. Use `--base <branch>` to change the target branch. 📖 [Full docs](https://github.com/natanfiuza/gitpr/blob/main/docs/pull-request-publication.md)
177
+ * **PR Publisher (default):** Running `gitpr` generates the PR description with AI, saves the `.md` file to `.gitpr/reports/pr_desc/`, and opens an interactive terminal interface (TUI) to review, edit, and publish the Pull Request directly to GitHub via REST API. Before generation, it checks for unstaged files and offers a modal to manage them. Use `--no-publish` to save only the PR file locally without opening the publisher, or `--no-edit` to auto-commit pending changes (with lint validation), auto-push, and publish immediately — handling existing PR updates, optional auto-merge, and clear error feedback when merge conflicts occur. Use `--base <branch>` to change the target branch. 📖 [Full docs](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/pull-request-publication.md)
178
178
  * `-h` or `--help`: Shows the general help with all options. Use together with another flag for **contextual help** (e.g.: `gitpr -h --issue`, `gitpr -h --linter`) with a direct link to the detailed documentation of each feature.
179
179
  * `-u` or `--update`: Checks and installs the latest version of GitPR (Auto-Updater).
180
180
 
@@ -186,7 +186,7 @@ You can pass the following *flags* for specific actions:
186
186
 
187
187
  When your diff is too large for a single AI call (over ~90k estimated tokens), GitPR automatically splits it into batches by file, asks the AI for a technical summary of each part (Map), and unifies everything into the final commit message, review, or PR description (Reduce). No flags needed — it activates on demand and shows the progress in the console.
188
188
 
189
- 📚 Full documentation: [docs/map-reduce-diff.md](https://github.com/natanfiuza/gitpr/blob/main/docs/map-reduce-diff.md)
189
+ 📚 Full documentation: [docs/map-reduce-diff.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/map-reduce-diff.md)
190
190
 
191
191
  ## 🛡️ Local Linter (Static Analysis)
192
192
 
@@ -233,7 +233,7 @@ Co-Authored-By: Gitpr-cli <gitpr@natanfiuza.dev.br>
233
233
 
234
234
  The trailer is appended programmatically (never by the AI) in all flows: console suggestion (`gitpr -c`), the `prepare-commit-msg` hook, auto-commit (`--no-edit`), the PR publication TUI, and the MCP `generate_commit_message` tool. It is idempotent — never duplicated when the message already contains it — and is hidden from the TUI edit screen, injected only when the commit is executed.
235
235
 
236
- 📖 **Full documentation:** [docs/commit-message-ia.md](https://github.com/natanfiuza/gitpr/blob/main/docs/commit-message-ia.md)
236
+ 📖 **Full documentation:** [docs/commit-message-ia.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/commit-message-ia.md)
237
237
 
238
238
  ## 🧠 Multi-Model Architecture (AI-Agnostic)
239
239
 
@@ -268,7 +268,7 @@ GitPR automatically detects your system language and displays messages in your n
268
268
 
269
269
  To force a specific language, set `GITPR_LANG=pt_br` or `GITPR_LANG=en` in `~/.gitpr/.env`.
270
270
 
271
- > 📖 **Full developer guide:** [docs/i18n_explanation.md](https://github.com/natanfiuza/gitpr/blob/main/docs/i18n_explanation.md) — architecture, usage patterns, circular import precautions, and how to add new languages.
271
+ > 📖 **Full developer guide:** [docs/i18n_explanation.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/i18n_explanation.md) — architecture, usage patterns, circular import precautions, and how to add new languages.
272
272
 
273
273
  ## 🔄 Hook Scripts Versioning & Auto-Sync
274
274
 
@@ -326,7 +326,7 @@ gitpr-mcp --install auto # Auto-detect and install for all found
326
326
  The installer creates the config directory if needed, merges with any existing
327
327
  config (never overwrites other servers), and is safe to run multiple times.
328
328
 
329
- > Manual setup is also supported — see [docs/mcp-integration.md](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-integration.md)
329
+ > Manual setup is also supported — see [docs/mcp-integration.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-integration.md)
330
330
  > for the JSON config format for each editor.
331
331
 
332
332
  Once configured, use natural language in your editor's AI chat:
@@ -370,17 +370,17 @@ gitpr-mcp --tool analyze_blame --tool-args '{"file_path":"src/main.py","start_li
370
370
 
371
371
  This is useful for scripting, CI/CD pipelines, and one-off queries where you don't need a persistent MCP server. JSON output goes to stdout; all diagnostic messages go to stderr — safe for piping.
372
372
 
373
- 📖 **Full documentation:** [docs/mcp-integration.md](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-integration.md) — available in 5 languages (EN, PT-BR, PT-PT, ES, FR).
373
+ 📖 **Full documentation:** [docs/mcp-integration.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-integration.md) — available in 5 languages (EN, PT-BR, PT-PT, ES, FR).
374
374
 
375
- > 💬 **MCP Prompts** — GitPR also exposes 7 pre-defined message templates (prompts) for common flows like "Review PR", "Generate Commit Message", and "Create Issue from Diff". See the [MCP Prompts guide](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-prompts.md) for the full list.
375
+ > 💬 **MCP Prompts** — GitPR also exposes 7 pre-defined message templates (prompts) for common flows like "Review PR", "Generate Commit Message", and "Create Issue from Diff". See the [MCP Prompts guide](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-prompts.md) for the full list.
376
376
 
377
377
  ## 🎯 Smart Excludes (Token Optimization)
378
378
 
379
379
  GitPR automatically removes non-code files from your `git diff` before sending them to the AI — reducing token consumption and API costs with **zero configuration** required.
380
380
 
381
381
  **Two layers of exclusions:**
382
- - **Lockfiles & generated files:** `package-lock.json`, `*.min.js`, `*.map`, `*.pyc`, `*.svg`, and 30+ more patterns defined in [`gitpr.smart-excludes.json`](https://github.com/natanfiuza/gitpr/blob/main/templates/gitpr.smart-excludes.json)
383
- - **Documentation prose:** `*.md`, `*.txt`, `*.rst`, `*.adoc`, `*.tex`, and 20+ more extensions defined in [`gitpr.docs-smart-excludes.json`](https://github.com/natanfiuza/gitpr/blob/main/templates/gitpr.docs-smart-excludes.json)
382
+ - **Lockfiles & generated files:** `package-lock.json`, `*.min.js`, `*.map`, `*.pyc`, `*.svg`, and 30+ more patterns defined in [`gitpr.smart-excludes.json`](https://github.com/gitpr-cli/gitpr.git/blob/main/templates/gitpr.smart-excludes.json)
383
+ - **Documentation prose:** `*.md`, `*.txt`, `*.rst`, `*.adoc`, `*.tex`, and 20+ more extensions defined in [`gitpr.docs-smart-excludes.json`](https://github.com/gitpr-cli/gitpr.git/blob/main/templates/gitpr.docs-smart-excludes.json)
384
384
 
385
385
  **Documentation tracking:** Even though documentation content is excluded from the diff, GitPR still tells the AI _which_ documentation files changed by injecting their paths as metadata into the system instructions. The AI has full context about doc updates without consuming tokens on their prose.
386
386
 
@@ -406,7 +406,7 @@ GitPR automatically removes non-code files from your `git diff` before sending t
406
406
 
407
407
  Add framework-specific build artifacts, generated folders, or any pattern that only applies to this project. The file is safe to commit — your team gets the same exclusions.
408
408
 
409
- > 📖 **Full documentation:** [docs/smart-excludes.md](https://github.com/natanfiuza/gitpr/blob/main/docs/smart-excludes.md) — available in 5 languages (EN, PT-BR, PT-PT, FR, ES).
409
+ > 📖 **Full documentation:** [docs/smart-excludes.md](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/smart-excludes.md) — available in 5 languages (EN, PT-BR, PT-PT, FR, ES).
410
410
 
411
411
  ## 📁 Output Directory Structure
412
412
 
@@ -434,37 +434,38 @@ If you want to implement GitPR as an automated quality barrier in your team, che
434
434
 
435
435
  ### Chat & Interactive Features
436
436
 
437
- * [**🧠 Interactive Chat (Pair Programming)**](https://github.com/natanfiuza/gitpr/blob/main/docs/understanding_chat_functionality.md) — How to use the AI chat with memory, slash commands, auto-patch, and session export.
437
+ * [**🧠 Interactive Chat (Pair Programming)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/understanding_chat_functionality.md) — How to use the AI chat with memory, slash commands, auto-patch, and session export.
438
438
 
439
439
  ### DevOps & CI/CD
440
440
 
441
- * [**Local Git Hooks (Shift-Left)**](https://github.com/natanfiuza/gitpr/blob/main/docs/git-hooks-locais.md) — How to use `gitpr --installhooks` to create guardrails on the developer's machine and use AI to automatically write commit messages.
442
- * [**Hook Scripts Versioning & Auto-Sync**](https://github.com/natanfiuza/gitpr/blob/main/docs/hooks-versioning.md) — How the automatic versioning and i18n-aware synchronization system keeps your Git hooks up to date.
443
- * [**Customizable Static Linter**](https://github.com/natanfiuza/gitpr/blob/main/docs/linter-regras-customizadas.md) — How to create validation rules in `.gitpr.linter.yml`, bridge external linters (ESLint, PHPCS, Stylelint), and generate Markdown reports for CI/CD and pre-commit hooks.
444
- * [**CI/CD Integration (GitHub Actions)**](https://github.com/natanfiuza/gitpr/blob/main/docs/github-ci-linter.md) — How to run GitPR in the pipeline to block "Merge" of PRs with violations.
441
+ * [**Local Git Hooks (Shift-Left)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/git-hooks-locais.md) — How to use `gitpr --installhooks` to create guardrails on the developer's machine and use AI to automatically write commit messages.
442
+ * [**Hook Scripts Versioning & Auto-Sync**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/hooks-versioning.md) — How the automatic versioning and i18n-aware synchronization system keeps your Git hooks up to date.
443
+ * [**Customizable Static Linter**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/linter-regras-customizadas.md) — How to create validation rules in `.gitpr.linter.yml`, bridge external linters (ESLint, PHPCS, Stylelint), and generate Markdown reports for CI/CD and pre-commit hooks.
444
+ * [**CI/CD Integration (GitHub Actions)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/github-ci-linter.md) — How to run GitPR in the pipeline to block "Merge" of PRs with violations.
445
445
 
446
446
  ### Core Features
447
447
 
448
- * [**Pull Request (Default Mode)**](https://github.com/natanfiuza/gitpr/blob/main/docs/pr-descricao-padrao.md) — Complete flow for generating PR descriptions without flags.
449
- * [**Pull Request Publisher TUI**](https://github.com/natanfiuza/gitpr/blob/main/docs/pull-request-publication.md) — How to review and publish Pull Requests directly to GitHub from the terminal.
450
- * [**AI Code Review**](https://github.com/natanfiuza/gitpr/blob/main/docs/code-review-ia.md) — Guide to review modes (`--review`, `--fullreview`) and file auditing (`--input`).
451
- * [**AI Commit Messages**](https://github.com/natanfiuza/gitpr/blob/main/docs/commit-message-ia.md) — How to generate messages in the Conventional Commits standard and integrate with Git Hooks.
452
- * [**Issue Generation and TUI Interface**](https://github.com/natanfiuza/gitpr/blob/main/docs/issue-tui-help.md) — How to use the terminal graphical interface (TUI) and the 3 context engines to manage structured Issues.
453
- * [**Code Archaeologist (Git Blame)**](https://github.com/natanfiuza/gitpr/blob/main/docs/blame-arqueologo.md) — How to trace the origin of business rules with `git blame` and AI.
454
- * [**Skills and Templates System**](https://github.com/natanfiuza/gitpr/blob/main/docs/skill-template.md) — How to customize AI behavior with `.gitpr.*.md` files.
448
+ * [**Pull Request (Default Mode)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/pr-descricao-padrao.md) — Complete flow for generating PR descriptions without flags.
449
+ * [**Pull Request Publisher TUI**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/pull-request-publication.md) — How to review and publish Pull Requests directly to GitHub from the terminal.
450
+ * [**AI Code Review**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/code-review-ia.md) — Guide to review modes (`--review`, `--fullreview`) and file auditing (`--input`).
451
+ * [**AI Commit Messages**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/commit-message-ia.md) — How to generate messages in the Conventional Commits standard and integrate with Git Hooks.
452
+ * [**Issue Generation and TUI Interface**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/issue-tui-help.md) — How to use the terminal graphical interface (TUI) and the 3 context engines to manage structured Issues.
453
+ * [**Code Archaeologist (Git Blame)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/blame-arqueologo.md) — How to trace the origin of business rules with `git blame` and AI.
454
+ * [**Skills and Templates System**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/skill-template.md) — How to customize AI behavior with `.gitpr.*.md` files.
455
+ * [**Release Notes & Changelog (gitpr release)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/release-notes.md) — How the `gitpr release` subcommand generates the changelog / release notes of a repository, suggests the next semantic version and publishes releases on the forge.
455
456
 
456
457
  ### Configuration & Infrastructure
457
458
 
458
- * [**Install Wizard**](https://github.com/natanfiuza/gitpr/blob/main/docs/install-wizard.md) — Step-by-step guided setup for configuring GitPR in a new project.
459
- * [**AI Providers**](https://github.com/natanfiuza/gitpr/blob/main/docs/providers-ia.md) — Configuration and selection between Google Gemini, DeepSeek, and Ollama.
460
- * [**Auto-Updater**](https://github.com/natanfiuza/gitpr/blob/main/docs/auto-update.md) — How GitPR's automatic update (hot-swap) works.
461
- * [**Architecture**](https://github.com/natanfiuza/gitpr/blob/main/docs/ARCHITECTURE.md) — Project architecture, design patterns, and technical stack overview.
462
- * [**GitHub Token (PAT) Integration and Security**](https://github.com/natanfiuza/gitpr/blob/main/docs/github-pat-integration.md) — Understand how GitPR creates issues directly in the repository with authentication.
463
- * [**Internationalization (i18n)**](https://github.com/natanfiuza/gitpr/blob/main/docs/i18n_explanation.md) — Architecture, usage patterns, and how to add new languages.
464
- * [**MCP Integration**](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-integration.md) — Connect GitPR to VS Code, Cursor, and Claude Desktop via Model Context Protocol.
465
- * [**MCP Prompts**](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-prompts.md) — Pre-built message templates (7 prompts, 35 language variants) for common GitPR workflows in your editor's AI chat.
466
- * [**MCP Tool Annotations**](https://github.com/natanfiuza/gitpr/blob/main/docs/mcp-annotations.md) — IDE integration hints (`readOnlyHint`, `destructiveHint`) for smarter UI behavior and safer tool execution.
467
- * [**Metrics & Telemetry**](https://github.com/natanfiuza/gitpr/blob/main/docs/metricas-telemetria.md) — Local offline analytics for team usage metrics, exportable CSV reports, and interactive TUI dashboard.
459
+ * [**Install Wizard**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/install-wizard.md) — Step-by-step guided setup for configuring GitPR in a new project.
460
+ * [**AI Providers**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/providers-ia.md) — Configuration and selection between Google Gemini, DeepSeek, and Ollama.
461
+ * [**Auto-Updater**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/auto-update.md) — How GitPR's automatic update (hot-swap) works.
462
+ * [**Architecture**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/ARCHITECTURE.md) — Project architecture, design patterns, and technical stack overview.
463
+ * [**GitHub Token (PAT) Integration and Security**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/github-pat-integration.md) — Understand how GitPR creates issues directly in the repository with authentication.
464
+ * [**Internationalization (i18n)**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/i18n_explanation.md) — Architecture, usage patterns, and how to add new languages.
465
+ * [**MCP Integration**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-integration.md) — Connect GitPR to VS Code, Cursor, and Claude Desktop via Model Context Protocol.
466
+ * [**MCP Prompts**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-prompts.md) — Pre-built message templates (7 prompts, 35 language variants) for common GitPR workflows in your editor's AI chat.
467
+ * [**MCP Tool Annotations**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/mcp-annotations.md) — IDE integration hints (`readOnlyHint`, `destructiveHint`) for smarter UI behavior and safer tool execution.
468
+ * [**Metrics & Telemetry**](https://github.com/gitpr-cli/gitpr.git/blob/main/docs/metricas-telemetria.md) — Local offline analytics for team usage metrics, exportable CSV reports, and interactive TUI dashboard.
468
469
 
469
470
  ## ⚡ Local Cache System (Quota Savings)
470
471