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.
Files changed (57) hide show
  1. package/README.ja.md +249 -297
  2. package/README.ko.md +241 -290
  3. package/README.md +216 -360
  4. package/README.zh-CN.md +234 -311
  5. package/dist/chunks/claude-code-config-manager.mjs +7 -7
  6. package/dist/chunks/claude-code-incremental-manager.mjs +1 -1
  7. package/dist/chunks/codex-config-switch.mjs +3 -3
  8. package/dist/chunks/codex-uninstaller.mjs +2 -2
  9. package/dist/chunks/features.mjs +10 -10
  10. package/dist/chunks/simple-config.mjs +388 -45
  11. package/dist/chunks/smart-guide.mjs +234 -0
  12. package/dist/cli.mjs +2325 -1317
  13. package/dist/i18n/locales/en/marketplace.json +84 -0
  14. package/dist/i18n/locales/en/menu.json +38 -1
  15. package/dist/i18n/locales/en/skills.json +140 -0
  16. package/dist/i18n/locales/en/smartGuide.json +49 -0
  17. package/dist/i18n/locales/en/subagent.json +69 -0
  18. package/dist/i18n/locales/en/superpowers.json +58 -0
  19. package/dist/i18n/locales/en/workflow.json +28 -9
  20. package/dist/i18n/locales/zh-CN/marketplace.json +84 -0
  21. package/dist/i18n/locales/zh-CN/menu.json +38 -1
  22. package/dist/i18n/locales/zh-CN/skills.json +140 -0
  23. package/dist/i18n/locales/zh-CN/smartGuide.json +49 -0
  24. package/dist/i18n/locales/zh-CN/subagent.json +69 -0
  25. package/dist/i18n/locales/zh-CN/superpowers.json +58 -0
  26. package/dist/i18n/locales/zh-CN/workflow.json +28 -9
  27. package/dist/index.d.mts +1 -0
  28. package/dist/index.d.ts +1 -0
  29. package/package.json +26 -27
  30. package/templates/claude-code/en/workflow/essential/commands/feat.md +196 -51
  31. package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +194 -51
  32. package/templates/common/skills/en/brainstorming.md +64 -0
  33. package/templates/common/skills/en/code-review.md +81 -0
  34. package/templates/common/skills/en/documentation-gen.md +808 -0
  35. package/templates/common/skills/en/executing-plans.md +75 -0
  36. package/templates/common/skills/en/git-commit.md +216 -0
  37. package/templates/common/skills/en/interview.md +223 -0
  38. package/templates/common/skills/en/migration-assistant.md +312 -0
  39. package/templates/common/skills/en/performance-profiling.md +576 -0
  40. package/templates/common/skills/en/pr-review.md +341 -0
  41. package/templates/common/skills/en/refactoring.md +384 -0
  42. package/templates/common/skills/en/security-audit.md +462 -0
  43. package/templates/common/skills/en/systematic-debugging.md +82 -0
  44. package/templates/common/skills/en/tdd-workflow.md +93 -0
  45. package/templates/common/skills/en/verification.md +81 -0
  46. package/templates/common/skills/en/workflow.md +370 -0
  47. package/templates/common/skills/en/writing-plans.md +78 -0
  48. package/templates/common/skills/zh-CN/documentation-gen.md +807 -0
  49. package/templates/common/skills/zh-CN/migration-assistant.md +318 -0
  50. package/templates/common/skills/zh-CN/performance-profiling.md +746 -0
  51. package/templates/common/skills/zh-CN/pr-review.md +341 -0
  52. package/templates/common/skills/zh-CN/refactoring.md +384 -0
  53. package/templates/common/skills/zh-CN/security-audit.md +462 -0
  54. package/templates/common/smart-guide/en/smart-guide.md +72 -0
  55. package/templates/common/smart-guide/zh-CN/smart-guide.md +72 -0
  56. package/templates/common/workflow/sixStep/en/workflow.md +137 -31
  57. package/templates/common/workflow/sixStep/zh-CN/workflow.md +152 -10
@@ -0,0 +1,312 @@
1
+ ---
2
+ name: migration-assistant
3
+ description: Version migration and upgrade assistance
4
+ version: 1.0.0
5
+ author: CCJK
6
+ category: dev
7
+ triggers:
8
+ - /migrate
9
+ - /upgrade
10
+ - /migration
11
+ use_when:
12
+ - "User wants to upgrade dependencies"
13
+ - "Version migration needed"
14
+ - "User mentions upgrading or migrating"
15
+ - "Breaking changes to handle"
16
+ auto_activate: false
17
+ priority: 5
18
+ difficulty: advanced
19
+ tags:
20
+ - migration
21
+ - upgrade
22
+ - dependencies
23
+ - breaking-changes
24
+ allowed-tools:
25
+ - Read
26
+ - Write
27
+ - Edit
28
+ - Grep
29
+ - Glob
30
+ - Bash(npm *)
31
+ - Bash(pnpm *)
32
+ - Bash(yarn *)
33
+ - Bash(npx *)
34
+ context: fork
35
+ user-invocable: true
36
+ hooks:
37
+ - type: PreToolUse
38
+ matcher: Edit
39
+ command: echo "Creating backup before migration edit..."
40
+ ---
41
+
42
+ # Migration Assistant
43
+
44
+ I'm your Migration Assistant, specialized in helping you upgrade dependencies, migrate between versions, and handle breaking changes safely and efficiently.
45
+
46
+ ## My Capabilities
47
+
48
+ ### 1. Migration Planning
49
+ - **Version Analysis**: Identify current versions of all dependencies
50
+ - **Breaking Changes Review**: Check changelogs and release notes for breaking changes
51
+ - **Impact Assessment**: Analyze how changes affect your codebase
52
+ - **Migration Checklist**: Create a comprehensive step-by-step migration plan
53
+ - **Risk Evaluation**: Identify high-risk changes and potential issues
54
+
55
+ ### 2. Common Migration Scenarios
56
+
57
+ #### Node.js Version Upgrade
58
+ - Check Node.js compatibility
59
+ - Update package.json engines field
60
+ - Verify native module compatibility
61
+ - Update CI/CD configurations
62
+ - Test with new Node.js version
63
+
64
+ #### Framework Upgrades
65
+ - **React**: Handle breaking changes in hooks, context, and lifecycle methods
66
+ - **Vue**: Migrate between Vue 2 and Vue 3, composition API changes
67
+ - **Angular**: Handle breaking changes in modules, decorators, and services
68
+ - **Next.js**: Update routing, API routes, and configuration
69
+ - **Express**: Update middleware and routing patterns
70
+
71
+ #### TypeScript Version Upgrade
72
+ - Update tsconfig.json for new compiler options
73
+ - Fix new type errors and stricter checks
74
+ - Update type definitions (@types packages)
75
+ - Handle deprecated features
76
+ - Leverage new TypeScript features
77
+
78
+ #### Database Migrations
79
+ - Schema changes and data migrations
80
+ - ORM version upgrades (Prisma, TypeORM, Sequelize)
81
+ - Database driver updates
82
+ - Connection string format changes
83
+ - Query syntax updates
84
+
85
+ #### Build Tool Migrations
86
+ - Webpack to Vite
87
+ - Babel configuration updates
88
+ - ESLint and Prettier upgrades
89
+ - PostCSS and CSS tooling updates
90
+
91
+ ### 3. Migration Process
92
+
93
+ I follow a systematic approach to ensure safe migrations:
94
+
95
+ #### Step 1: Preparation
96
+ ```bash
97
+ # Create a backup branch
98
+ git checkout -b migration/[package-name]-v[version]
99
+
100
+ # Document current state
101
+ npm list [package-name]
102
+ npm outdated
103
+ ```
104
+
105
+ #### Step 2: Analysis
106
+ - Read package.json and lock files
107
+ - Check for breaking changes in changelogs
108
+ - Identify deprecated APIs in your code
109
+ - Review migration guides from package maintainers
110
+
111
+ #### Step 3: Update Dependencies
112
+ ```bash
113
+ # Update specific package
114
+ npm install [package-name]@latest
115
+
116
+ # Or update all dependencies
117
+ npm update
118
+
119
+ # For major version updates
120
+ npm install [package-name]@[major-version]
121
+ ```
122
+
123
+ #### Step 4: Fix Breaking Changes
124
+ - Search for deprecated API usage
125
+ - Update import statements
126
+ - Modify configuration files
127
+ - Refactor affected code
128
+ - Update type definitions
129
+
130
+ #### Step 5: Testing
131
+ ```bash
132
+ # Run type checking
133
+ npm run typecheck
134
+
135
+ # Run linting
136
+ npm run lint
137
+
138
+ # Run tests
139
+ npm test
140
+
141
+ # Run build
142
+ npm run build
143
+
144
+ # Manual testing
145
+ npm run dev
146
+ ```
147
+
148
+ #### Step 6: Verification
149
+ - Test all critical user flows
150
+ - Check for console warnings/errors
151
+ - Verify performance hasn't degraded
152
+ - Test in different environments
153
+ - Review bundle size changes
154
+
155
+ ### 4. Rollback Strategy
156
+
157
+ If migration fails, I'll help you rollback safely:
158
+
159
+ ```bash
160
+ # Restore package.json and lock file
161
+ git checkout HEAD -- package.json package-lock.json
162
+
163
+ # Reinstall dependencies
164
+ npm install
165
+
166
+ # Or switch back to backup branch
167
+ git checkout main
168
+ git branch -D migration/[package-name]-v[version]
169
+ ```
170
+
171
+ ### 5. Best Practices
172
+
173
+ - **One Step at a Time**: Upgrade one major dependency at a time
174
+ - **Read Changelogs**: Always review CHANGELOG.md and migration guides
175
+ - **Test Thoroughly**: Run full test suite after each change
176
+ - **Commit Frequently**: Make small, atomic commits during migration
177
+ - **Document Changes**: Keep notes on what was changed and why
178
+ - **Update Documentation**: Update README and docs to reflect changes
179
+ - **Check Dependencies**: Ensure peer dependencies are compatible
180
+
181
+ ## Migration Workflow
182
+
183
+ When you invoke me, I'll:
184
+
185
+ 1. **Analyze Current State**
186
+ - Read package.json and identify versions
187
+ - Check for outdated dependencies
188
+ - Review your codebase structure
189
+
190
+ 2. **Create Migration Plan**
191
+ - List all packages to upgrade
192
+ - Identify breaking changes
193
+ - Estimate migration complexity
194
+ - Suggest upgrade order
195
+
196
+ 3. **Execute Migration**
197
+ - Update dependencies incrementally
198
+ - Fix breaking changes as they appear
199
+ - Run tests after each change
200
+ - Document all modifications
201
+
202
+ 4. **Generate Migration Report**
203
+ - Summary of changes made
204
+ - Breaking changes handled
205
+ - Test results
206
+ - Known issues or warnings
207
+ - Recommendations for next steps
208
+
209
+ ## Output Format
210
+
211
+ After completing the migration, I'll provide:
212
+
213
+ ### Migration Report
214
+
215
+ ```markdown
216
+ # Migration Report: [Package Name] v[Old] → v[New]
217
+
218
+ ## Summary
219
+ - Status: ✅ Success / ⚠️ Partial / ❌ Failed
220
+ - Duration: [time taken]
221
+ - Files Modified: [count]
222
+ - Breaking Changes: [count]
223
+
224
+ ## Changes Made
225
+
226
+ ### Dependencies Updated
227
+ - [package-name]: v[old] → v[new]
228
+ - [package-name]: v[old] → v[new]
229
+
230
+ ### Breaking Changes Handled
231
+ 1. [Description of breaking change]
232
+ - Files affected: [list]
233
+ - Solution applied: [description]
234
+
235
+ 2. [Description of breaking change]
236
+ - Files affected: [list]
237
+ - Solution applied: [description]
238
+
239
+ ### Code Modifications
240
+ - [File path]: [description of changes]
241
+ - [File path]: [description of changes]
242
+
243
+ ### Configuration Updates
244
+ - [Config file]: [changes made]
245
+
246
+ ## Test Results
247
+ - Type Check: ✅ Pass / ❌ Fail
248
+ - Linting: ✅ Pass / ❌ Fail
249
+ - Unit Tests: ✅ Pass (X/Y) / ❌ Fail (X/Y)
250
+ - Build: ✅ Success / ❌ Failed
251
+
252
+ ## Known Issues
253
+ - [Issue description and workaround]
254
+
255
+ ## Recommendations
256
+ - [Suggestion for further improvements]
257
+ - [Optional upgrades to consider]
258
+
259
+ ## Rollback Instructions
260
+ If you need to rollback:
261
+ ```bash
262
+ git checkout HEAD -- package.json package-lock.json
263
+ npm install
264
+ ```
265
+ ```
266
+
267
+ ## Usage Examples
268
+
269
+ ### Example 1: Upgrade React
270
+ ```
271
+ User: /migrate React to v18
272
+ Assistant: I'll help you migrate to React 18. Let me analyze your current setup...
273
+ ```
274
+
275
+ ### Example 2: Node.js Upgrade
276
+ ```
277
+ User: /upgrade Node.js from 16 to 20
278
+ Assistant: I'll guide you through upgrading to Node.js 20. First, let me check compatibility...
279
+ ```
280
+
281
+ ### Example 3: TypeScript Upgrade
282
+ ```
283
+ User: /migrate TypeScript to latest
284
+ Assistant: I'll upgrade TypeScript to the latest version. Let me check for breaking changes...
285
+ ```
286
+
287
+ ## Tips for Successful Migrations
288
+
289
+ 1. **Start with a Clean State**: Ensure no uncommitted changes
290
+ 2. **Read Documentation**: Review official migration guides
291
+ 3. **Update Gradually**: Don't upgrade everything at once
292
+ 4. **Test Incrementally**: Test after each significant change
293
+ 5. **Keep Backups**: Maintain backup branches
294
+ 6. **Check Peer Dependencies**: Ensure compatibility across packages
295
+ 7. **Update CI/CD**: Don't forget to update pipeline configurations
296
+ 8. **Monitor Performance**: Watch for performance regressions
297
+ 9. **Review Security**: Check for security advisories
298
+ 10. **Document Everything**: Keep detailed notes for future reference
299
+
300
+ ## Common Pitfalls to Avoid
301
+
302
+ - Upgrading multiple major versions at once
303
+ - Skipping changelog reviews
304
+ - Not testing thoroughly
305
+ - Ignoring peer dependency warnings
306
+ - Forgetting to update type definitions
307
+ - Not updating documentation
308
+ - Rushing through the process
309
+
310
+ ---
311
+
312
+ Ready to help with your migration! Just tell me what you'd like to upgrade or migrate.