cc4pm 1.8.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 (108) hide show
  1. package/.claude-plugin/README.md +17 -0
  2. package/.claude-plugin/plugin.json +25 -0
  3. package/LICENSE +21 -0
  4. package/README.md +157 -0
  5. package/README.zh-CN.md +134 -0
  6. package/contexts/dev.md +20 -0
  7. package/contexts/research.md +26 -0
  8. package/contexts/review.md +22 -0
  9. package/examples/CLAUDE.md +100 -0
  10. package/examples/statusline.json +19 -0
  11. package/examples/user-CLAUDE.md +109 -0
  12. package/install.sh +17 -0
  13. package/manifests/install-components.json +173 -0
  14. package/manifests/install-modules.json +335 -0
  15. package/manifests/install-profiles.json +75 -0
  16. package/package.json +117 -0
  17. package/schemas/ecc-install-config.schema.json +58 -0
  18. package/schemas/hooks.schema.json +197 -0
  19. package/schemas/install-components.schema.json +56 -0
  20. package/schemas/install-modules.schema.json +105 -0
  21. package/schemas/install-profiles.schema.json +45 -0
  22. package/schemas/install-state.schema.json +210 -0
  23. package/schemas/package-manager.schema.json +23 -0
  24. package/schemas/plugin.schema.json +58 -0
  25. package/scripts/ci/catalog.js +83 -0
  26. package/scripts/ci/validate-agents.js +81 -0
  27. package/scripts/ci/validate-commands.js +135 -0
  28. package/scripts/ci/validate-hooks.js +239 -0
  29. package/scripts/ci/validate-install-manifests.js +211 -0
  30. package/scripts/ci/validate-no-personal-paths.js +63 -0
  31. package/scripts/ci/validate-rules.js +81 -0
  32. package/scripts/ci/validate-skills.js +54 -0
  33. package/scripts/claw.js +468 -0
  34. package/scripts/doctor.js +110 -0
  35. package/scripts/ecc.js +194 -0
  36. package/scripts/hooks/auto-tmux-dev.js +88 -0
  37. package/scripts/hooks/check-console-log.js +71 -0
  38. package/scripts/hooks/check-hook-enabled.js +12 -0
  39. package/scripts/hooks/cost-tracker.js +78 -0
  40. package/scripts/hooks/doc-file-warning.js +63 -0
  41. package/scripts/hooks/evaluate-session.js +100 -0
  42. package/scripts/hooks/insaits-security-monitor.py +269 -0
  43. package/scripts/hooks/insaits-security-wrapper.js +88 -0
  44. package/scripts/hooks/post-bash-build-complete.js +27 -0
  45. package/scripts/hooks/post-bash-pr-created.js +36 -0
  46. package/scripts/hooks/post-edit-console-warn.js +54 -0
  47. package/scripts/hooks/post-edit-format.js +109 -0
  48. package/scripts/hooks/post-edit-typecheck.js +96 -0
  49. package/scripts/hooks/pre-bash-dev-server-block.js +187 -0
  50. package/scripts/hooks/pre-bash-git-push-reminder.js +28 -0
  51. package/scripts/hooks/pre-bash-tmux-reminder.js +33 -0
  52. package/scripts/hooks/pre-compact.js +48 -0
  53. package/scripts/hooks/pre-write-doc-warn.js +9 -0
  54. package/scripts/hooks/quality-gate.js +168 -0
  55. package/scripts/hooks/run-with-flags-shell.sh +32 -0
  56. package/scripts/hooks/run-with-flags.js +120 -0
  57. package/scripts/hooks/session-end-marker.js +15 -0
  58. package/scripts/hooks/session-end.js +299 -0
  59. package/scripts/hooks/session-start.js +97 -0
  60. package/scripts/hooks/suggest-compact.js +80 -0
  61. package/scripts/install-apply.js +137 -0
  62. package/scripts/install-plan.js +254 -0
  63. package/scripts/lib/hook-flags.js +74 -0
  64. package/scripts/lib/install/apply.js +23 -0
  65. package/scripts/lib/install/config.js +82 -0
  66. package/scripts/lib/install/request.js +113 -0
  67. package/scripts/lib/install/runtime.js +42 -0
  68. package/scripts/lib/install-executor.js +605 -0
  69. package/scripts/lib/install-lifecycle.js +763 -0
  70. package/scripts/lib/install-manifests.js +305 -0
  71. package/scripts/lib/install-state.js +120 -0
  72. package/scripts/lib/install-targets/antigravity-project.js +9 -0
  73. package/scripts/lib/install-targets/claude-home.js +10 -0
  74. package/scripts/lib/install-targets/codex-home.js +10 -0
  75. package/scripts/lib/install-targets/cursor-project.js +10 -0
  76. package/scripts/lib/install-targets/helpers.js +89 -0
  77. package/scripts/lib/install-targets/opencode-home.js +10 -0
  78. package/scripts/lib/install-targets/registry.js +64 -0
  79. package/scripts/lib/orchestration-session.js +299 -0
  80. package/scripts/lib/package-manager.d.ts +119 -0
  81. package/scripts/lib/package-manager.js +431 -0
  82. package/scripts/lib/project-detect.js +428 -0
  83. package/scripts/lib/resolve-formatter.js +185 -0
  84. package/scripts/lib/session-adapters/canonical-session.js +138 -0
  85. package/scripts/lib/session-adapters/claude-history.js +149 -0
  86. package/scripts/lib/session-adapters/dmux-tmux.js +80 -0
  87. package/scripts/lib/session-adapters/registry.js +111 -0
  88. package/scripts/lib/session-aliases.d.ts +136 -0
  89. package/scripts/lib/session-aliases.js +481 -0
  90. package/scripts/lib/session-manager.d.ts +131 -0
  91. package/scripts/lib/session-manager.js +464 -0
  92. package/scripts/lib/shell-split.js +86 -0
  93. package/scripts/lib/skill-improvement/amendify.js +89 -0
  94. package/scripts/lib/skill-improvement/evaluate.js +59 -0
  95. package/scripts/lib/skill-improvement/health.js +118 -0
  96. package/scripts/lib/skill-improvement/observations.js +108 -0
  97. package/scripts/lib/tmux-worktree-orchestrator.js +491 -0
  98. package/scripts/lib/utils.d.ts +183 -0
  99. package/scripts/lib/utils.js +543 -0
  100. package/scripts/list-installed.js +90 -0
  101. package/scripts/orchestrate-codex-worker.sh +92 -0
  102. package/scripts/orchestrate-worktrees.js +108 -0
  103. package/scripts/orchestration-status.js +62 -0
  104. package/scripts/repair.js +97 -0
  105. package/scripts/session-inspect.js +150 -0
  106. package/scripts/setup-package-manager.js +204 -0
  107. package/scripts/skill-create-output.js +244 -0
  108. package/scripts/uninstall.js +96 -0
@@ -0,0 +1,173 @@
1
+ {
2
+ "version": 1,
3
+ "components": [
4
+ {
5
+ "id": "baseline:rules",
6
+ "family": "baseline",
7
+ "description": "Core shared rules and supported language rule packs.",
8
+ "modules": [
9
+ "rules-core"
10
+ ]
11
+ },
12
+ {
13
+ "id": "baseline:agents",
14
+ "family": "baseline",
15
+ "description": "Baseline agent definitions and shared AGENTS guidance.",
16
+ "modules": [
17
+ "agents-core"
18
+ ]
19
+ },
20
+ {
21
+ "id": "baseline:commands",
22
+ "family": "baseline",
23
+ "description": "Core command library and workflow command docs.",
24
+ "modules": [
25
+ "commands-core"
26
+ ]
27
+ },
28
+ {
29
+ "id": "baseline:hooks",
30
+ "family": "baseline",
31
+ "description": "Hook runtime configs and hook helper scripts.",
32
+ "modules": [
33
+ "hooks-runtime"
34
+ ]
35
+ },
36
+ {
37
+ "id": "baseline:platform",
38
+ "family": "baseline",
39
+ "description": "Platform configs, package-manager setup, and MCP catalog defaults.",
40
+ "modules": [
41
+ "platform-configs"
42
+ ]
43
+ },
44
+ {
45
+ "id": "baseline:workflow",
46
+ "family": "baseline",
47
+ "description": "Evaluation, TDD, verification, and compaction workflow support.",
48
+ "modules": [
49
+ "workflow-quality"
50
+ ]
51
+ },
52
+ {
53
+ "id": "lang:typescript",
54
+ "family": "language",
55
+ "description": "TypeScript and frontend/backend application-engineering guidance. Currently resolves through the shared framework-language module.",
56
+ "modules": [
57
+ "framework-language"
58
+ ]
59
+ },
60
+ {
61
+ "id": "lang:python",
62
+ "family": "language",
63
+ "description": "Python and Django-oriented engineering guidance. Currently resolves through the shared framework-language module.",
64
+ "modules": [
65
+ "framework-language"
66
+ ]
67
+ },
68
+ {
69
+ "id": "lang:go",
70
+ "family": "language",
71
+ "description": "Go-focused coding and testing guidance. Currently resolves through the shared framework-language module.",
72
+ "modules": [
73
+ "framework-language"
74
+ ]
75
+ },
76
+ {
77
+ "id": "lang:java",
78
+ "family": "language",
79
+ "description": "Java and Spring application guidance. Currently resolves through the shared framework-language module.",
80
+ "modules": [
81
+ "framework-language"
82
+ ]
83
+ },
84
+ {
85
+ "id": "framework:react",
86
+ "family": "framework",
87
+ "description": "React-focused engineering guidance. Currently resolves through the shared framework-language module.",
88
+ "modules": [
89
+ "framework-language"
90
+ ]
91
+ },
92
+ {
93
+ "id": "framework:nextjs",
94
+ "family": "framework",
95
+ "description": "Next.js-focused engineering guidance. Currently resolves through the shared framework-language module.",
96
+ "modules": [
97
+ "framework-language"
98
+ ]
99
+ },
100
+ {
101
+ "id": "framework:django",
102
+ "family": "framework",
103
+ "description": "Django-focused engineering guidance. Currently resolves through the shared framework-language module.",
104
+ "modules": [
105
+ "framework-language"
106
+ ]
107
+ },
108
+ {
109
+ "id": "framework:springboot",
110
+ "family": "framework",
111
+ "description": "Spring Boot-focused engineering guidance. Currently resolves through the shared framework-language module.",
112
+ "modules": [
113
+ "framework-language"
114
+ ]
115
+ },
116
+ {
117
+ "id": "capability:database",
118
+ "family": "capability",
119
+ "description": "Database and persistence-oriented skills.",
120
+ "modules": [
121
+ "database"
122
+ ]
123
+ },
124
+ {
125
+ "id": "capability:security",
126
+ "family": "capability",
127
+ "description": "Security review and security-focused framework guidance.",
128
+ "modules": [
129
+ "security"
130
+ ]
131
+ },
132
+ {
133
+ "id": "capability:research",
134
+ "family": "capability",
135
+ "description": "Research and API-integration skills for deep investigations and external tooling.",
136
+ "modules": [
137
+ "research-apis"
138
+ ]
139
+ },
140
+ {
141
+ "id": "capability:content",
142
+ "family": "capability",
143
+ "description": "Business, writing, market, and investor communication skills.",
144
+ "modules": [
145
+ "business-content"
146
+ ]
147
+ },
148
+ {
149
+ "id": "capability:social",
150
+ "family": "capability",
151
+ "description": "Social publishing and distribution skills.",
152
+ "modules": [
153
+ "social-distribution"
154
+ ]
155
+ },
156
+ {
157
+ "id": "capability:media",
158
+ "family": "capability",
159
+ "description": "Media generation and AI-assisted editing skills.",
160
+ "modules": [
161
+ "media-generation"
162
+ ]
163
+ },
164
+ {
165
+ "id": "capability:orchestration",
166
+ "family": "capability",
167
+ "description": "Worktree and tmux orchestration runtime and workflow docs.",
168
+ "modules": [
169
+ "orchestration"
170
+ ]
171
+ }
172
+ ]
173
+ }
@@ -0,0 +1,335 @@
1
+ {
2
+ "version": 1,
3
+ "modules": [
4
+ {
5
+ "id": "rules-core",
6
+ "kind": "rules",
7
+ "description": "Shared and language rules for supported harness targets.",
8
+ "paths": [
9
+ "rules"
10
+ ],
11
+ "targets": [
12
+ "claude",
13
+ "cursor",
14
+ "antigravity"
15
+ ],
16
+ "dependencies": [],
17
+ "defaultInstall": true,
18
+ "cost": "light",
19
+ "stability": "stable"
20
+ },
21
+ {
22
+ "id": "agents-core",
23
+ "kind": "agents",
24
+ "description": "Agent definitions and project-level agent guidance.",
25
+ "paths": [
26
+ ".agents",
27
+ "agents",
28
+ "AGENTS.md"
29
+ ],
30
+ "targets": [
31
+ "claude",
32
+ "cursor",
33
+ "antigravity",
34
+ "codex",
35
+ "opencode"
36
+ ],
37
+ "dependencies": [],
38
+ "defaultInstall": true,
39
+ "cost": "light",
40
+ "stability": "stable"
41
+ },
42
+ {
43
+ "id": "commands-core",
44
+ "kind": "commands",
45
+ "description": "Core slash-command library and command docs.",
46
+ "paths": [
47
+ "commands"
48
+ ],
49
+ "targets": [
50
+ "claude",
51
+ "cursor",
52
+ "antigravity",
53
+ "opencode"
54
+ ],
55
+ "dependencies": [],
56
+ "defaultInstall": true,
57
+ "cost": "medium",
58
+ "stability": "stable"
59
+ },
60
+ {
61
+ "id": "hooks-runtime",
62
+ "kind": "hooks",
63
+ "description": "Runtime hook configs and hook script helpers.",
64
+ "paths": [
65
+ "hooks",
66
+ "scripts/hooks"
67
+ ],
68
+ "targets": [
69
+ "claude",
70
+ "cursor",
71
+ "opencode"
72
+ ],
73
+ "dependencies": [],
74
+ "defaultInstall": true,
75
+ "cost": "medium",
76
+ "stability": "stable"
77
+ },
78
+ {
79
+ "id": "platform-configs",
80
+ "kind": "platform",
81
+ "description": "Baseline platform configs, package-manager setup, and MCP catalog.",
82
+ "paths": [
83
+ ".claude-plugin",
84
+ ".codex",
85
+ ".cursor",
86
+ ".opencode",
87
+ "mcp-configs",
88
+ "scripts/setup-package-manager.js"
89
+ ],
90
+ "targets": [
91
+ "claude",
92
+ "cursor",
93
+ "codex",
94
+ "opencode"
95
+ ],
96
+ "dependencies": [],
97
+ "defaultInstall": true,
98
+ "cost": "light",
99
+ "stability": "stable"
100
+ },
101
+ {
102
+ "id": "framework-language",
103
+ "kind": "skills",
104
+ "description": "Core framework, language, and application-engineering skills.",
105
+ "paths": [
106
+ "skills/backend-patterns",
107
+ "skills/coding-standards",
108
+ "skills/frontend-patterns",
109
+ "skills/frontend-slides",
110
+ "skills/golang-patterns",
111
+ "skills/golang-testing",
112
+ "skills/python-patterns",
113
+ "skills/python-testing",
114
+ "skills/django-patterns",
115
+ "skills/django-tdd",
116
+ "skills/django-verification",
117
+ "skills/java-coding-standards",
118
+ "skills/springboot-patterns",
119
+ "skills/springboot-tdd",
120
+ "skills/springboot-verification"
121
+ ],
122
+ "targets": [
123
+ "claude",
124
+ "cursor",
125
+ "antigravity",
126
+ "codex",
127
+ "opencode"
128
+ ],
129
+ "dependencies": [
130
+ "rules-core",
131
+ "agents-core",
132
+ "commands-core",
133
+ "platform-configs"
134
+ ],
135
+ "defaultInstall": false,
136
+ "cost": "medium",
137
+ "stability": "stable"
138
+ },
139
+ {
140
+ "id": "database",
141
+ "kind": "skills",
142
+ "description": "Database and persistence-focused skills.",
143
+ "paths": [
144
+ "skills/clickhouse-io",
145
+ "skills/jpa-patterns",
146
+ "skills/postgres-patterns"
147
+ ],
148
+ "targets": [
149
+ "claude",
150
+ "cursor",
151
+ "antigravity",
152
+ "codex",
153
+ "opencode"
154
+ ],
155
+ "dependencies": [
156
+ "platform-configs"
157
+ ],
158
+ "defaultInstall": false,
159
+ "cost": "medium",
160
+ "stability": "stable"
161
+ },
162
+ {
163
+ "id": "workflow-quality",
164
+ "kind": "skills",
165
+ "description": "Evaluation, TDD, verification, learning, and compaction skills.",
166
+ "paths": [
167
+ "skills/continuous-learning",
168
+ "skills/continuous-learning-v2",
169
+ "skills/eval-harness",
170
+ "skills/iterative-retrieval",
171
+ "skills/strategic-compact",
172
+ "skills/tdd-workflow",
173
+ "skills/verification-loop"
174
+ ],
175
+ "targets": [
176
+ "claude",
177
+ "cursor",
178
+ "antigravity",
179
+ "codex",
180
+ "opencode"
181
+ ],
182
+ "dependencies": [
183
+ "platform-configs"
184
+ ],
185
+ "defaultInstall": true,
186
+ "cost": "medium",
187
+ "stability": "stable"
188
+ },
189
+ {
190
+ "id": "security",
191
+ "kind": "skills",
192
+ "description": "Security review and security-focused framework guidance.",
193
+ "paths": [
194
+ "skills/security-review",
195
+ "skills/security-scan",
196
+ "skills/django-security",
197
+ "skills/springboot-security",
198
+ "the-security-guide.md"
199
+ ],
200
+ "targets": [
201
+ "claude",
202
+ "cursor",
203
+ "antigravity",
204
+ "codex",
205
+ "opencode"
206
+ ],
207
+ "dependencies": [
208
+ "workflow-quality"
209
+ ],
210
+ "defaultInstall": false,
211
+ "cost": "medium",
212
+ "stability": "stable"
213
+ },
214
+ {
215
+ "id": "research-apis",
216
+ "kind": "skills",
217
+ "description": "Research and API integration skills for deep investigations and model integrations.",
218
+ "paths": [
219
+ "skills/claude-api",
220
+ "skills/deep-research",
221
+ "skills/exa-search"
222
+ ],
223
+ "targets": [
224
+ "claude",
225
+ "cursor",
226
+ "antigravity",
227
+ "codex",
228
+ "opencode"
229
+ ],
230
+ "dependencies": [
231
+ "platform-configs"
232
+ ],
233
+ "defaultInstall": false,
234
+ "cost": "medium",
235
+ "stability": "stable"
236
+ },
237
+ {
238
+ "id": "business-content",
239
+ "kind": "skills",
240
+ "description": "Business, writing, market, and investor communication skills.",
241
+ "paths": [
242
+ "skills/article-writing",
243
+ "skills/content-engine",
244
+ "skills/investor-materials",
245
+ "skills/investor-outreach",
246
+ "skills/market-research"
247
+ ],
248
+ "targets": [
249
+ "claude",
250
+ "cursor",
251
+ "antigravity",
252
+ "codex",
253
+ "opencode"
254
+ ],
255
+ "dependencies": [
256
+ "platform-configs"
257
+ ],
258
+ "defaultInstall": false,
259
+ "cost": "heavy",
260
+ "stability": "stable"
261
+ },
262
+ {
263
+ "id": "social-distribution",
264
+ "kind": "skills",
265
+ "description": "Social publishing and distribution skills.",
266
+ "paths": [
267
+ "skills/crosspost",
268
+ "skills/x-api"
269
+ ],
270
+ "targets": [
271
+ "claude",
272
+ "cursor",
273
+ "antigravity",
274
+ "codex",
275
+ "opencode"
276
+ ],
277
+ "dependencies": [
278
+ "business-content"
279
+ ],
280
+ "defaultInstall": false,
281
+ "cost": "medium",
282
+ "stability": "stable"
283
+ },
284
+ {
285
+ "id": "media-generation",
286
+ "kind": "skills",
287
+ "description": "Media generation and AI-assisted editing skills.",
288
+ "paths": [
289
+ "skills/fal-ai-media",
290
+ "skills/video-editing",
291
+ "skills/videodb"
292
+ ],
293
+ "targets": [
294
+ "claude",
295
+ "cursor",
296
+ "codex",
297
+ "opencode"
298
+ ],
299
+ "dependencies": [
300
+ "platform-configs"
301
+ ],
302
+ "defaultInstall": false,
303
+ "cost": "heavy",
304
+ "stability": "beta"
305
+ },
306
+ {
307
+ "id": "orchestration",
308
+ "kind": "orchestration",
309
+ "description": "Worktree/tmux orchestration runtime and workflow docs.",
310
+ "paths": [
311
+ "commands/multi-workflow.md",
312
+ "commands/orchestrate.md",
313
+ "commands/sessions.md",
314
+ "scripts/lib/orchestration-session.js",
315
+ "scripts/lib/tmux-worktree-orchestrator.js",
316
+ "scripts/orchestrate-codex-worker.sh",
317
+ "scripts/orchestrate-worktrees.js",
318
+ "scripts/orchestration-status.js",
319
+ "skills/dmux-workflows"
320
+ ],
321
+ "targets": [
322
+ "claude",
323
+ "codex",
324
+ "opencode"
325
+ ],
326
+ "dependencies": [
327
+ "commands-core",
328
+ "platform-configs"
329
+ ],
330
+ "defaultInstall": false,
331
+ "cost": "medium",
332
+ "stability": "beta"
333
+ }
334
+ ]
335
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "version": 1,
3
+ "profiles": {
4
+ "core": {
5
+ "description": "Minimal harness baseline with commands, hooks, platform configs, and quality workflow support.",
6
+ "modules": [
7
+ "rules-core",
8
+ "agents-core",
9
+ "commands-core",
10
+ "hooks-runtime",
11
+ "platform-configs",
12
+ "workflow-quality"
13
+ ]
14
+ },
15
+ "developer": {
16
+ "description": "Default engineering profile for most cc4pm users working across app codebases.",
17
+ "modules": [
18
+ "rules-core",
19
+ "agents-core",
20
+ "commands-core",
21
+ "hooks-runtime",
22
+ "platform-configs",
23
+ "workflow-quality",
24
+ "framework-language",
25
+ "database",
26
+ "orchestration"
27
+ ]
28
+ },
29
+ "security": {
30
+ "description": "Security-heavy setup with baseline runtime support and security-specific guidance.",
31
+ "modules": [
32
+ "rules-core",
33
+ "agents-core",
34
+ "commands-core",
35
+ "hooks-runtime",
36
+ "platform-configs",
37
+ "workflow-quality",
38
+ "security"
39
+ ]
40
+ },
41
+ "research": {
42
+ "description": "Research and content-oriented setup for investigation, synthesis, and publishing workflows.",
43
+ "modules": [
44
+ "rules-core",
45
+ "agents-core",
46
+ "commands-core",
47
+ "hooks-runtime",
48
+ "platform-configs",
49
+ "workflow-quality",
50
+ "research-apis",
51
+ "business-content",
52
+ "social-distribution"
53
+ ]
54
+ },
55
+ "full": {
56
+ "description": "Complete cc4pm install with all currently classified modules.",
57
+ "modules": [
58
+ "rules-core",
59
+ "agents-core",
60
+ "commands-core",
61
+ "hooks-runtime",
62
+ "platform-configs",
63
+ "framework-language",
64
+ "database",
65
+ "workflow-quality",
66
+ "security",
67
+ "research-apis",
68
+ "business-content",
69
+ "social-distribution",
70
+ "media-generation",
71
+ "orchestration"
72
+ ]
73
+ }
74
+ }
75
+ }
package/package.json ADDED
@@ -0,0 +1,117 @@
1
+ {
2
+ "name": "cc4pm",
3
+ "version": "1.8.0",
4
+ "description": "Complete collection of battle-tested Claude Code configs — agents, skills, hooks, commands, and rules evolved over 10+ months of intensive daily use by an Anthropic hackathon winner",
5
+ "keywords": [
6
+ "claude-code",
7
+ "ai",
8
+ "agents",
9
+ "skills",
10
+ "hooks",
11
+ "mcp",
12
+ "rules",
13
+ "claude",
14
+ "anthropic",
15
+ "tdd",
16
+ "code-review",
17
+ "security",
18
+ "automation",
19
+ "best-practices",
20
+ "cursor",
21
+ "cursor-ide",
22
+ "opencode",
23
+ "codex",
24
+ "presentations",
25
+ "slides"
26
+ ],
27
+ "author": {
28
+ "name": "Affaan Mustafa",
29
+ "url": "https://x.com/affaanmustafa"
30
+ },
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/istarwyh/cc4pm.git"
35
+ },
36
+ "homepage": "https://github.com/istarwyh/cc4pm#readme",
37
+ "bugs": {
38
+ "url": "https://github.com/istarwyh/cc4pm/issues"
39
+ },
40
+ "files": [
41
+ ".agents/",
42
+ ".codex/",
43
+ ".cursor/",
44
+ ".opencode/commands/",
45
+ ".opencode/instructions/",
46
+ ".opencode/plugins/",
47
+ ".opencode/prompts/",
48
+ ".opencode/tools/",
49
+ ".opencode/index.ts",
50
+ ".opencode/opencode.json",
51
+ ".opencode/package.json",
52
+ ".opencode/tsconfig.json",
53
+ ".opencode/MIGRATION.md",
54
+ ".opencode/README.md",
55
+ "agents/",
56
+ "commands/",
57
+ "contexts/",
58
+ "examples/CLAUDE.md",
59
+ "examples/user-CLAUDE.md",
60
+ "examples/statusline.json",
61
+ "hooks/",
62
+ "manifests/",
63
+ "mcp-configs/",
64
+ "plugins/",
65
+ "rules/",
66
+ "schemas/",
67
+ "scripts/ci/",
68
+ "scripts/ecc.js",
69
+ "scripts/hooks/",
70
+ "scripts/lib/",
71
+ "scripts/claw.js",
72
+ "scripts/doctor.js",
73
+ "scripts/install-apply.js",
74
+ "scripts/install-plan.js",
75
+ "scripts/list-installed.js",
76
+ "scripts/orchestration-status.js",
77
+ "scripts/orchestrate-codex-worker.sh",
78
+ "scripts/orchestrate-worktrees.js",
79
+ "scripts/setup-package-manager.js",
80
+ "scripts/skill-create-output.js",
81
+ "scripts/repair.js",
82
+ "scripts/session-inspect.js",
83
+ "scripts/uninstall.js",
84
+ "skills/",
85
+ "AGENTS.md",
86
+ ".claude-plugin/plugin.json",
87
+ ".claude-plugin/README.md",
88
+ "install.sh",
89
+ "llms.txt"
90
+ ],
91
+ "bin": {
92
+ "ecc": "scripts/ecc.js",
93
+ "ecc-install": "install.sh"
94
+ },
95
+ "scripts": {
96
+ "postinstall": "echo '\\n cc4pm installed!\\n Run: npx ecc typescript\\n Compat: npx ecc-install typescript\\n Docs: https://github.com/istarwyh/cc4pm\\n'",
97
+ "lint": "eslint . && markdownlint '**/*.md' --ignore node_modules",
98
+ "claw": "node scripts/claw.js",
99
+ "orchestrate:status": "node scripts/orchestration-status.js",
100
+ "orchestrate:worker": "bash scripts/orchestrate-codex-worker.sh",
101
+ "orchestrate:tmux": "node scripts/orchestrate-worktrees.js",
102
+ "test": "node scripts/ci/validate-agents.js && node scripts/ci/validate-commands.js && node scripts/ci/validate-rules.js && node scripts/ci/validate-skills.js && node scripts/ci/validate-hooks.js && node scripts/ci/validate-install-manifests.js && node scripts/ci/validate-no-personal-paths.js && node tests/run-all.js",
103
+ "coverage": "c8 --all --include=\"scripts/**/*.js\" --check-coverage --lines 80 --functions 80 --branches 80 --statements 80 --reporter=text --reporter=lcov node tests/run-all.js",
104
+ "build:homepage": "cp docs/index.html packages/homepage/index.html"
105
+ },
106
+ "devDependencies": {
107
+ "@eslint/js": "^9.39.2",
108
+ "ajv": "^8.18.0",
109
+ "c8": "^10.1.2",
110
+ "eslint": "^9.39.2",
111
+ "globals": "^17.1.0",
112
+ "markdownlint-cli": "^0.47.0"
113
+ },
114
+ "engines": {
115
+ "node": ">=18"
116
+ }
117
+ }