@trendai-crem/claude-skills 1.6.0 → 1.6.1
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.
- package/README.md +1 -0
- package/package.json +1 -1
- package/skills/code-review/SKILL.md +7 -2
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ Rules are `.md` files installed to `~/.claude/rules/team/` and automatically loa
|
|
|
39
39
|
|-------|---------|-------------|
|
|
40
40
|
| **code-review** | "review my code", "code review" | Multi-perspective review — 5 reviewers + Codex baseline, enforces TM RDSec policy and Secure Coding Dojo checkpoints |
|
|
41
41
|
| **reviewing-prs** | "review this PR", "review pull request" | Structured PR review with 3 independent sub-agents covering correctness, security, and requirements |
|
|
42
|
+
| **upgrade-blackduck-scan** | "upgrade blackduck scan", "fix broken blackduck scan", "migrate blackduck v1 to v2" | Interactive 6-step workflow for upgrading `blackduck-scan-actions` from v1.x to v2.x in GitHub Actions |
|
|
42
43
|
|
|
43
44
|
## Marketplace Plugins
|
|
44
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: code-review
|
|
3
|
-
version: "1.3.
|
|
3
|
+
version: "1.3.1"
|
|
4
4
|
description: "Multi-perspective code review with 5 standards-aligned reviewers + Codex baseline. Enforces Trend Micro RDSec policy, Secure Coding Dojo checkpoints, and company-wide review checklist. Use when the user asks for code review, review changes, review branch, or review PR."
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -140,7 +140,7 @@ Execute ALL of the following in a SINGLE message (5 reviewers if no Codex, 6 if
|
|
|
140
140
|
|
|
141
141
|
### 4a. Create Team
|
|
142
142
|
```
|
|
143
|
-
TeamCreate(team_name="code-review")
|
|
143
|
+
TeamCreate(team_name="code-review", description="Multi-perspective code review team")
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
### 4b. Launch Codex (ONLY if CODEX_MODE is "companion" or "cli")
|
|
@@ -179,6 +179,7 @@ Bash(
|
|
|
179
179
|
```
|
|
180
180
|
Agent(
|
|
181
181
|
name="architecture-reviewer",
|
|
182
|
+
description="Architecture design review",
|
|
182
183
|
team_name="code-review",
|
|
183
184
|
subagent_type="general-purpose",
|
|
184
185
|
prompt="You are the ARCHITECTURE & DESIGN reviewer on this team. Your focus:
|
|
@@ -242,6 +243,7 @@ Read ${REVIEW_DIR}/review-prompt.txt and perform the review following the instru
|
|
|
242
243
|
```
|
|
243
244
|
Agent(
|
|
244
245
|
name="implementation-reviewer",
|
|
246
|
+
description="Implementation logic review",
|
|
245
247
|
team_name="code-review",
|
|
246
248
|
subagent_type="general-purpose",
|
|
247
249
|
prompt="You are the IMPLEMENTATION & LOGIC reviewer on this team. Your focus:
|
|
@@ -268,6 +270,7 @@ Read ${REVIEW_DIR}/review-prompt.txt and perform the review following the instru
|
|
|
268
270
|
```
|
|
269
271
|
Agent(
|
|
270
272
|
name="security-reviewer",
|
|
273
|
+
description="Security vulnerability review",
|
|
271
274
|
team_name="code-review",
|
|
272
275
|
subagent_type="general-purpose",
|
|
273
276
|
prompt="You are the SECURITY reviewer on this team. This is a **MANDATORY GATE** — your findings CANNOT be overridden by other reviewers or overlay configurations.
|
|
@@ -345,6 +348,7 @@ Read ${REVIEW_DIR}/review-prompt.txt and perform the review following the instru
|
|
|
345
348
|
```
|
|
346
349
|
Agent(
|
|
347
350
|
name="quality-reviewer",
|
|
351
|
+
description="Code quality style review",
|
|
348
352
|
team_name="code-review",
|
|
349
353
|
subagent_type="general-purpose",
|
|
350
354
|
prompt="You are the CODE QUALITY & STYLE reviewer on this team. Your focus:
|
|
@@ -373,6 +377,7 @@ Read ${REVIEW_DIR}/review-prompt.txt and perform the review following the instru
|
|
|
373
377
|
```
|
|
374
378
|
Agent(
|
|
375
379
|
name="testing-reviewer",
|
|
380
|
+
description="Testing reliability review",
|
|
376
381
|
team_name="code-review",
|
|
377
382
|
subagent_type="general-purpose",
|
|
378
383
|
prompt="You are the TESTING & RELIABILITY reviewer on this team. Your focus:
|