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.
- package/README.md +114 -0
- package/bin/cli.js +368 -359
- package/package.json +32 -32
- package/template/.claude/agents/be-developer.md +218 -218
- package/template/.claude/agents/designer.md +192 -192
- package/template/.claude/agents/fe-developer.md +175 -175
- package/template/.claude/agents/infra-developer.md +270 -270
- package/template/.claude/agents/planner.md +126 -126
- package/template/.claude/agents/pm.md +130 -130
- package/template/.claude/agents/qa-engineer.md +270 -270
- package/template/.claude/agents/security-reviewer.md +281 -281
- package/template/.claude/settings.json +5 -5
- package/template/.claude/skills/analyze-requirements/SKILL.md +166 -166
- package/template/.claude/skills/api-integration/SKILL.md +354 -354
- package/template/.claude/skills/assemble-context/SKILL.md +192 -192
- package/template/.claude/skills/db-migration/SKILL.md +228 -228
- package/template/.claude/skills/explore-be-codebase/SKILL.md +260 -260
- package/template/.claude/skills/explore-codebase/SKILL.md +190 -190
- package/template/.claude/skills/explore-design-system/SKILL.md +150 -150
- package/template/.claude/skills/explore-fe-codebase/SKILL.md +209 -209
- package/template/.claude/skills/explore-implementation/SKILL.md +147 -147
- package/template/.claude/skills/explore-infra/SKILL.md +242 -242
- package/template/.claude/skills/implement-api/SKILL.md +477 -477
- package/template/.claude/skills/implement-components/SKILL.md +217 -217
- package/template/.claude/skills/review-auth/SKILL.md +175 -175
- package/template/.claude/skills/scan-vulnerabilities/SKILL.md +200 -200
- package/template/.claude/skills/write-cicd/SKILL.md +293 -293
- package/template/.claude/skills/write-design-spec/SKILL.md +363 -363
- package/template/.claude/skills/write-dockerfile/SKILL.md +269 -269
- package/template/.claude/skills/write-plan-doc/SKILL.md +164 -164
- package/template/.claude/skills/write-plan-doc/assets/plan_template.html +251 -251
- package/template/.claude/skills/write-qa-report/SKILL.md +151 -151
- package/template/.claude/skills/write-security-report/SKILL.md +185 -185
- package/template/.claude/skills/write-test-cases/SKILL.md +234 -234
- package/template/.claude-pipeline/dashboard/.env.example +1 -1
- package/template/.claude-pipeline/dashboard/.eslintrc.json +3 -3
- package/template/.claude-pipeline/dashboard/README.md +36 -36
- package/template/.claude-pipeline/dashboard/next.config.mjs +6 -6
- package/template/.claude-pipeline/dashboard/package-lock.json +8148 -8148
- package/template/.claude-pipeline/dashboard/package.json +36 -36
- package/template/.claude-pipeline/dashboard/postcss.config.mjs +8 -8
- package/template/.claude-pipeline/dashboard/server.ts +24 -24
- package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/checkpoint/route.ts +23 -23
- package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/outputs/[...filepath]/route.ts +18 -18
- package/template/.claude-pipeline/dashboard/src/app/api/pipelines/[id]/route.ts +10 -10
- package/template/.claude-pipeline/dashboard/src/app/api/pipelines/route.ts +88 -64
- package/template/.claude-pipeline/dashboard/src/app/globals.css +52 -52
- package/template/.claude-pipeline/dashboard/src/app/layout.tsx +33 -33
- package/template/.claude-pipeline/dashboard/src/app/page.tsx +49 -49
- package/template/.claude-pipeline/dashboard/src/app/pipeline/[id]/page.tsx +84 -84
- package/template/.claude-pipeline/dashboard/src/components/agent-card.tsx +40 -40
- package/template/.claude-pipeline/dashboard/src/components/agent-logs.tsx +65 -65
- package/template/.claude-pipeline/dashboard/src/components/artifact-viewer.tsx +130 -130
- package/template/.claude-pipeline/dashboard/src/components/checkpoint-banner.tsx +59 -59
- package/template/.claude-pipeline/dashboard/src/components/new-pipeline-modal.tsx +74 -63
- package/template/.claude-pipeline/dashboard/src/components/output-list.tsx +57 -57
- package/template/.claude-pipeline/dashboard/src/components/phase-dots.tsx +37 -37
- package/template/.claude-pipeline/dashboard/src/components/pipeline-card.tsx +53 -53
- package/template/.claude-pipeline/dashboard/src/components/resizable-panels.tsx +91 -91
- package/template/.claude-pipeline/dashboard/src/hooks/use-pipeline-detail.ts +65 -65
- package/template/.claude-pipeline/dashboard/src/hooks/use-pipelines.ts +60 -60
- package/template/.claude-pipeline/dashboard/src/hooks/use-websocket.ts +58 -58
- package/template/.claude-pipeline/dashboard/src/lib/agents.ts +30 -30
- package/template/.claude-pipeline/dashboard/src/lib/checkpoint.ts +37 -37
- package/template/.claude-pipeline/dashboard/src/lib/pipelines.ts +91 -91
- package/template/.claude-pipeline/dashboard/src/lib/watcher.ts +90 -90
- package/template/.claude-pipeline/dashboard/src/lib/ws-server.ts +123 -123
- package/template/.claude-pipeline/dashboard/src/types/pipeline.ts +61 -61
- package/template/.claude-pipeline/dashboard/tailwind.config.ts +31 -31
- package/template/.claude-pipeline/dashboard/tsconfig.json +26 -26
- package/template/.claude-pipeline/runner/dist/checkpoint-waiter.d.ts +6 -0
- package/template/.claude-pipeline/runner/dist/checkpoint-waiter.js +43 -0
- package/template/.claude-pipeline/runner/dist/checkpoint-waiter.js.map +1 -0
- package/template/.claude-pipeline/runner/dist/context-watcher.d.ts +19 -0
- package/template/.claude-pipeline/runner/dist/context-watcher.js +97 -0
- package/template/.claude-pipeline/runner/dist/context-watcher.js.map +1 -0
- package/template/.claude-pipeline/runner/dist/pipeline-runner.d.ts +1 -0
- package/template/.claude-pipeline/runner/dist/pipeline-runner.js +227 -0
- package/template/.claude-pipeline/runner/dist/pipeline-runner.js.map +1 -0
- package/template/.claude-pipeline/runner/dist/signal-watcher.d.ts +24 -0
- package/template/.claude-pipeline/runner/dist/signal-watcher.js +141 -0
- package/template/.claude-pipeline/runner/dist/signal-watcher.js.map +1 -0
- package/template/.claude-pipeline/runner/dist/state-manager.d.ts +14 -0
- package/template/.claude-pipeline/runner/dist/state-manager.js +80 -0
- package/template/.claude-pipeline/runner/dist/state-manager.js.map +1 -0
- package/template/.claude-pipeline/runner/dist/types.d.ts +34 -0
- package/template/.claude-pipeline/runner/dist/types.js +2 -0
- package/template/.claude-pipeline/runner/dist/types.js.map +1 -0
- package/template/.claude-pipeline/runner/node_modules/.package-lock.json +101 -0
- package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/LICENSE +21 -0
- package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/README.md +15 -0
- package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/esm.d.mts +111 -0
- package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/index.d.ts +996 -0
- package/template/.claude-pipeline/runner/node_modules/@types/fs-extra/package.json +84 -0
- package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/LICENSE +21 -0
- package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/README.md +15 -0
- package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/index.d.ts +71 -0
- package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/package.json +37 -0
- package/template/.claude-pipeline/runner/node_modules/@types/jsonfile/utils.d.ts +9 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/LICENSE +21 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/README.md +15 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/assert.d.ts +1062 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/buffer.d.ts +1936 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/child_process.d.ts +1475 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/cluster.d.ts +577 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/console.d.ts +452 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/constants.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/crypto.d.ts +4590 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/dgram.d.ts +597 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/dns.d.ts +871 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/domain.d.ts +170 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/events.d.ts +977 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/fs.d.ts +4375 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/globals.d.ts +172 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/http.d.ts +2049 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/http2.d.ts +2631 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/https.d.ts +578 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/index.d.ts +93 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/module.d.ts +539 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/net.d.ts +1012 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/os.d.ts +506 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/package.json +140 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/path.d.ts +200 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/process.d.ts +1961 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/punycode.d.ts +117 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/querystring.d.ts +152 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/readline.d.ts +589 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/repl.d.ts +430 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/sea.d.ts +153 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/stream/web.d.ts +533 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/stream.d.ts +1675 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/test.d.ts +1787 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/timers.d.ts +286 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/tls.d.ts +1259 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/trace_events.d.ts +197 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/tty.d.ts +208 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/url.d.ts +964 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/util.d.ts +2331 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/v8.d.ts +809 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/vm.d.ts +1001 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/wasi.d.ts +181 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/template/.claude-pipeline/runner/node_modules/@types/node/zlib.d.ts +598 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/LICENSE +15 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/README.md +294 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/copy-sync.js +176 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/copy.js +180 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/file.js +66 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/ensure/symlink.js +92 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/esm.mjs +68 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/fs/index.js +146 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/index.js +16 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/index.js +16 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/index.js +7 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/move/move.js +59 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/output-file/index.js +31 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/async.js +29 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/stat.js +159 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/lib/util/utimes.js +36 -0
- package/template/.claude-pipeline/runner/node_modules/fs-extra/package.json +71 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/LICENSE +15 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/README.md +143 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/clone.js +23 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/package.json +53 -0
- package/template/.claude-pipeline/runner/node_modules/graceful-fs/polyfills.js +355 -0
- package/template/.claude-pipeline/runner/node_modules/jsonfile/LICENSE +15 -0
- package/template/.claude-pipeline/runner/node_modules/jsonfile/README.md +230 -0
- package/template/.claude-pipeline/runner/node_modules/jsonfile/index.js +88 -0
- package/template/.claude-pipeline/runner/node_modules/jsonfile/package.json +40 -0
- package/template/.claude-pipeline/runner/node_modules/jsonfile/utils.js +14 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/LICENSE.txt +55 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/README.md +50 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/SECURITY.md +41 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/bin/tsc +2 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/bin/tsserver +2 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/_tsc.js +133818 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/_tsserver.js +659 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.d.ts +22 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsc.js +8 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserver.js +8 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/typesMap.json +497 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/typescript.d.ts +11437 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/typescript.js +200276 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/watchGuard.js +53 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
- package/template/.claude-pipeline/runner/node_modules/typescript/package.json +120 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/LICENSE +21 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/README.md +6 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/agent.d.ts +31 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/api.d.ts +43 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/cache.d.ts +36 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/client.d.ts +108 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/connector.d.ts +34 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/content-type.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/cookies.d.ts +28 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/errors.d.ts +149 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/eventsource.d.ts +61 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/fetch.d.ts +209 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/file.d.ts +39 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/filereader.d.ts +54 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/formdata.d.ts +108 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/global-origin.d.ts +7 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/handlers.d.ts +15 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/header.d.ts +4 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/index.d.ts +71 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/interceptors.d.ts +17 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/mock-client.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/package.json +55 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/patch.d.ts +33 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/pool.d.ts +39 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/readable.d.ts +65 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/util.d.ts +18 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/webidl.d.ts +228 -0
- package/template/.claude-pipeline/runner/node_modules/undici-types/websocket.d.ts +150 -0
- package/template/.claude-pipeline/runner/node_modules/universalify/LICENSE +20 -0
- package/template/.claude-pipeline/runner/node_modules/universalify/README.md +76 -0
- package/template/.claude-pipeline/runner/node_modules/universalify/index.js +24 -0
- package/template/.claude-pipeline/runner/node_modules/universalify/package.json +34 -0
- package/template/.claude-pipeline/runner/package-lock.json +113 -0
- package/template/.claude-pipeline/runner/package.json +19 -0
- package/template/.claude-pipeline/runner/src/checkpoint-waiter.ts +51 -0
- package/template/.claude-pipeline/runner/src/context-watcher.ts +110 -0
- package/template/.claude-pipeline/runner/src/pipeline-runner.ts +274 -0
- package/template/.claude-pipeline/runner/src/signal-watcher.ts +168 -0
- package/template/.claude-pipeline/runner/src/state-manager.ts +88 -0
- package/template/.claude-pipeline/runner/src/types.ts +38 -0
- package/template/.claude-pipeline/runner/tsconfig.json +17 -0
- package/template/CLAUDE.md +366 -301
- package/template/references/context-structure.md +34 -34
- package/template/references/pm-context-assembly.md +34 -34
- 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
|
+

|
|
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
|