worclaude 1.6.2 → 1.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worclaude",
3
- "version": "1.6.2",
3
+ "version": "1.7.0",
4
4
  "description": "CLI tool that scaffolds a comprehensive Claude Code workflow into any project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -170,6 +170,7 @@ export const COMMAND_FILES = [
170
170
  'setup',
171
171
  'sync',
172
172
  'conflict-resolver',
173
+ 'review-changes',
173
174
  ];
174
175
 
175
176
  export const UNIVERSAL_SKILLS = [
@@ -0,0 +1,20 @@
1
+ Review changed code for reuse, quality, and efficiency.
2
+
3
+ CRITICAL: This is a READ-ONLY review. You MUST NOT edit any files.
4
+ You MUST NOT make any commits. You MUST NOT stage changes.
5
+ Only analyze and report.
6
+
7
+ 1. Read recent changes (git diff HEAD~1 or staged changes)
8
+ 2. Check for:
9
+ - Duplicated code or missed reuse opportunities
10
+ - Unnecessary complexity or abstraction
11
+ - Inconsistency with project patterns
12
+ - CLAUDE.md compliance issues
13
+ 3. Report findings as a prioritized table:
14
+
15
+ | Finding | Category | Action |
16
+ |---------|----------|--------|
17
+ | [what] | [type] | Fix / Skip — [reason] |
18
+
19
+ The user will decide which findings to act on and apply fixes themselves.
20
+ Do NOT apply any fixes. Do NOT touch any files. REPORT ONLY.