create-claude-pipeline 0.1.0 → 0.2.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 (402) hide show
  1. package/README.md +114 -0
  2. package/bin/cli.js +368 -359
  3. package/package.json +32 -32
  4. package/template/.claude/agents/be-developer.md +218 -218
  5. package/template/.claude/agents/designer.md +192 -192
  6. package/template/.claude/agents/fe-developer.md +175 -175
  7. package/template/.claude/agents/infra-developer.md +270 -270
  8. package/template/.claude/agents/planner.md +126 -126
  9. package/template/.claude/agents/pm.md +130 -130
  10. package/template/.claude/agents/qa-engineer.md +270 -270
  11. package/template/.claude/agents/security-reviewer.md +281 -281
  12. package/template/.claude/settings.json +5 -5
  13. package/template/.claude/skills/analyze-requirements/SKILL.md +166 -166
  14. package/template/.claude/skills/api-integration/SKILL.md +354 -354
  15. package/template/.claude/skills/assemble-context/SKILL.md +192 -192
  16. package/template/.claude/skills/db-migration/SKILL.md +228 -228
  17. package/template/.claude/skills/explore-be-codebase/SKILL.md +260 -260
  18. package/template/.claude/skills/explore-codebase/SKILL.md +190 -190
  19. package/template/.claude/skills/explore-design-system/SKILL.md +150 -150
  20. package/template/.claude/skills/explore-fe-codebase/SKILL.md +209 -209
  21. package/template/.claude/skills/explore-implementation/SKILL.md +147 -147
  22. package/template/.claude/skills/explore-infra/SKILL.md +242 -242
  23. package/template/.claude/skills/implement-api/SKILL.md +477 -477
  24. package/template/.claude/skills/implement-components/SKILL.md +217 -217
  25. package/template/.claude/skills/review-auth/SKILL.md +175 -175
  26. package/template/.claude/skills/scan-vulnerabilities/SKILL.md +200 -200
  27. package/template/.claude/skills/write-cicd/SKILL.md +293 -293
  28. package/template/.claude/skills/write-design-spec/SKILL.md +363 -363
  29. package/template/.claude/skills/write-dockerfile/SKILL.md +269 -269
  30. package/template/.claude/skills/write-plan-doc/SKILL.md +164 -164
  31. package/template/.claude/skills/write-plan-doc/assets/plan_template.html +251 -251
  32. package/template/.claude/skills/write-qa-report/SKILL.md +151 -151
  33. package/template/.claude/skills/write-security-report/SKILL.md +185 -185
  34. package/template/.claude/skills/write-test-cases/SKILL.md +234 -234
  35. package/template/.claude-pipeline/dashboard/.env.example +1 -1
  36. package/template/.claude-pipeline/dashboard/.eslintrc.json +3 -3
  37. package/template/.claude-pipeline/dashboard/README.md +36 -36
  38. package/template/.claude-pipeline/dashboard/next.config.mjs +6 -6
  39. package/template/.claude-pipeline/dashboard/package-lock.json +8148 -8148
  40. package/template/.claude-pipeline/dashboard/package.json +36 -36
  41. package/template/.claude-pipeline/dashboard/postcss.config.mjs +8 -8
  42. package/template/.claude-pipeline/dashboard/server.ts +24 -24
  43. package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/checkpoint/route.ts +23 -23
  44. package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/outputs/[...filepath]/route.ts +18 -18
  45. package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/route.ts +10 -10
  46. package/template/.claude-pipeline/dashboard/src/app/api/pipelines/route.ts +88 -64
  47. package/template/.claude-pipeline/dashboard/src/app/globals.css +52 -52
  48. package/template/.claude-pipeline/dashboard/src/app/layout.tsx +33 -33
  49. package/template/.claude-pipeline/dashboard/src/app/page.tsx +49 -49
  50. package/template/.claude-pipeline/dashboard/src/app/pipeline/[id]/page.tsx +84 -84
  51. package/template/.claude-pipeline/dashboard/src/components/agent-card.tsx +40 -40
  52. package/template/.claude-pipeline/dashboard/src/components/agent-logs.tsx +65 -65
  53. package/template/.claude-pipeline/dashboard/src/components/artifact-viewer.tsx +130 -130
  54. package/template/.claude-pipeline/dashboard/src/components/checkpoint-banner.tsx +59 -59
  55. package/template/.claude-pipeline/dashboard/src/components/new-pipeline-modal.tsx +74 -63
  56. package/template/.claude-pipeline/dashboard/src/components/output-list.tsx +57 -57
  57. package/template/.claude-pipeline/dashboard/src/components/phase-dots.tsx +37 -37
  58. package/template/.claude-pipeline/dashboard/src/components/pipeline-card.tsx +53 -53
  59. package/template/.claude-pipeline/dashboard/src/components/resizable-panels.tsx +91 -91
  60. package/template/.claude-pipeline/dashboard/src/hooks/use-pipeline-detail.ts +65 -65
  61. package/template/.claude-pipeline/dashboard/src/hooks/use-pipelines.ts +60 -60
  62. package/template/.claude-pipeline/dashboard/src/hooks/use-websocket.ts +58 -58
  63. package/template/.claude-pipeline/dashboard/src/lib/agents.ts +30 -30
  64. package/template/.claude-pipeline/dashboard/src/lib/checkpoint.ts +37 -37
  65. package/template/.claude-pipeline/dashboard/src/lib/pipelines.ts +91 -91
  66. package/template/.claude-pipeline/dashboard/src/lib/watcher.ts +90 -90
  67. package/template/.claude-pipeline/dashboard/src/lib/ws-server.ts +123 -123
  68. package/template/.claude-pipeline/dashboard/src/types/pipeline.ts +61 -61
  69. package/template/.claude-pipeline/dashboard/tailwind.config.ts +31 -31
  70. package/template/.claude-pipeline/dashboard/tsconfig.json +26 -26
  71. package/template/.claude-pipeline/runner/dist/checkpoint-waiter.d.ts +6 -0
  72. package/template/.claude-pipeline/runner/dist/checkpoint-waiter.js +43 -0
  73. package/template/.claude-pipeline/runner/dist/checkpoint-waiter.js.map +1 -0
  74. package/template/.claude-pipeline/runner/dist/context-watcher.d.ts +19 -0
  75. package/template/.claude-pipeline/runner/dist/context-watcher.js +97 -0
  76. package/template/.claude-pipeline/runner/dist/context-watcher.js.map +1 -0
  77. package/template/.claude-pipeline/runner/dist/pipeline-runner.d.ts +1 -0
  78. package/template/.claude-pipeline/runner/dist/pipeline-runner.js +227 -0
  79. package/template/.claude-pipeline/runner/dist/pipeline-runner.js.map +1 -0
  80. package/template/.claude-pipeline/runner/dist/signal-watcher.d.ts +24 -0
  81. package/template/.claude-pipeline/runner/dist/signal-watcher.js +141 -0
  82. package/template/.claude-pipeline/runner/dist/signal-watcher.js.map +1 -0
  83. package/template/.claude-pipeline/runner/dist/state-manager.d.ts +14 -0
  84. package/template/.claude-pipeline/runner/dist/state-manager.js +80 -0
  85. package/template/.claude-pipeline/runner/dist/state-manager.js.map +1 -0
  86. package/template/.claude-pipeline/runner/dist/types.d.ts +34 -0
  87. package/template/.claude-pipeline/runner/dist/types.js +2 -0
  88. package/template/.claude-pipeline/runner/dist/types.js.map +1 -0
  89. package/template/.claude-pipeline/runner/node_modules/.package-lock.json +101 -0
  90. package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/LICENSE +21 -0
  91. package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/README.md +15 -0
  92. package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/esm.d.mts +111 -0
  93. package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/index.d.ts +996 -0
  94. package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/package.json +84 -0
  95. package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/LICENSE +21 -0
  96. package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/README.md +15 -0
  97. package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/index.d.ts +71 -0
  98. package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/package.json +37 -0
  99. package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/utils.d.ts +9 -0
  100. package/template/.claude-pipeline/runner/node_modules/@types/node/LICENSE +21 -0
  101. package/template/.claude-pipeline/runner/node_modules/@types/node/README.md +15 -0
  102. package/template/.claude-pipeline/runner/node_modules/@types/node/assert/strict.d.ts +8 -0
  103. package/template/.claude-pipeline/runner/node_modules/@types/node/assert.d.ts +1062 -0
  104. package/template/.claude-pipeline/runner/node_modules/@types/node/async_hooks.d.ts +605 -0
  105. package/template/.claude-pipeline/runner/node_modules/@types/node/buffer.buffer.d.ts +471 -0
  106. package/template/.claude-pipeline/runner/node_modules/@types/node/buffer.d.ts +1936 -0
  107. package/template/.claude-pipeline/runner/node_modules/@types/node/child_process.d.ts +1475 -0
  108. package/template/.claude-pipeline/runner/node_modules/@types/node/cluster.d.ts +577 -0
  109. package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
  110. package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/index.d.ts +9 -0
  111. package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  112. package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  113. package/template/.claude-pipeline/runner/node_modules/@types/node/console.d.ts +452 -0
  114. package/template/.claude-pipeline/runner/node_modules/@types/node/constants.d.ts +21 -0
  115. package/template/.claude-pipeline/runner/node_modules/@types/node/crypto.d.ts +4590 -0
  116. package/template/.claude-pipeline/runner/node_modules/@types/node/dgram.d.ts +597 -0
  117. package/template/.claude-pipeline/runner/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  118. package/template/.claude-pipeline/runner/node_modules/@types/node/dns/promises.d.ts +479 -0
  119. package/template/.claude-pipeline/runner/node_modules/@types/node/dns.d.ts +871 -0
  120. package/template/.claude-pipeline/runner/node_modules/@types/node/domain.d.ts +170 -0
  121. package/template/.claude-pipeline/runner/node_modules/@types/node/events.d.ts +977 -0
  122. package/template/.claude-pipeline/runner/node_modules/@types/node/fs/promises.d.ts +1270 -0
  123. package/template/.claude-pipeline/runner/node_modules/@types/node/fs.d.ts +4375 -0
  124. package/template/.claude-pipeline/runner/node_modules/@types/node/globals.d.ts +172 -0
  125. package/template/.claude-pipeline/runner/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  126. package/template/.claude-pipeline/runner/node_modules/@types/node/http.d.ts +2049 -0
  127. package/template/.claude-pipeline/runner/node_modules/@types/node/http2.d.ts +2631 -0
  128. package/template/.claude-pipeline/runner/node_modules/@types/node/https.d.ts +578 -0
  129. package/template/.claude-pipeline/runner/node_modules/@types/node/index.d.ts +93 -0
  130. package/template/.claude-pipeline/runner/node_modules/@types/node/inspector.generated.d.ts +3966 -0
  131. package/template/.claude-pipeline/runner/node_modules/@types/node/module.d.ts +539 -0
  132. package/template/.claude-pipeline/runner/node_modules/@types/node/net.d.ts +1012 -0
  133. package/template/.claude-pipeline/runner/node_modules/@types/node/os.d.ts +506 -0
  134. package/template/.claude-pipeline/runner/node_modules/@types/node/package.json +140 -0
  135. package/template/.claude-pipeline/runner/node_modules/@types/node/path.d.ts +200 -0
  136. package/template/.claude-pipeline/runner/node_modules/@types/node/perf_hooks.d.ts +961 -0
  137. package/template/.claude-pipeline/runner/node_modules/@types/node/process.d.ts +1961 -0
  138. package/template/.claude-pipeline/runner/node_modules/@types/node/punycode.d.ts +117 -0
  139. package/template/.claude-pipeline/runner/node_modules/@types/node/querystring.d.ts +152 -0
  140. package/template/.claude-pipeline/runner/node_modules/@types/node/readline/promises.d.ts +162 -0
  141. package/template/.claude-pipeline/runner/node_modules/@types/node/readline.d.ts +589 -0
  142. package/template/.claude-pipeline/runner/node_modules/@types/node/repl.d.ts +430 -0
  143. package/template/.claude-pipeline/runner/node_modules/@types/node/sea.d.ts +153 -0
  144. package/template/.claude-pipeline/runner/node_modules/@types/node/stream/consumers.d.ts +38 -0
  145. package/template/.claude-pipeline/runner/node_modules/@types/node/stream/promises.d.ts +90 -0
  146. package/template/.claude-pipeline/runner/node_modules/@types/node/stream/web.d.ts +533 -0
  147. package/template/.claude-pipeline/runner/node_modules/@types/node/stream.d.ts +1675 -0
  148. package/template/.claude-pipeline/runner/node_modules/@types/node/string_decoder.d.ts +67 -0
  149. package/template/.claude-pipeline/runner/node_modules/@types/node/test.d.ts +1787 -0
  150. package/template/.claude-pipeline/runner/node_modules/@types/node/timers/promises.d.ts +108 -0
  151. package/template/.claude-pipeline/runner/node_modules/@types/node/timers.d.ts +286 -0
  152. package/template/.claude-pipeline/runner/node_modules/@types/node/tls.d.ts +1259 -0
  153. package/template/.claude-pipeline/runner/node_modules/@types/node/trace_events.d.ts +197 -0
  154. package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  155. package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  156. package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/index.d.ts +93 -0
  157. package/template/.claude-pipeline/runner/node_modules/@types/node/tty.d.ts +208 -0
  158. package/template/.claude-pipeline/runner/node_modules/@types/node/url.d.ts +964 -0
  159. package/template/.claude-pipeline/runner/node_modules/@types/node/util.d.ts +2331 -0
  160. package/template/.claude-pipeline/runner/node_modules/@types/node/v8.d.ts +809 -0
  161. package/template/.claude-pipeline/runner/node_modules/@types/node/vm.d.ts +1001 -0
  162. package/template/.claude-pipeline/runner/node_modules/@types/node/wasi.d.ts +181 -0
  163. package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  164. package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  165. package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/events.d.ts +97 -0
  166. package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  167. package/template/.claude-pipeline/runner/node_modules/@types/node/worker_threads.d.ts +715 -0
  168. package/template/.claude-pipeline/runner/node_modules/@types/node/zlib.d.ts +598 -0
  169. package/template/.claude-pipeline/runner/node_modules/fs-extra/LICENSE +15 -0
  170. package/template/.claude-pipeline/runner/node_modules/fs-extra/README.md +294 -0
  171. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/copy-sync.js +176 -0
  172. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/copy.js +180 -0
  173. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/index.js +7 -0
  174. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/empty/index.js +39 -0
  175. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/file.js +66 -0
  176. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/index.js +23 -0
  177. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/link.js +64 -0
  178. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
  179. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
  180. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink.js +92 -0
  181. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/esm.mjs +68 -0
  182. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/fs/index.js +146 -0
  183. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/index.js +16 -0
  184. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/index.js +16 -0
  185. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  186. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  187. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/output-json.js +12 -0
  188. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  189. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
  190. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
  191. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/index.js +7 -0
  192. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/move-sync.js +55 -0
  193. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/move.js +59 -0
  194. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/output-file/index.js +31 -0
  195. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  196. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/remove/index.js +17 -0
  197. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/async.js +29 -0
  198. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/stat.js +159 -0
  199. package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/utimes.js +36 -0
  200. package/template/.claude-pipeline/runner/node_modules/fs-extra/package.json +71 -0
  201. package/template/.claude-pipeline/runner/node_modules/graceful-fs/LICENSE +15 -0
  202. package/template/.claude-pipeline/runner/node_modules/graceful-fs/README.md +143 -0
  203. package/template/.claude-pipeline/runner/node_modules/graceful-fs/clone.js +23 -0
  204. package/template/.claude-pipeline/runner/node_modules/graceful-fs/graceful-fs.js +448 -0
  205. package/template/.claude-pipeline/runner/node_modules/graceful-fs/legacy-streams.js +118 -0
  206. package/template/.claude-pipeline/runner/node_modules/graceful-fs/package.json +53 -0
  207. package/template/.claude-pipeline/runner/node_modules/graceful-fs/polyfills.js +355 -0
  208. package/template/.claude-pipeline/runner/node_modules/jsonfile/LICENSE +15 -0
  209. package/template/.claude-pipeline/runner/node_modules/jsonfile/README.md +230 -0
  210. package/template/.claude-pipeline/runner/node_modules/jsonfile/index.js +88 -0
  211. package/template/.claude-pipeline/runner/node_modules/jsonfile/package.json +40 -0
  212. package/template/.claude-pipeline/runner/node_modules/jsonfile/utils.js +14 -0
  213. package/template/.claude-pipeline/runner/node_modules/typescript/LICENSE.txt +55 -0
  214. package/template/.claude-pipeline/runner/node_modules/typescript/README.md +50 -0
  215. package/template/.claude-pipeline/runner/node_modules/typescript/SECURITY.md +41 -0
  216. package/template/.claude-pipeline/runner/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  217. package/template/.claude-pipeline/runner/node_modules/typescript/bin/tsc +2 -0
  218. package/template/.claude-pipeline/runner/node_modules/typescript/bin/tsserver +2 -0
  219. package/template/.claude-pipeline/runner/node_modules/typescript/lib/_tsc.js +133818 -0
  220. package/template/.claude-pipeline/runner/node_modules/typescript/lib/_tsserver.js +659 -0
  221. package/template/.claude-pipeline/runner/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  222. package/template/.claude-pipeline/runner/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  223. package/template/.claude-pipeline/runner/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  224. package/template/.claude-pipeline/runner/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  225. package/template/.claude-pipeline/runner/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  226. package/template/.claude-pipeline/runner/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  227. package/template/.claude-pipeline/runner/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  228. package/template/.claude-pipeline/runner/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  229. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.d.ts +22 -0
  230. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
  231. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  232. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  233. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
  234. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
  235. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  236. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  237. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  238. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  239. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
  240. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  241. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  242. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  243. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  244. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  245. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  246. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  247. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  248. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  249. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
  250. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
  251. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  252. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  253. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  254. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  255. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  256. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  257. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  258. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  259. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  260. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  261. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  262. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  263. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  264. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  265. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  266. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  267. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  268. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  269. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  270. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  271. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  272. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
  273. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  274. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  275. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  276. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  277. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  278. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  279. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
  280. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
  281. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  282. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  283. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  284. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  285. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  286. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  287. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
  288. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  289. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
  290. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
  291. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  292. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
  293. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  294. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  295. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  296. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  297. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  298. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  299. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  300. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  301. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
  302. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
  303. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
  304. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
  305. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
  306. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
  307. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
  308. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
  309. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
  310. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
  311. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  312. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  313. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
  314. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  315. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  316. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  317. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
  318. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
  319. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  320. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  321. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  322. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
  323. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
  324. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  325. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  326. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
  327. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  328. package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
  329. package/template/.claude-pipeline/runner/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  330. package/template/.claude-pipeline/runner/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  331. package/template/.claude-pipeline/runner/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  332. package/template/.claude-pipeline/runner/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  333. package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsc.js +8 -0
  334. package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserver.js +8 -0
  335. package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  336. package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  337. package/template/.claude-pipeline/runner/node_modules/typescript/lib/typesMap.json +497 -0
  338. package/template/.claude-pipeline/runner/node_modules/typescript/lib/typescript.d.ts +11437 -0
  339. package/template/.claude-pipeline/runner/node_modules/typescript/lib/typescript.js +200276 -0
  340. package/template/.claude-pipeline/runner/node_modules/typescript/lib/typingsInstaller.js +8 -0
  341. package/template/.claude-pipeline/runner/node_modules/typescript/lib/watchGuard.js +53 -0
  342. package/template/.claude-pipeline/runner/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  343. package/template/.claude-pipeline/runner/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  344. package/template/.claude-pipeline/runner/node_modules/typescript/package.json +120 -0
  345. package/template/.claude-pipeline/runner/node_modules/undici-types/LICENSE +21 -0
  346. package/template/.claude-pipeline/runner/node_modules/undici-types/README.md +6 -0
  347. package/template/.claude-pipeline/runner/node_modules/undici-types/agent.d.ts +31 -0
  348. package/template/.claude-pipeline/runner/node_modules/undici-types/api.d.ts +43 -0
  349. package/template/.claude-pipeline/runner/node_modules/undici-types/balanced-pool.d.ts +29 -0
  350. package/template/.claude-pipeline/runner/node_modules/undici-types/cache.d.ts +36 -0
  351. package/template/.claude-pipeline/runner/node_modules/undici-types/client.d.ts +108 -0
  352. package/template/.claude-pipeline/runner/node_modules/undici-types/connector.d.ts +34 -0
  353. package/template/.claude-pipeline/runner/node_modules/undici-types/content-type.d.ts +21 -0
  354. package/template/.claude-pipeline/runner/node_modules/undici-types/cookies.d.ts +28 -0
  355. package/template/.claude-pipeline/runner/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  356. package/template/.claude-pipeline/runner/node_modules/undici-types/dispatcher.d.ts +256 -0
  357. package/template/.claude-pipeline/runner/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  358. package/template/.claude-pipeline/runner/node_modules/undici-types/errors.d.ts +149 -0
  359. package/template/.claude-pipeline/runner/node_modules/undici-types/eventsource.d.ts +61 -0
  360. package/template/.claude-pipeline/runner/node_modules/undici-types/fetch.d.ts +209 -0
  361. package/template/.claude-pipeline/runner/node_modules/undici-types/file.d.ts +39 -0
  362. package/template/.claude-pipeline/runner/node_modules/undici-types/filereader.d.ts +54 -0
  363. package/template/.claude-pipeline/runner/node_modules/undici-types/formdata.d.ts +108 -0
  364. package/template/.claude-pipeline/runner/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  365. package/template/.claude-pipeline/runner/node_modules/undici-types/global-origin.d.ts +7 -0
  366. package/template/.claude-pipeline/runner/node_modules/undici-types/handlers.d.ts +15 -0
  367. package/template/.claude-pipeline/runner/node_modules/undici-types/header.d.ts +4 -0
  368. package/template/.claude-pipeline/runner/node_modules/undici-types/index.d.ts +71 -0
  369. package/template/.claude-pipeline/runner/node_modules/undici-types/interceptors.d.ts +17 -0
  370. package/template/.claude-pipeline/runner/node_modules/undici-types/mock-agent.d.ts +50 -0
  371. package/template/.claude-pipeline/runner/node_modules/undici-types/mock-client.d.ts +25 -0
  372. package/template/.claude-pipeline/runner/node_modules/undici-types/mock-errors.d.ts +12 -0
  373. package/template/.claude-pipeline/runner/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  374. package/template/.claude-pipeline/runner/node_modules/undici-types/mock-pool.d.ts +25 -0
  375. package/template/.claude-pipeline/runner/node_modules/undici-types/package.json +55 -0
  376. package/template/.claude-pipeline/runner/node_modules/undici-types/patch.d.ts +33 -0
  377. package/template/.claude-pipeline/runner/node_modules/undici-types/pool-stats.d.ts +19 -0
  378. package/template/.claude-pipeline/runner/node_modules/undici-types/pool.d.ts +39 -0
  379. package/template/.claude-pipeline/runner/node_modules/undici-types/proxy-agent.d.ts +28 -0
  380. package/template/.claude-pipeline/runner/node_modules/undici-types/readable.d.ts +65 -0
  381. package/template/.claude-pipeline/runner/node_modules/undici-types/retry-agent.d.ts +8 -0
  382. package/template/.claude-pipeline/runner/node_modules/undici-types/retry-handler.d.ts +116 -0
  383. package/template/.claude-pipeline/runner/node_modules/undici-types/util.d.ts +18 -0
  384. package/template/.claude-pipeline/runner/node_modules/undici-types/webidl.d.ts +228 -0
  385. package/template/.claude-pipeline/runner/node_modules/undici-types/websocket.d.ts +150 -0
  386. package/template/.claude-pipeline/runner/node_modules/universalify/LICENSE +20 -0
  387. package/template/.claude-pipeline/runner/node_modules/universalify/README.md +76 -0
  388. package/template/.claude-pipeline/runner/node_modules/universalify/index.js +24 -0
  389. package/template/.claude-pipeline/runner/node_modules/universalify/package.json +34 -0
  390. package/template/.claude-pipeline/runner/package-lock.json +113 -0
  391. package/template/.claude-pipeline/runner/package.json +19 -0
  392. package/template/.claude-pipeline/runner/src/checkpoint-waiter.ts +51 -0
  393. package/template/.claude-pipeline/runner/src/context-watcher.ts +110 -0
  394. package/template/.claude-pipeline/runner/src/pipeline-runner.ts +274 -0
  395. package/template/.claude-pipeline/runner/src/signal-watcher.ts +168 -0
  396. package/template/.claude-pipeline/runner/src/state-manager.ts +88 -0
  397. package/template/.claude-pipeline/runner/src/types.ts +38 -0
  398. package/template/.claude-pipeline/runner/tsconfig.json +17 -0
  399. package/template/CLAUDE.md +366 -301
  400. package/template/references/context-structure.md +34 -34
  401. package/template/references/pm-context-assembly.md +34 -34
  402. package/template/references/task-context-template.md +65 -65
package/README.md ADDED
@@ -0,0 +1,114 @@
1
+ # create-claude-pipeline
2
+
3
+ Claude Code 파이프라인 시스템을 프로젝트에 설치하고 실시간 모니터링 대시보드를 실행합니다.
4
+
5
+ ![Dashboard Screenshot](https://raw.githubusercontent.com/jaerinjaerin/claude-guide/main/create-claude-pipeline/screenshots/dashboard.png)
6
+
7
+ ## Quick Start
8
+
9
+ ```bash
10
+ npx create-claude-pipeline
11
+ ```
12
+
13
+ 이 한 줄이면 끝입니다. 현재 디렉토리에 파이프라인 시스템이 설치되고 대시보드가 자동으로 열립니다.
14
+
15
+ ## What It Does
16
+
17
+ ### 최초 실행
18
+
19
+ ```
20
+ $ npx create-claude-pipeline
21
+
22
+ 🚀 Claude Pipeline 설치 중...
23
+
24
+ [1/6] 파일 복사 중...
25
+ ✓ .claude/agents/ (8개 복사, 0개 건너뜀)
26
+ ✓ .claude/skills/ (21개 폴더 복사, 0개 건너뜀)
27
+ ✓ references/ (3개 복사, 0개 건너뜀)
28
+ [2/6] CLAUDE.md 병합 중...
29
+ ✓ CLAUDE.md 생성
30
+ [3/6] .claude/settings.json 병합 중...
31
+ ✓ settings.json 생성
32
+ [4/6] .gitignore 업데이트 중...
33
+ ✓ .gitignore에 3개 항목 추가
34
+ [5/6] 대시보드 설치 중...
35
+ ✓ npm install 완료
36
+ [6/6] 대시보드 실행 중...
37
+
38
+ ✅ 완료! 대시보드: http://localhost:3000
39
+ 종료: Ctrl+C
40
+ ```
41
+
42
+ ### 재실행 (이미 설치된 프로젝트)
43
+
44
+ ```
45
+ $ npx create-claude-pipeline
46
+
47
+ ✓ 이미 설치됨 — 대시보드만 실행합니다
48
+
49
+ ✅ 완료! 대시보드: http://localhost:3000
50
+ 종료: Ctrl+C
51
+ ```
52
+
53
+ ## 설치되는 것들
54
+
55
+ ```
56
+ my-project/
57
+ ├── .claude/
58
+ │ ├── agents/ # 9개 AI Agent 정의 (PM, 기획, 디자인, FE, BE, Infra, QA, 보안, 리뷰)
59
+ │ ├── skills/ # 21개 Skill (기획서 작성, API 구현, 테스트 등)
60
+ │ └── settings.json # Claude Code 설정
61
+ ├── .claude-pipeline/
62
+ │ └── dashboard/ # 실시간 모니터링 대시보드 (Next.js)
63
+ ├── references/ # 파이프라인 참조 문서
64
+ ├── pipelines/ # 파이프라인 실행 데이터 (자동 생성)
65
+ ├── CLAUDE.md # 파이프라인 가이드 (기존 파일에 병합됨)
66
+ └── .gitignore # 파이프라인 항목 자동 추가
67
+ ```
68
+
69
+ ## 파이프라인 구조
70
+
71
+ 5단계 파이프라인으로 기능 요청을 처리합니다:
72
+
73
+ | Phase | Agent | 역할 |
74
+ |-------|-------|------|
75
+ | 0. 인풋 | PM (Alex) | 요구사항 분석, 작업 범위 결정 |
76
+ | 1. 기획 | 기획자 (Mina) | 기능 명세, 화면 목록, API 초안 |
77
+ | 2. 설계 | 디자이너 (Lena) + BE (Sam) | UI 명세 + API/DB 설계 (병렬) |
78
+ | 3. 구현 | FE (Jay) + BE (Sam) + Infra (Dex) | 컴포넌트, API, 인프라 구현 |
79
+ | 4. QA | QA (Eva) + 보안 (Rex) + 리뷰 (Nora) | 테스트, 보안 검토, 코드 리뷰 |
80
+
81
+ 각 Phase 사이에 체크포인트가 있어 사용자 승인 후 다음 단계로 진행합니다.
82
+
83
+ ## 대시보드 기능
84
+
85
+ - **파이프라인 목록**: 진행 중인/완료된 파이프라인을 한눈에 확인
86
+ - **실시간 모니터링**: WebSocket으로 Agent 활동을 실시간 확인
87
+ - **Agent 상태**: 9개 Agent의 작업 상태 (대기/작업중/완료) 표시
88
+ - **산출물 뷰어**: 기획서, 디자인 명세, API 명세 등을 마크다운으로 렌더링
89
+ - **체크포인트 승인**: 대시보드에서 직접 Phase 전환 승인/거절
90
+
91
+ ## 기존 프로젝트와의 호환
92
+
93
+ 이미 `CLAUDE.md`나 `.claude/settings.json`이 있는 프로젝트에서도 안전하게 사용할 수 있습니다:
94
+
95
+ - **CLAUDE.md**: 기존 내용을 보존하고 파이프라인 섹션을 끝에 추가
96
+ - **settings.json**: 기존 설정을 유지하고 새 설정만 병합
97
+ - **agents/skills**: 동일 이름 파일이 있으면 건너뛰고 없는 것만 추가
98
+
99
+ ## 사전 요구사항
100
+
101
+ - **Node.js 18+**
102
+ - **Claude Code CLI** (`claude` 명령어가 설치되어 있어야 파이프라인 실행 가능)
103
+ - **superpowers 플러그인**: `claude plugin add superpowers`
104
+
105
+ ## Options
106
+
107
+ ```
108
+ npx create-claude-pipeline --help # 사용법 안내
109
+ npx create-claude-pipeline --version # 버전 확인
110
+ ```
111
+
112
+ ## License
113
+
114
+ MIT