ccjk 1.4.0 → 2.0.0
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.ja.md +249 -297
- package/README.ko.md +241 -290
- package/README.md +216 -360
- package/README.zh-CN.md +234 -311
- package/dist/chunks/claude-code-config-manager.mjs +7 -7
- package/dist/chunks/claude-code-incremental-manager.mjs +1 -1
- package/dist/chunks/codex-config-switch.mjs +3 -3
- package/dist/chunks/codex-uninstaller.mjs +2 -2
- package/dist/chunks/features.mjs +10 -10
- package/dist/chunks/simple-config.mjs +388 -45
- package/dist/chunks/smart-guide.mjs +234 -0
- package/dist/cli.mjs +2325 -1317
- package/dist/i18n/locales/en/marketplace.json +84 -0
- package/dist/i18n/locales/en/menu.json +38 -1
- package/dist/i18n/locales/en/skills.json +140 -0
- package/dist/i18n/locales/en/smartGuide.json +49 -0
- package/dist/i18n/locales/en/subagent.json +69 -0
- package/dist/i18n/locales/en/superpowers.json +58 -0
- package/dist/i18n/locales/en/workflow.json +28 -9
- package/dist/i18n/locales/zh-CN/marketplace.json +84 -0
- package/dist/i18n/locales/zh-CN/menu.json +38 -1
- package/dist/i18n/locales/zh-CN/skills.json +140 -0
- package/dist/i18n/locales/zh-CN/smartGuide.json +49 -0
- package/dist/i18n/locales/zh-CN/subagent.json +69 -0
- package/dist/i18n/locales/zh-CN/superpowers.json +58 -0
- package/dist/i18n/locales/zh-CN/workflow.json +28 -9
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +26 -27
- package/templates/claude-code/en/workflow/essential/commands/feat.md +196 -51
- package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +194 -51
- package/templates/common/skills/en/brainstorming.md +64 -0
- package/templates/common/skills/en/code-review.md +81 -0
- package/templates/common/skills/en/documentation-gen.md +808 -0
- package/templates/common/skills/en/executing-plans.md +75 -0
- package/templates/common/skills/en/git-commit.md +216 -0
- package/templates/common/skills/en/interview.md +223 -0
- package/templates/common/skills/en/migration-assistant.md +312 -0
- package/templates/common/skills/en/performance-profiling.md +576 -0
- package/templates/common/skills/en/pr-review.md +341 -0
- package/templates/common/skills/en/refactoring.md +384 -0
- package/templates/common/skills/en/security-audit.md +462 -0
- package/templates/common/skills/en/systematic-debugging.md +82 -0
- package/templates/common/skills/en/tdd-workflow.md +93 -0
- package/templates/common/skills/en/verification.md +81 -0
- package/templates/common/skills/en/workflow.md +370 -0
- package/templates/common/skills/en/writing-plans.md +78 -0
- package/templates/common/skills/zh-CN/documentation-gen.md +807 -0
- package/templates/common/skills/zh-CN/migration-assistant.md +318 -0
- package/templates/common/skills/zh-CN/performance-profiling.md +746 -0
- package/templates/common/skills/zh-CN/pr-review.md +341 -0
- package/templates/common/skills/zh-CN/refactoring.md +384 -0
- package/templates/common/skills/zh-CN/security-audit.md +462 -0
- package/templates/common/smart-guide/en/smart-guide.md +72 -0
- package/templates/common/smart-guide/zh-CN/smart-guide.md +72 -0
- package/templates/common/workflow/sixStep/en/workflow.md +137 -31
- package/templates/common/workflow/sixStep/zh-CN/workflow.md +152 -10
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-review
|
|
3
|
+
description: Two-stage code review - spec compliance and code quality
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
author: CCJK
|
|
6
|
+
category: review
|
|
7
|
+
triggers:
|
|
8
|
+
- /review
|
|
9
|
+
- /cr
|
|
10
|
+
- /code-review
|
|
11
|
+
use_when:
|
|
12
|
+
- "User wants code review"
|
|
13
|
+
- "PR ready for review"
|
|
14
|
+
- "User mentions reviewing code"
|
|
15
|
+
- "Before merging changes"
|
|
16
|
+
auto_activate: true
|
|
17
|
+
priority: 7
|
|
18
|
+
difficulty: intermediate
|
|
19
|
+
tags:
|
|
20
|
+
- review
|
|
21
|
+
- quality
|
|
22
|
+
- pr
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# Code Review
|
|
26
|
+
|
|
27
|
+
## Context
|
|
28
|
+
$ARGUMENTS
|
|
29
|
+
|
|
30
|
+
## Instructions
|
|
31
|
+
|
|
32
|
+
Perform a two-stage code review:
|
|
33
|
+
|
|
34
|
+
### Stage 1: Spec Compliance Review
|
|
35
|
+
|
|
36
|
+
Check if the implementation matches requirements:
|
|
37
|
+
|
|
38
|
+
- [ ] All requirements implemented
|
|
39
|
+
- [ ] Acceptance criteria met
|
|
40
|
+
- [ ] No scope creep (extra unrequested features)
|
|
41
|
+
- [ ] Edge cases from spec handled
|
|
42
|
+
|
|
43
|
+
### Stage 2: Code Quality Review
|
|
44
|
+
|
|
45
|
+
Check code quality aspects:
|
|
46
|
+
|
|
47
|
+
- [ ] **Correctness**: Logic is correct
|
|
48
|
+
- [ ] **Readability**: Code is clear and understandable
|
|
49
|
+
- [ ] **Maintainability**: Easy to modify in future
|
|
50
|
+
- [ ] **Performance**: No obvious performance issues
|
|
51
|
+
- [ ] **Security**: No security vulnerabilities
|
|
52
|
+
- [ ] **Testing**: Adequate test coverage
|
|
53
|
+
|
|
54
|
+
### Review Output Format
|
|
55
|
+
|
|
56
|
+
```markdown
|
|
57
|
+
## Code Review: [PR/Feature Name]
|
|
58
|
+
|
|
59
|
+
### Stage 1: Spec Compliance
|
|
60
|
+
- ✅ Requirement 1: Implemented correctly
|
|
61
|
+
- ⚠️ Requirement 2: Partially implemented - [details]
|
|
62
|
+
- ❌ Requirement 3: Missing - [details]
|
|
63
|
+
|
|
64
|
+
### Stage 2: Code Quality
|
|
65
|
+
|
|
66
|
+
#### Strengths
|
|
67
|
+
- Good separation of concerns
|
|
68
|
+
- Clear naming conventions
|
|
69
|
+
|
|
70
|
+
#### Issues Found
|
|
71
|
+
1. **[Severity]** [File:Line] - [Description]
|
|
72
|
+
- Suggestion: [How to fix]
|
|
73
|
+
|
|
74
|
+
2. **[Severity]** [File:Line] - [Description]
|
|
75
|
+
- Suggestion: [How to fix]
|
|
76
|
+
|
|
77
|
+
### Verdict
|
|
78
|
+
- [ ] Approved
|
|
79
|
+
- [ ] Approved with minor changes
|
|
80
|
+
- [ ] Changes requested
|
|
81
|
+
```
|