ccjk 13.3.10 → 13.3.12

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 (40) hide show
  1. package/bin/ccjk.mjs +2 -0
  2. package/dist/chunks/api-cli.mjs +1 -1
  3. package/dist/chunks/auto-fix.mjs +6 -10
  4. package/dist/chunks/ccr.mjs +3 -4
  5. package/dist/chunks/claude-code-config-manager.mjs +14 -12
  6. package/dist/chunks/claude-code-incremental-manager.mjs +1 -1
  7. package/dist/chunks/codex.mjs +1 -1
  8. package/dist/chunks/config.mjs +15 -48
  9. package/dist/chunks/doctor.mjs +1 -1
  10. package/dist/chunks/index5.mjs +6 -2
  11. package/dist/chunks/init.mjs +4 -4
  12. package/dist/chunks/mcp-cli.mjs +1 -1
  13. package/dist/chunks/mcp.mjs +1 -1
  14. package/dist/chunks/menu-hierarchical.mjs +3 -4
  15. package/dist/chunks/menu.mjs +4 -7
  16. package/dist/chunks/onboarding-wizard.mjs +1 -1
  17. package/dist/chunks/package.mjs +1 -1
  18. package/dist/chunks/quick-provider.mjs +1 -1
  19. package/dist/chunks/quick-setup.mjs +2 -3
  20. package/dist/chunks/slash-commands.mjs +1 -1
  21. package/dist/chunks/update.mjs +3 -4
  22. package/dist/index.mjs +1 -1
  23. package/dist/shared/{ccjk.DwbhKZGA.mjs → ccjk.DZ4ehAHg.mjs} +8 -45
  24. package/dist/shared/{ccjk.CvIIxgUS.mjs → ccjk.DfZKjHvG.mjs} +1 -1
  25. package/dist/shared/{ccjk.BHBpQsHd.mjs → ccjk.KpFl2RDA.mjs} +0 -2
  26. package/package.json +1 -1
  27. package/templates/claude-code/common/settings.json +6 -3
  28. package/dist/templates/agents/fullstack-developer.json +0 -70
  29. package/dist/templates/agents/go-expert.json +0 -69
  30. package/dist/templates/agents/index.json +0 -64
  31. package/dist/templates/agents/python-expert.json +0 -69
  32. package/dist/templates/agents/react-specialist.json +0 -69
  33. package/dist/templates/agents/testing-automation-expert.json +0 -70
  34. package/dist/templates/agents/typescript-architect.json +0 -69
  35. package/dist/templates/claude-code/common/settings.json +0 -104
  36. package/dist/templates/hooks/post-test/coverage.json +0 -21
  37. package/dist/templates/hooks/post-test/summary.json +0 -21
  38. package/dist/templates/hooks/pre-commit/eslint.json +0 -22
  39. package/dist/templates/hooks/pre-commit/prettier.json +0 -22
  40. package/dist/templates/skills/index.json +0 -132
@@ -1,22 +0,0 @@
1
- {
2
- "name": "pre-commit-eslint",
3
- "description": "Run ESLint on staged files",
4
- "type": "pre-commit",
5
- "category": "pre-commit",
6
- "projectTypes": ["typescript", "javascript"],
7
- "trigger": {
8
- "matcher": "git:pre-commit",
9
- "condition": "git diff --cached --name-only | grep -E \"\\.(ts|js|tsx|jsx)$\""
10
- },
11
- "action": {
12
- "command": "eslint",
13
- "args": ["--fix", "--staged"],
14
- "timeout": 30000
15
- },
16
- "enabled": true,
17
- "priority": 100,
18
- "metadata": {
19
- "version": "1.0.0",
20
- "tags": ["linting", "code-quality"]
21
- }
22
- }
@@ -1,22 +0,0 @@
1
- {
2
- "name": "pre-commit-prettier",
3
- "description": "Format code with Prettier",
4
- "type": "pre-commit",
5
- "category": "pre-commit",
6
- "projectTypes": ["typescript", "javascript"],
7
- "trigger": {
8
- "matcher": "git:pre-commit",
9
- "condition": "git diff --cached --name-only | grep -E \"\\.(ts|js|tsx|jsx|json|md)$\""
10
- },
11
- "action": {
12
- "command": "prettier",
13
- "args": ["--write", "--staged"],
14
- "timeout": 15000
15
- },
16
- "enabled": true,
17
- "priority": 90,
18
- "metadata": {
19
- "version": "1.0.0",
20
- "tags": ["formatting", "code-quality"]
21
- }
22
- }
@@ -1,132 +0,0 @@
1
- {
2
- "templates": [
3
- {
4
- "id": "git-commit",
5
- "name": "Git Commit",
6
- "category": "git",
7
- "priority": 1,
8
- "file": "git-workflow.md",
9
- "tags": ["git", "commit", "version-control"]
10
- },
11
- {
12
- "id": "code-review",
13
- "name": "Code Review",
14
- "category": "code-quality",
15
- "priority": 1,
16
- "file": "code-review.hbs",
17
- "tags": ["review", "quality", "best-practices"]
18
- },
19
- {
20
- "id": "refactor-code",
21
- "name": "Refactor Code",
22
- "category": "code-quality",
23
- "priority": 2,
24
- "file": "code-refactor.hbs",
25
- "tags": ["refactor", "clean-code", "patterns"]
26
- },
27
- {
28
- "id": "generate-tests",
29
- "name": "Generate Tests",
30
- "category": "testing",
31
- "priority": 1,
32
- "file": "testing-best-practices.md",
33
- "tags": ["testing", "unit-tests", "integration-tests"]
34
- },
35
- {
36
- "id": "type-fix",
37
- "name": "TypeScript Type Fix",
38
- "category": "typescript",
39
- "priority": 1,
40
- "file": "type-fix.hbs",
41
- "tags": ["typescript", "types", "fix"]
42
- },
43
- {
44
- "id": "react-patterns",
45
- "name": "React Patterns",
46
- "category": "frontend",
47
- "priority": 1,
48
- "file": "react-patterns.md",
49
- "tags": ["react", "patterns", "hooks"]
50
- },
51
- {
52
- "id": "nextjs-optimization",
53
- "name": "Next.js Optimization",
54
- "category": "frontend",
55
- "priority": 2,
56
- "file": "nextjs-optimization.md",
57
- "tags": ["nextjs", "performance", "ssr"]
58
- },
59
- {
60
- "id": "ts-best-practices",
61
- "name": "TypeScript Best Practices",
62
- "category": "typescript",
63
- "priority": 2,
64
- "file": "ts-best-practices.md",
65
- "tags": ["typescript", "best-practices", "patterns"]
66
- },
67
- {
68
- "id": "python-pep8",
69
- "name": "Python PEP8",
70
- "category": "python",
71
- "priority": 1,
72
- "file": "python-pep8.md",
73
- "tags": ["python", "pep8", "style"]
74
- },
75
- {
76
- "id": "django-patterns",
77
- "name": "Django Patterns",
78
- "category": "python",
79
- "priority": 2,
80
- "file": "django-patterns.md",
81
- "tags": ["django", "python", "patterns"]
82
- },
83
- {
84
- "id": "go-idioms",
85
- "name": "Go Idioms",
86
- "category": "go",
87
- "priority": 1,
88
- "file": "go-idioms.md",
89
- "tags": ["go", "golang", "idioms"]
90
- },
91
- {
92
- "id": "rust-patterns",
93
- "name": "Rust Patterns",
94
- "category": "rust",
95
- "priority": 1,
96
- "file": "rust-patterns.md",
97
- "tags": ["rust", "patterns", "ownership"]
98
- },
99
- {
100
- "id": "security-best-practices",
101
- "name": "Security Best Practices",
102
- "category": "security",
103
- "priority": 1,
104
- "file": "security-best-practices.md",
105
- "tags": ["security", "owasp", "best-practices"]
106
- },
107
- {
108
- "id": "ccjk-init",
109
- "name": "CCJK Init",
110
- "category": "ccjk",
111
- "priority": 1,
112
- "file": "ccjk-init.md",
113
- "tags": ["ccjk", "init", "setup"]
114
- },
115
- {
116
- "id": "ccjk-mcp-setup",
117
- "name": "CCJK MCP Setup",
118
- "category": "ccjk",
119
- "priority": 2,
120
- "file": "ccjk-mcp-setup.md",
121
- "tags": ["ccjk", "mcp", "setup"]
122
- },
123
- {
124
- "id": "ccjk-troubleshoot",
125
- "name": "CCJK Troubleshoot",
126
- "category": "ccjk",
127
- "priority": 3,
128
- "file": "ccjk-troubleshoot.md",
129
- "tags": ["ccjk", "troubleshoot", "debug"]
130
- }
131
- ]
132
- }