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
Replace alternating prose/code/prose/code pattern with grouped, commented
code blocks. Reduces 18 code blocks to 12 across the What you can do
section. Also removes italics from skill prompt examples.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/codacy-cloud-cli/index.md
+27-48Lines changed: 27 additions & 48 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,9 +53,9 @@ claude plugin install codacy-skills@codacy
53
53
54
54
Once installed, you can ask Claude things like:
55
55
56
-
-*"Show me the critical security findings in my org"*
57
-
-*"What issues were introduced in PR #42?"*
58
-
-*"Ignore all false positives in the last pull request"*
56
+
- "Show me the critical security findings in my org"
57
+
- "What issues were introduced in PR #42?"
58
+
- "Ignore all false positives in the last pull request"
59
59
60
60
## What you can do
61
61
@@ -71,33 +71,31 @@ Use `--output json` on any command to get machine-readable output for scripting.
71
71
72
72
### Manage your repositories
73
73
74
-
List the repositories in an organization and see their analysis status:
75
-
76
74
```bash
75
+
# List repositories in an organization
77
76
codacy repositories gh my-org
78
-
```
79
-
80
-
Get a full overview of a specific repository (analysis status, quality metrics, and recent activity):
81
77
82
-
```bash
78
+
# Get a full overview of a specific repository
83
79
codacy repository gh my-org my-repo
84
80
```
85
81
86
82
You can also add or remove repositories, follow/unfollow them, link coding standards, and request reanalysis. Use flags like `--add`, `--remove`, and `--reanalyze` on the same command.
87
83
88
84
### Review code issues
89
85
90
-
List issues in a repository, with optional filters for severity, category, tool, author, and branch:
86
+
List and filter issues by severity, category, tool, author, or branch:
0 commit comments