You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**CVE details** — (when a CVE ID is present) CVSS v3/v4 scores colored by severity, published/updated dates, title, English description, and deduplicated references fetched in parallel from the NVD database
|`-i, --issue <issueId>`| Show full details for a specific issue introduced by this PR (use the `#id` shown on issue cards) |
241
+
|`-d, --diff`| Show the git diff annotated with coverage hits/misses and new issues |
242
+
243
+
Default view displays:
244
+
-**About** — PR title, status, author, branches, head commit
245
+
-**Analysis** — up-to-standards status, issues, coverage, complexity, duplication with gate pass/fail details; "To check" hints when a gate is configured but the metric has no data yet
246
+
-**Issues** — all issues introduced by the PR (confirmed + potential), sorted by severity, with file path, line content, and false-positive warnings
247
+
-**Diff Coverage Summary** — per-file diff coverage percentage and compressed uncovered line ranges (when coverage data is available)
With `--issue <id>`: shows full detail for that issue (code context + pattern docs), same format as the `issue` command.
251
+
252
+
With `--diff`: shows the annotated git diff — only blocks containing covered/uncovered lines or new issues, with 3 lines of context around each. Coverage is shown with ✓ (green, covered) and ✘ (red, uncovered) symbols; issues are annotated inline with severity, category, and message.
@@ -62,6 +62,39 @@ Shows pagination warning if more PRs exist.
62
62
63
63
By category, severity level, and language — sorted descending by count.
64
64
65
+
## Actions
66
+
In all cases, return a success message when the action is completed successfully, otherwise return an error message with the error details provided by the API.
67
+
68
+
### Add repository to Codacy
69
+
- API Endpoint: [`addRepository`](https://api.codacy.com/api/api-docs#addrepository)
- Add an additional message explaining that the repository will be available after a few minutes (after first cloning and analysis is completed), depending on the size of the repository.
76
+
77
+
### Remove repository from Codacy
78
+
- API Endpoint: [`deleteRepository`](https://api.codacy.com/api/api-docs#deleterepository)
0 commit comments