ccjk 1.5.0 → 2.0.2

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 (56) hide show
  1. package/README.ja.md +249 -297
  2. package/README.ko.md +241 -290
  3. package/README.md +222 -364
  4. package/README.zh-CN.md +553 -295
  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-provider-manager.mjs +1 -1
  9. package/dist/chunks/codex-uninstaller.mjs +2 -2
  10. package/dist/chunks/commands.mjs +1 -1
  11. package/dist/chunks/features.mjs +10 -10
  12. package/dist/chunks/simple-config.mjs +321 -389
  13. package/dist/chunks/smart-guide.mjs +234 -0
  14. package/dist/cli.mjs +1795 -433
  15. package/dist/i18n/locales/en/configuration.json +12 -1
  16. package/dist/i18n/locales/en/marketplace.json +84 -0
  17. package/dist/i18n/locales/en/menu.json +38 -1
  18. package/dist/i18n/locales/en/skills.json +140 -0
  19. package/dist/i18n/locales/en/smartGuide.json +49 -0
  20. package/dist/i18n/locales/en/subagent.json +69 -0
  21. package/dist/i18n/locales/en/superpowers.json +58 -0
  22. package/dist/i18n/locales/zh-CN/configuration.json +12 -1
  23. package/dist/i18n/locales/zh-CN/marketplace.json +84 -0
  24. package/dist/i18n/locales/zh-CN/menu.json +38 -1
  25. package/dist/i18n/locales/zh-CN/skills.json +140 -0
  26. package/dist/i18n/locales/zh-CN/smartGuide.json +49 -0
  27. package/dist/i18n/locales/zh-CN/subagent.json +69 -0
  28. package/dist/i18n/locales/zh-CN/superpowers.json +58 -0
  29. package/dist/index.d.mts +1 -0
  30. package/dist/index.d.ts +1 -0
  31. package/dist/index.mjs +366 -7
  32. package/package.json +26 -27
  33. package/templates/common/skills/en/brainstorming.md +64 -0
  34. package/templates/common/skills/en/code-review.md +81 -0
  35. package/templates/common/skills/en/documentation-gen.md +808 -0
  36. package/templates/common/skills/en/executing-plans.md +75 -0
  37. package/templates/common/skills/en/git-commit.md +216 -0
  38. package/templates/common/skills/en/interview.md +223 -0
  39. package/templates/common/skills/en/migration-assistant.md +312 -0
  40. package/templates/common/skills/en/performance-profiling.md +576 -0
  41. package/templates/common/skills/en/pr-review.md +341 -0
  42. package/templates/common/skills/en/refactoring.md +384 -0
  43. package/templates/common/skills/en/security-audit.md +462 -0
  44. package/templates/common/skills/en/systematic-debugging.md +82 -0
  45. package/templates/common/skills/en/tdd-workflow.md +93 -0
  46. package/templates/common/skills/en/verification.md +81 -0
  47. package/templates/common/skills/en/workflow.md +370 -0
  48. package/templates/common/skills/en/writing-plans.md +78 -0
  49. package/templates/common/skills/zh-CN/documentation-gen.md +807 -0
  50. package/templates/common/skills/zh-CN/migration-assistant.md +318 -0
  51. package/templates/common/skills/zh-CN/performance-profiling.md +746 -0
  52. package/templates/common/skills/zh-CN/pr-review.md +341 -0
  53. package/templates/common/skills/zh-CN/refactoring.md +384 -0
  54. package/templates/common/skills/zh-CN/security-audit.md +462 -0
  55. package/templates/common/smart-guide/en/smart-guide.md +72 -0
  56. package/templates/common/smart-guide/zh-CN/smart-guide.md +72 -0
@@ -71,5 +71,16 @@
71
71
  "codexModelOptions.gpt5": "GPT-5 - General powerful model, suitable for complex tasks",
72
72
  "codexModelOptions.gpt5Codex": "GPT-5-Codex - Code-optimized model, recommended for programming tasks",
73
73
  "codexModelOptions.custom": "Custom - Specify custom model names",
74
- "windowsMcpConfigFixed": "Windows MCP configuration fixed"
74
+ "windowsMcpConfigFixed": "Windows MCP configuration fixed",
75
+ "setupCompleteTitle": "✅ CCJK Configuration Complete!",
76
+ "nextSteps": "🎯 Next Steps:",
77
+ "guidanceStep1": "1. Open Claude Code and use number shortcuts:",
78
+ "guidanceStep1Detail": "1 = Smart Commit 2 = Code Review 3 = Write Tests",
79
+ "guidanceStep1Detail2": "4 = Plan Feature 5 = Debug Issue 6 = Brainstorm",
80
+ "guidanceStep2": "2. Or use workflow commands:",
81
+ "guidanceStep2Example": "/ccjk:workflow implement user login feature",
82
+ "guidanceStep3": "3. View all features:",
83
+ "guidanceStep3Command": "npx ccjk features",
84
+ "guidanceStep4": "4. Having issues? Run:",
85
+ "guidanceStep4Command": "npx ccjk doctor"
75
86
  }
@@ -0,0 +1,84 @@
1
+ {
2
+ "title": "CCJK Marketplace",
3
+ "description": "Browse and install plugins, skills, and workflows",
4
+
5
+ "searching": "Searching for '{{query}}'...",
6
+ "searchResults": "Found {{count}} packages",
7
+ "noResults": "No packages found",
8
+
9
+ "installing": "Installing {{name}}...",
10
+ "installSuccess": "{{name}} installed successfully",
11
+ "installFailed": "Failed to install {{name}}",
12
+ "installedAt": "Installed at",
13
+
14
+ "uninstalling": "Uninstalling {{name}}...",
15
+ "uninstallSuccess": "{{name}} uninstalled successfully",
16
+ "uninstallFailed": "Failed to uninstall {{name}}",
17
+
18
+ "updating": "Updating {{name}}...",
19
+ "updateSuccess": "{{name}} updated successfully",
20
+ "updateFailed": "Failed to update {{name}}",
21
+ "checkingUpdates": "Checking for updates...",
22
+ "noUpdates": "All packages are up to date",
23
+ "updatesAvailable": "{{count}} updates available",
24
+
25
+ "noInstalled": "No packages installed",
26
+ "installedPackages": "{{count}} packages installed",
27
+ "packageNotFound": "Package '{{name}}' not found",
28
+ "packageNotInstalled": "Package '{{name}}' is not installed",
29
+ "packageHasDependents": "Cannot uninstall '{{name}}' because other packages depend on it: {{dependents}}",
30
+ "incompatibleTool": "Warning: This package may not be compatible with {{tool}}. Supported tools: {{supported}}",
31
+ "updateHint": "Run 'npx ccjk marketplace update <package>' to update a specific package",
32
+ "updateCheckFailed": "Failed to check for updates",
33
+ "listFailed": "Failed to list packages",
34
+ "searchFailed": "Search failed",
35
+ "infoFailed": "Failed to get package info",
36
+
37
+ "commands.search": "Search packages",
38
+ "commands.install": "Install a package",
39
+ "commands.uninstall": "Uninstall a package",
40
+ "commands.update": "Update packages",
41
+ "commands.list": "List installed packages",
42
+ "commands.info": "Show package info",
43
+
44
+ "options.lang": "Language (en or zh-CN)",
45
+ "options.force": "Force operation (skip confirmations)",
46
+ "options.skipVerification": "Skip package verification",
47
+
48
+ "packageInfo.description": "Description",
49
+ "packageInfo.author": "Author",
50
+ "packageInfo.category": "Category",
51
+ "packageInfo.downloads": "Downloads",
52
+ "packageInfo.rating": "Rating",
53
+ "packageInfo.ratings": "ratings",
54
+ "packageInfo.keywords": "Keywords",
55
+ "packageInfo.license": "License",
56
+ "packageInfo.repository": "Repository",
57
+ "packageInfo.version": "Version",
58
+ "packageInfo.verified": "Verified",
59
+
60
+ "categories.plugin": "Plugins",
61
+ "categories.skill": "Skills",
62
+ "categories.workflow": "Workflows",
63
+ "categories.agent": "Agents",
64
+ "categories.mcp-service": "MCP Services",
65
+ "categories.output-style": "Output Styles",
66
+ "categories.bundle": "Bundles",
67
+
68
+ "menu.title": "Marketplace",
69
+ "menu.search": "Search packages",
70
+ "menu.browse": "Browse categories",
71
+ "menu.installed": "Installed packages",
72
+ "menu.updates": "Check for updates",
73
+ "menu.back": "Back to main menu",
74
+
75
+ "prompts.searchQuery": "Enter search query:",
76
+ "prompts.confirmInstall": "Install {{name}}?",
77
+ "prompts.confirmUninstall": "Uninstall {{name}}?",
78
+ "prompts.confirmUpdate": "Update {{name}}?",
79
+
80
+ "errors.networkError": "Network error. Please check your connection.",
81
+ "errors.registryError": "Failed to fetch registry",
82
+ "errors.installError": "Installation error: {{error}}",
83
+ "errors.uninstallError": "Uninstallation error: {{error}}"
84
+ }
@@ -1,4 +1,7 @@
1
1
  {
2
+ "menuSections.ccjkFeatures": "CCJK Features",
3
+ "menuSections.recommendedPlugins": "Recommended Plugins",
4
+ "menuSections.marketplace": "Marketplace",
2
5
  "menuDescriptions.ccrManagement": "Configure Claude Code Router to use multiple AI models",
3
6
  "menuDescriptions.ccusage": "Claude Code usage analysis",
4
7
  "menuDescriptions.changeLanguage": "Change CCJK interface language",
@@ -36,6 +39,10 @@
36
39
  "menuOptions.codexUninstall": "Uninstall Codex",
37
40
  "menuOptions.codexCheckUpdates": "Check Codex updates",
38
41
  "menuSections.otherTools": "Other Tools",
42
+ "menuOptions.superpowers": "Superpowers",
43
+ "menuOptions.marketplace": "Marketplace",
44
+ "menuDescriptions.superpowers": "Install Superpowers skill system for enhanced AI workflows",
45
+ "menuDescriptions.marketplace": "Browse and install plugins, skills, and workflows",
39
46
  "menuDescriptions.switchCodeTool": "Switch between supported code tools (Claude Code, Codex)",
40
47
  "menuDescriptions.codexFullInit": "Install Codex + Import workflow + Configure API + Configure MCP",
41
48
  "menuDescriptions.codexImportWorkflow": "Import/update Codex workflow-related files",
@@ -47,5 +54,35 @@
47
54
  "menuDescriptions.codexCheckUpdates": "Check and update Codex",
48
55
  "switchCodeToolPrompt": "Select code tool type",
49
56
  "codeToolSwitched": "Code tool switched to {{tool}}",
50
- "selectFunction": "Select function"
57
+ "selectFunction": "Select function",
58
+
59
+ "menuOptions.workflowsAndSkills": "Workflows & Skills",
60
+ "menuOptions.outputStyles": "Output Styles",
61
+ "menuOptions.configSwitch": "Config Switch",
62
+
63
+ "menuDescriptions.workflowsAndSkills": "View and manage installed workflows and skills",
64
+ "menuDescriptions.outputStyles": "Configure AI output style (expert-concise/teaching-mode/pair-programmer)",
65
+ "menuDescriptions.configSwitch": "Quickly switch between multiple API configurations",
66
+
67
+ "ccjkFeatures.workflowsTitle": "Workflows & Skills Management",
68
+ "ccjkFeatures.viewInstalledWorkflows": "View installed workflows",
69
+ "ccjkFeatures.viewInstalledSkills": "View installed skills",
70
+ "ccjkFeatures.installNewWorkflow": "Install new workflow",
71
+ "ccjkFeatures.noWorkflowsInstalled": "No workflows installed",
72
+ "ccjkFeatures.noSkillsInstalled": "No skills installed",
73
+ "ccjkFeatures.workflowCount": "{{count}} workflows installed",
74
+ "ccjkFeatures.skillCount": "{{count}} skills installed",
75
+
76
+ "ccjkFeatures.outputStylesTitle": "Output Styles Configuration",
77
+ "ccjkFeatures.currentStyle": "Current style: {{style}}",
78
+ "ccjkFeatures.selectStyle": "Select output style",
79
+ "ccjkFeatures.styleChanged": "Output style changed to {{style}}",
80
+ "ccjkFeatures.availableStyles": "Available output styles:",
81
+
82
+ "ccjkFeatures.configSwitchTitle": "API Configuration Switch",
83
+ "ccjkFeatures.currentConfig": "Current config: {{config}}",
84
+ "ccjkFeatures.selectConfig": "Select API configuration",
85
+ "ccjkFeatures.configChanged": "Switched to {{config}}",
86
+ "ccjkFeatures.noConfigs": "No additional configurations available",
87
+ "ccjkFeatures.availableConfigs": "Available configurations:"
51
88
  }
@@ -0,0 +1,140 @@
1
+ {
2
+ "title": "Skills Management",
3
+ "description": "Manage CCJK skills with automatic activation",
4
+
5
+ "installed": "Skill '{{name}}' installed successfully",
6
+ "uninstalled": "Skill '{{name}}' uninstalled",
7
+ "activated": "Skill '{{name}}' activated",
8
+ "deactivated": "Skill '{{name}}' deactivated",
9
+ "notFound": "Skill '{{name}}' not found",
10
+ "alreadyInstalled": "Skill '{{name}}' is already installed",
11
+
12
+ "autoActivated": "Auto-activated skill: {{name}}",
13
+ "matchedTrigger": "Matched trigger: {{trigger}}",
14
+ "matchedCondition": "Matched condition: {{condition}}",
15
+ "confidence": "Confidence: {{score}}%",
16
+
17
+ "list": {
18
+ "title": "Available Skills",
19
+ "empty": "No skills installed",
20
+ "count": "{{count}} skills available",
21
+ "enabled": "Enabled",
22
+ "disabled": "Disabled",
23
+ "builtin": "Built-in",
24
+ "marketplace": "Marketplace",
25
+ "local": "Local"
26
+ },
27
+
28
+ "categories": {
29
+ "dev": "Development",
30
+ "git": "Git Operations",
31
+ "review": "Code Review",
32
+ "testing": "Testing",
33
+ "docs": "Documentation",
34
+ "devops": "DevOps",
35
+ "planning": "Planning",
36
+ "debugging": "Debugging",
37
+ "custom": "Custom"
38
+ },
39
+
40
+ "difficulty": {
41
+ "beginner": "Beginner",
42
+ "intermediate": "Intermediate",
43
+ "advanced": "Advanced"
44
+ },
45
+
46
+ "menu": {
47
+ "title": "Skills Menu",
48
+ "install": "Install Skill",
49
+ "uninstall": "Uninstall Skill",
50
+ "list": "List Skills",
51
+ "search": "Search Skills",
52
+ "enable": "Enable Skill",
53
+ "disable": "Disable Skill",
54
+ "info": "Skill Info",
55
+ "back": "Back"
56
+ },
57
+
58
+ "install": {
59
+ "prompt": "Enter skill name or path:",
60
+ "installing": "Installing skill '{{name}}'...",
61
+ "success": "Skill installed successfully",
62
+ "failed": "Failed to install skill",
63
+ "selectSource": "Select installation source:",
64
+ "sources": {
65
+ "marketplace": "From Marketplace",
66
+ "local": "From Local File",
67
+ "url": "From URL"
68
+ }
69
+ },
70
+
71
+ "validation": {
72
+ "valid": "Skill is valid",
73
+ "invalid": "Skill validation failed",
74
+ "errors": "Validation errors:",
75
+ "warnings": "Validation warnings:",
76
+ "missingField": "Missing required field: {{field}}",
77
+ "invalidCategory": "Invalid category: {{category}}",
78
+ "invalidPriority": "Priority must be between 1 and 10",
79
+ "invalidTrigger": "Trigger must start with /: {{trigger}}",
80
+ "emptyUseWhen": "At least one use_when condition is recommended"
81
+ },
82
+
83
+ "activation": {
84
+ "checking": "Checking for matching skills...",
85
+ "noMatch": "No matching skill found",
86
+ "multipleMatches": "Multiple skills matched, using highest priority",
87
+ "disabled": "Skill auto-activation is disabled",
88
+ "belowThreshold": "Confidence below activation threshold"
89
+ },
90
+
91
+ "builtinSkills": {
92
+ "interview": {
93
+ "name": "Interview",
94
+ "description": "Interview-Driven Development workflow"
95
+ },
96
+ "gitCommit": {
97
+ "name": "Git Commit",
98
+ "description": "Smart commit message generation"
99
+ },
100
+ "gitWorktree": {
101
+ "name": "Git Worktree",
102
+ "description": "Git worktree management"
103
+ },
104
+ "brainstorming": {
105
+ "name": "Brainstorming",
106
+ "description": "Interactive design exploration"
107
+ },
108
+ "writingPlans": {
109
+ "name": "Writing Plans",
110
+ "description": "Create implementation plans"
111
+ },
112
+ "executingPlans": {
113
+ "name": "Executing Plans",
114
+ "description": "Execute plans with checkpoints"
115
+ },
116
+ "debugging": {
117
+ "name": "Systematic Debugging",
118
+ "description": "Four-phase debugging process"
119
+ },
120
+ "verification": {
121
+ "name": "Verification",
122
+ "description": "Evidence-based completion verification"
123
+ },
124
+ "codeReview": {
125
+ "name": "Code Review",
126
+ "description": "Code review workflow"
127
+ },
128
+ "tdd": {
129
+ "name": "TDD Workflow",
130
+ "description": "Test-driven development"
131
+ }
132
+ },
133
+
134
+ "errors": {
135
+ "parseError": "Failed to parse skill file: {{error}}",
136
+ "loadError": "Failed to load skill: {{error}}",
137
+ "installError": "Installation error: {{error}}",
138
+ "activationError": "Activation error: {{error}}"
139
+ }
140
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "enabled": "Smart Assistant enabled - Type numbers (1-8) in Claude Code for quick actions",
3
+ "skipped": "Smart Assistant setup skipped",
4
+ "disabled": "Smart Assistant disabled",
5
+ "title": "🎯 Smart Assistant",
6
+ "description": "Execute actions by typing numbers in Claude Code",
7
+ "status": "Status",
8
+ "statusEnabled": "Enabled",
9
+ "statusDisabled": "Disabled",
10
+ "enable": "Enable Smart Assistant",
11
+ "update": "Update Smart Assistant",
12
+ "disable": "Disable Smart Assistant",
13
+ "viewCard": "View Skills Reference Card",
14
+ "enableSuccess": "Smart Assistant enabled",
15
+ "enableFailed": "Failed to enable Smart Assistant",
16
+ "disableSuccess": "Smart Assistant disabled",
17
+ "disableFailed": "Failed to disable Smart Assistant",
18
+ "notEnabled": "Smart Assistant is not enabled",
19
+ "quickActions": {
20
+ "title": "🚀 Quick Actions",
21
+ "prompt": "Type number (1-8) or describe your task...",
22
+ "back": "Enter number (1-8) or 0 to go back:",
23
+ "executing": "Executing",
24
+ "command": "Command",
25
+ "tip": "Tip: In Claude Code, type \"{{command}}\" or just \"{{number}}\" to execute this action"
26
+ },
27
+ "actions": {
28
+ "smartCommit": "Smart Commit",
29
+ "smartCommitDesc": "Auto-generate commit message",
30
+ "codeReview": "Code Review",
31
+ "codeReviewDesc": "Deep two-stage code review",
32
+ "writeTests": "Write Tests",
33
+ "writeTestsDesc": "TDD workflow",
34
+ "planFeature": "Plan Feature",
35
+ "planFeatureDesc": "6-step development workflow",
36
+ "debugIssue": "Debug Issue",
37
+ "debugIssueDesc": "Systematic debugging",
38
+ "brainstorm": "Brainstorm",
39
+ "brainstormDesc": "Explore ideas and solutions",
40
+ "verifyCode": "Verify Code",
41
+ "verifyCodeDesc": "Quality verification",
42
+ "writeDocs": "Write Docs",
43
+ "writeDocsDesc": "Generate documentation"
44
+ },
45
+ "referenceCard": {
46
+ "title": "CCJK Skills Reference",
47
+ "tip": "Tip: Just type a number, Claude will execute automatically"
48
+ }
49
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "subagent": {
3
+ "title": "Subagent Management",
4
+ "description": "Manage Claude Code subagents with fork/inherit modes",
5
+ "created": "Subagent created: {{name}}",
6
+ "completed": "Subagent completed: {{name}}",
7
+ "failed": "Subagent failed: {{name}}",
8
+ "timeout": "Subagent timed out: {{name}}",
9
+ "cancelled": "Subagent cancelled: {{name}}",
10
+ "notFound": "Subagent not found: {{id}}",
11
+ "alreadyExists": "Subagent already exists: {{id}}",
12
+ "maxConcurrentReached": "Maximum concurrent subagents limit reached ({{max}}). Active: {{active}}",
13
+ "invalidConfig": "Invalid subagent configuration",
14
+ "invalidId": "Subagent config must have a valid id",
15
+ "invalidName": "Subagent config must have a valid name",
16
+ "invalidMode": "Subagent mode must be \"fork\" or \"inherit\"",
17
+ "invalidTimeout": "Subagent timeout must be a positive number",
18
+ "alreadyFinished": "Subagent {{id}} already finished with status: {{status}}",
19
+ "cannotCancel": "Cannot cancel subagent {{id}} with status: {{status}}",
20
+ "mode": {
21
+ "fork": "Fork (isolated context)",
22
+ "inherit": "Inherit (parent context)"
23
+ },
24
+ "status": {
25
+ "pending": "Pending",
26
+ "running": "Running",
27
+ "completed": "Completed",
28
+ "failed": "Failed",
29
+ "timeout": "Timeout",
30
+ "cancelled": "Cancelled"
31
+ },
32
+ "transcript": {
33
+ "saved": "Transcript saved: {{path}}",
34
+ "saveFailed": "Failed to save transcript: {{error}}",
35
+ "loaded": "Transcript loaded: {{id}}",
36
+ "loadFailed": "Failed to load transcript: {{error}}",
37
+ "notFound": "Transcript not found: {{path}}",
38
+ "cleanupComplete": "Cleaned up {{count}} old transcripts",
39
+ "cleanupFailed": "Failed to cleanup transcripts: {{error}}",
40
+ "type": {
41
+ "user": "User",
42
+ "assistant": "Assistant",
43
+ "tool": "Tool",
44
+ "system": "System",
45
+ "error": "Error"
46
+ }
47
+ },
48
+ "stats": {
49
+ "total": "Total subagents: {{count}}",
50
+ "active": "Active: {{count}}",
51
+ "pending": "Pending: {{count}}",
52
+ "running": "Running: {{count}}",
53
+ "completed": "Completed: {{count}}",
54
+ "failed": "Failed: {{count}}",
55
+ "timeout": "Timeout: {{count}}",
56
+ "cancelled": "Cancelled: {{count}}",
57
+ "transcripts": "Transcripts: {{count}}",
58
+ "transcriptSize": "Total size: {{size}} bytes",
59
+ "oldestTranscript": "Oldest: {{date}}",
60
+ "newestTranscript": "Newest: {{date}}"
61
+ },
62
+ "manager": {
63
+ "initialized": "SubagentManager initialized",
64
+ "cleared": "Cleared {{count}} finished subagents",
65
+ "clearedAll": "Cleared all subagents",
66
+ "removed": "Removed subagent: {{id}}"
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "title": "Superpowers Plugin",
3
+ "description": "14+ modular skills with automatic activation for enhanced AI workflows",
4
+ "installPrompt": "Would you like to install Superpowers skill system?",
5
+ "installPromptDescription": "Superpowers provides a complete software development workflow with composable skills",
6
+ "installing": "Installing Superpowers...",
7
+ "addingMarketplace": "Adding Superpowers marketplace...",
8
+ "cloning": "Cloning Superpowers repository...",
9
+ "installSuccess": "Superpowers installed successfully!",
10
+ "installFailed": "Failed to install Superpowers",
11
+ "alreadyInstalled": "Superpowers is already installed",
12
+ "notInstalled": "Superpowers is not installed",
13
+ "uninstalling": "Uninstalling Superpowers...",
14
+ "uninstallSuccess": "Superpowers uninstalled successfully",
15
+ "uninstallFailed": "Failed to uninstall Superpowers",
16
+ "updating": "Updating Superpowers...",
17
+ "updateSuccess": "Superpowers updated successfully",
18
+ "updateFailed": "Failed to update Superpowers",
19
+ "checkingStatus": "Checking Superpowers status...",
20
+ "status.installed": "Installed",
21
+ "status.notInstalled": "Not Installed",
22
+ "status.version": "Version: {version}",
23
+ "status.skillCount": "{count} skills available",
24
+ "status.path": "Path: {path}",
25
+ "menu.title": "Superpowers Management",
26
+ "menu.install": "Install Superpowers",
27
+ "menu.uninstall": "Uninstall Superpowers",
28
+ "menu.update": "Update Superpowers",
29
+ "menu.status": "Check Status",
30
+ "menu.skills": "View Available Skills",
31
+ "menu.back": "Back to Main Menu",
32
+ "skills.title": "Available Superpowers Skills",
33
+ "skills.noSkills": "No skills found",
34
+ "skills.list": "Skills:",
35
+ "skills.categories.testing": "Testing",
36
+ "skills.categories.debugging": "Debugging",
37
+ "skills.categories.collaboration": "Collaboration",
38
+ "skills.categories.meta": "Meta",
39
+ "features.brainstorming": "Interactive design refinement",
40
+ "features.writingPlans": "Create implementation plans",
41
+ "features.executingPlans": "Execute plans in batches",
42
+ "features.tdd": "Test-driven development workflow",
43
+ "features.debugging": "Systematic debugging process",
44
+ "features.codeReview": "Code review workflow",
45
+ "features.gitWorktrees": "Git worktree management",
46
+ "errors.installError": "Installation error: {error}",
47
+ "errors.uninstallError": "Uninstallation error: {error}",
48
+ "errors.updateError": "Update error: {error}",
49
+ "errors.networkError": "Network error. Please check your connection.",
50
+ "errors.permissionError": "Permission denied. Please check your access rights.",
51
+ "errors.claudeNotFound": "Claude Code CLI not found. Please install Claude Code first.",
52
+ "prompts.confirmInstall": "This will install Superpowers plugin. Continue?",
53
+ "prompts.confirmUninstall": "This will remove Superpowers plugin. Continue?",
54
+ "prompts.confirmUpdate": "This will update Superpowers to the latest version. Continue?",
55
+ "prompts.selectInstallMethod": "Select installation method:",
56
+ "prompts.installMethods.marketplace": "Via Claude Code Marketplace (recommended)",
57
+ "prompts.installMethods.git": "Via Git Clone"
58
+ }
@@ -71,5 +71,16 @@
71
71
  "codexModelOptions.gpt5": "GPT-5 - 通用强力模型,适合复杂任务",
72
72
  "codexModelOptions.gpt5Codex": "GPT-5-Codex - 专为代码优化的模型,推荐用于编程任务",
73
73
  "codexModelOptions.custom": "自定义 - 指定自定义模型名称",
74
- "windowsMcpConfigFixed": "Windows MCP 配置已修复"
74
+ "windowsMcpConfigFixed": "Windows MCP 配置已修复",
75
+ "setupCompleteTitle": "✅ CCJK 配置完成!",
76
+ "nextSteps": "🎯 下一步:",
77
+ "guidanceStep1": "1. 打开 Claude Code,输入数字快速操作:",
78
+ "guidanceStep1Detail": "1 = 智能提交 2 = 代码审查 3 = 编写测试",
79
+ "guidanceStep1Detail2": "4 = 规划功能 5 = 调试问题 6 = 头脑风暴",
80
+ "guidanceStep2": "2. 或使用工作流命令:",
81
+ "guidanceStep2Example": "/ccjk:workflow 实现用户登录功能",
82
+ "guidanceStep3": "3. 查看所有功能:",
83
+ "guidanceStep3Command": "npx ccjk features",
84
+ "guidanceStep4": "4. 遇到问题?运行:",
85
+ "guidanceStep4Command": "npx ccjk doctor"
75
86
  }
@@ -0,0 +1,84 @@
1
+ {
2
+ "title": "CCJK 插件市场",
3
+ "description": "浏览和安装插件、技能和工作流",
4
+
5
+ "searching": "正在搜索 '{{query}}'...",
6
+ "searchResults": "找到 {{count}} 个包",
7
+ "noResults": "未找到包",
8
+
9
+ "installing": "正在安装 {{name}}...",
10
+ "installSuccess": "{{name}} 安装成功",
11
+ "installFailed": "{{name}} 安装失败",
12
+ "installedAt": "安装位置",
13
+
14
+ "uninstalling": "正在卸载 {{name}}...",
15
+ "uninstallSuccess": "{{name}} 卸载成功",
16
+ "uninstallFailed": "{{name}} 卸载失败",
17
+
18
+ "updating": "正在更新 {{name}}...",
19
+ "updateSuccess": "{{name}} 更新成功",
20
+ "updateFailed": "{{name}} 更新失败",
21
+ "checkingUpdates": "正在检查更新...",
22
+ "noUpdates": "所有包都是最新的",
23
+ "updatesAvailable": "有 {{count}} 个更新可用",
24
+
25
+ "noInstalled": "未安装任何包",
26
+ "installedPackages": "已安装 {{count}} 个包",
27
+ "packageNotFound": "未找到包 '{{name}}'",
28
+ "packageNotInstalled": "包 '{{name}}' 未安装",
29
+ "packageHasDependents": "无法卸载 '{{name}}',因为其他包依赖它:{{dependents}}",
30
+ "incompatibleTool": "警告:此包可能与 {{tool}} 不兼容。支持的工具:{{supported}}",
31
+ "updateHint": "运行 'npx ccjk marketplace update <package>' 更新指定包",
32
+ "updateCheckFailed": "检查更新失败",
33
+ "listFailed": "列出包失败",
34
+ "searchFailed": "搜索失败",
35
+ "infoFailed": "获取包信息失败",
36
+
37
+ "commands.search": "搜索包",
38
+ "commands.install": "安装包",
39
+ "commands.uninstall": "卸载包",
40
+ "commands.update": "更新包",
41
+ "commands.list": "列出已安装的包",
42
+ "commands.info": "显示包信息",
43
+
44
+ "options.lang": "语言 (en 或 zh-CN)",
45
+ "options.force": "强制操作(跳过确认)",
46
+ "options.skipVerification": "跳过包验证",
47
+
48
+ "packageInfo.description": "描述",
49
+ "packageInfo.author": "作者",
50
+ "packageInfo.category": "分类",
51
+ "packageInfo.downloads": "下载量",
52
+ "packageInfo.rating": "评分",
53
+ "packageInfo.ratings": "个评分",
54
+ "packageInfo.keywords": "关键词",
55
+ "packageInfo.license": "许可证",
56
+ "packageInfo.repository": "仓库",
57
+ "packageInfo.version": "版本",
58
+ "packageInfo.verified": "已验证",
59
+
60
+ "categories.plugin": "插件",
61
+ "categories.skill": "技能",
62
+ "categories.workflow": "工作流",
63
+ "categories.agent": "代理",
64
+ "categories.mcp-service": "MCP 服务",
65
+ "categories.output-style": "输出样式",
66
+ "categories.bundle": "套件",
67
+
68
+ "menu.title": "插件市场",
69
+ "menu.search": "搜索包",
70
+ "menu.browse": "浏览分类",
71
+ "menu.installed": "已安装的包",
72
+ "menu.updates": "检查更新",
73
+ "menu.back": "返回主菜单",
74
+
75
+ "prompts.searchQuery": "输入搜索关键词:",
76
+ "prompts.confirmInstall": "安装 {{name}}?",
77
+ "prompts.confirmUninstall": "卸载 {{name}}?",
78
+ "prompts.confirmUpdate": "更新 {{name}}?",
79
+
80
+ "errors.networkError": "网络错误,请检查网络连接。",
81
+ "errors.registryError": "获取注册表失败",
82
+ "errors.installError": "安装错误: {{error}}",
83
+ "errors.uninstallError": "卸载错误: {{error}}"
84
+ }
@@ -1,4 +1,7 @@
1
1
  {
2
+ "menuSections.ccjkFeatures": "CCJK 功能",
3
+ "menuSections.recommendedPlugins": "推荐插件",
4
+ "menuSections.marketplace": "插件市场",
2
5
  "menuDescriptions.ccrManagement": "配置 Claude Code Router 以使用多个 AI 模型",
3
6
  "menuDescriptions.ccusage": "Claude Code 用量分析",
4
7
  "menuDescriptions.changeLanguage": "更改 CCJK 界面语言",
@@ -36,6 +39,10 @@
36
39
  "menuOptions.codexUninstall": "卸载 Codex",
37
40
  "menuOptions.codexCheckUpdates": "检查 Codex 更新",
38
41
  "menuSections.otherTools": "其他工具",
42
+ "menuOptions.superpowers": "Superpowers",
43
+ "menuOptions.marketplace": "插件市场",
44
+ "menuDescriptions.superpowers": "安装 Superpowers 技能系统,增强 AI 工作流",
45
+ "menuDescriptions.marketplace": "浏览和安装插件、技能和工作流",
39
46
  "menuDescriptions.switchCodeTool": "在支持的代码工具之间切换 (Claude Code, Codex)",
40
47
  "menuDescriptions.codexFullInit": "安装 Codex + 导入工作流 + 配置 API + 配置 MCP 服务",
41
48
  "menuDescriptions.codexImportWorkflow": "仅导入/更新 Codex 工作流相关文件",
@@ -47,5 +54,35 @@
47
54
  "menuDescriptions.codexCheckUpdates": "检查并更新 Codex",
48
55
  "switchCodeToolPrompt": "请选择代码工具类型",
49
56
  "codeToolSwitched": "已切换为 {{tool}}",
50
- "selectFunction": "请选择功能"
57
+ "selectFunction": "请选择功能",
58
+
59
+ "menuOptions.workflowsAndSkills": "工作流与技能",
60
+ "menuOptions.outputStyles": "输出风格",
61
+ "menuOptions.configSwitch": "配置切换",
62
+
63
+ "menuDescriptions.workflowsAndSkills": "查看和管理已安装的工作流和技能",
64
+ "menuDescriptions.outputStyles": "配置 AI 输出风格 (专家简洁/教学模式/结对编程等)",
65
+ "menuDescriptions.configSwitch": "在多个 API 配置之间快速切换",
66
+
67
+ "ccjkFeatures.workflowsTitle": "工作流与技能管理",
68
+ "ccjkFeatures.viewInstalledWorkflows": "查看已安装的工作流",
69
+ "ccjkFeatures.viewInstalledSkills": "查看已安装的技能",
70
+ "ccjkFeatures.installNewWorkflow": "安装新工作流",
71
+ "ccjkFeatures.noWorkflowsInstalled": "未安装任何工作流",
72
+ "ccjkFeatures.noSkillsInstalled": "未安装任何技能",
73
+ "ccjkFeatures.workflowCount": "已安装 {{count}} 个工作流",
74
+ "ccjkFeatures.skillCount": "已安装 {{count}} 个技能",
75
+
76
+ "ccjkFeatures.outputStylesTitle": "输出风格配置",
77
+ "ccjkFeatures.currentStyle": "当前风格: {{style}}",
78
+ "ccjkFeatures.selectStyle": "选择输出风格",
79
+ "ccjkFeatures.styleChanged": "输出风格已更改为 {{style}}",
80
+ "ccjkFeatures.availableStyles": "可用的输出风格:",
81
+
82
+ "ccjkFeatures.configSwitchTitle": "API 配置切换",
83
+ "ccjkFeatures.currentConfig": "当前配置: {{config}}",
84
+ "ccjkFeatures.selectConfig": "选择 API 配置",
85
+ "ccjkFeatures.configChanged": "已切换到 {{config}}",
86
+ "ccjkFeatures.noConfigs": "没有其他可用配置",
87
+ "ccjkFeatures.availableConfigs": "可用配置:"
51
88
  }