@lbruton/spec-workflow-mcp 2.2.4
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/CHANGELOG.md +955 -0
- package/LICENSE +674 -0
- package/README.ar.md +314 -0
- package/README.de.md +314 -0
- package/README.es.md +314 -0
- package/README.fr.md +314 -0
- package/README.it.md +314 -0
- package/README.ja.md +316 -0
- package/README.ko.md +314 -0
- package/README.md +373 -0
- package/README.pt.md +314 -0
- package/README.ru.md +314 -0
- package/README.zh.md +314 -0
- package/dist/__tests__/config.test.d.ts +2 -0
- package/dist/__tests__/config.test.d.ts.map +1 -0
- package/dist/__tests__/config.test.js +264 -0
- package/dist/__tests__/config.test.js.map +1 -0
- package/dist/__tests__/index-args.test.d.ts +2 -0
- package/dist/__tests__/index-args.test.d.ts.map +1 -0
- package/dist/__tests__/index-args.test.js +43 -0
- package/dist/__tests__/index-args.test.js.map +1 -0
- package/dist/__tests__/index-entrypoint.test.d.ts +2 -0
- package/dist/__tests__/index-entrypoint.test.d.ts.map +1 -0
- package/dist/__tests__/index-entrypoint.test.js +23 -0
- package/dist/__tests__/index-entrypoint.test.js.map +1 -0
- package/dist/config.d.ts +26 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +188 -0
- package/dist/config.js.map +1 -0
- package/dist/core/__tests__/git-utils.test.d.ts +2 -0
- package/dist/core/__tests__/git-utils.test.d.ts.map +1 -0
- package/dist/core/__tests__/git-utils.test.js +179 -0
- package/dist/core/__tests__/git-utils.test.js.map +1 -0
- package/dist/core/__tests__/mdx-validator.test.d.ts +2 -0
- package/dist/core/__tests__/mdx-validator.test.d.ts.map +1 -0
- package/dist/core/__tests__/mdx-validator.test.js +42 -0
- package/dist/core/__tests__/mdx-validator.test.js.map +1 -0
- package/dist/core/__tests__/path-utils.test.d.ts +2 -0
- package/dist/core/__tests__/path-utils.test.d.ts.map +1 -0
- package/dist/core/__tests__/path-utils.test.js +344 -0
- package/dist/core/__tests__/path-utils.test.js.map +1 -0
- package/dist/core/__tests__/project-registry.test.d.ts +2 -0
- package/dist/core/__tests__/project-registry.test.d.ts.map +1 -0
- package/dist/core/__tests__/project-registry.test.js +62 -0
- package/dist/core/__tests__/project-registry.test.js.map +1 -0
- package/dist/core/__tests__/security-utils.test.d.ts +2 -0
- package/dist/core/__tests__/security-utils.test.d.ts.map +1 -0
- package/dist/core/__tests__/security-utils.test.js +643 -0
- package/dist/core/__tests__/security-utils.test.js.map +1 -0
- package/dist/core/__tests__/task-validator.test.d.ts +2 -0
- package/dist/core/__tests__/task-validator.test.d.ts.map +1 -0
- package/dist/core/__tests__/task-validator.test.js +237 -0
- package/dist/core/__tests__/task-validator.test.js.map +1 -0
- package/dist/core/archive-service.d.ts +10 -0
- package/dist/core/archive-service.d.ts.map +1 -0
- package/dist/core/archive-service.js +99 -0
- package/dist/core/archive-service.js.map +1 -0
- package/dist/core/dashboard-session.d.ts +49 -0
- package/dist/core/dashboard-session.d.ts.map +1 -0
- package/dist/core/dashboard-session.js +132 -0
- package/dist/core/dashboard-session.js.map +1 -0
- package/dist/core/git-utils.d.ts +25 -0
- package/dist/core/git-utils.d.ts.map +1 -0
- package/dist/core/git-utils.js +87 -0
- package/dist/core/git-utils.js.map +1 -0
- package/dist/core/global-dir.d.ts +44 -0
- package/dist/core/global-dir.d.ts.map +1 -0
- package/dist/core/global-dir.js +74 -0
- package/dist/core/global-dir.js.map +1 -0
- package/dist/core/implementation-log-migrator.d.ts +41 -0
- package/dist/core/implementation-log-migrator.d.ts.map +1 -0
- package/dist/core/implementation-log-migrator.js +258 -0
- package/dist/core/implementation-log-migrator.js.map +1 -0
- package/dist/core/mdx-validator.d.ts +14 -0
- package/dist/core/mdx-validator.d.ts.map +1 -0
- package/dist/core/mdx-validator.js +34 -0
- package/dist/core/mdx-validator.js.map +1 -0
- package/dist/core/parser.d.ts +11 -0
- package/dist/core/parser.d.ts.map +1 -0
- package/dist/core/parser.js +126 -0
- package/dist/core/parser.js.map +1 -0
- package/dist/core/path-utils.d.ts +63 -0
- package/dist/core/path-utils.d.ts.map +1 -0
- package/dist/core/path-utils.js +288 -0
- package/dist/core/path-utils.js.map +1 -0
- package/dist/core/project-registry.d.ts +94 -0
- package/dist/core/project-registry.d.ts.map +1 -0
- package/dist/core/project-registry.js +297 -0
- package/dist/core/project-registry.js.map +1 -0
- package/dist/core/security-utils.d.ts +97 -0
- package/dist/core/security-utils.d.ts.map +1 -0
- package/dist/core/security-utils.js +264 -0
- package/dist/core/security-utils.js.map +1 -0
- package/dist/core/task-parser.d.ts +63 -0
- package/dist/core/task-parser.d.ts.map +1 -0
- package/dist/core/task-parser.js +332 -0
- package/dist/core/task-parser.js.map +1 -0
- package/dist/core/task-validator.d.ts +35 -0
- package/dist/core/task-validator.d.ts.map +1 -0
- package/dist/core/task-validator.js +236 -0
- package/dist/core/task-validator.js.map +1 -0
- package/dist/core/workspace-initializer.d.ts +16 -0
- package/dist/core/workspace-initializer.d.ts.map +1 -0
- package/dist/core/workspace-initializer.js +165 -0
- package/dist/core/workspace-initializer.js.map +1 -0
- package/dist/dashboard/__tests__/approval-storage-path-resolution.test.d.ts +2 -0
- package/dist/dashboard/__tests__/approval-storage-path-resolution.test.d.ts.map +1 -0
- package/dist/dashboard/__tests__/approval-storage-path-resolution.test.js +69 -0
- package/dist/dashboard/__tests__/approval-storage-path-resolution.test.js.map +1 -0
- package/dist/dashboard/__tests__/multi-server-approvals-content.test.d.ts +2 -0
- package/dist/dashboard/__tests__/multi-server-approvals-content.test.d.ts.map +1 -0
- package/dist/dashboard/__tests__/multi-server-approvals-content.test.js +116 -0
- package/dist/dashboard/__tests__/multi-server-approvals-content.test.js.map +1 -0
- package/dist/dashboard/__tests__/watcher-error-handling.test.d.ts +2 -0
- package/dist/dashboard/__tests__/watcher-error-handling.test.d.ts.map +1 -0
- package/dist/dashboard/__tests__/watcher-error-handling.test.js +118 -0
- package/dist/dashboard/__tests__/watcher-error-handling.test.js.map +1 -0
- package/dist/dashboard/approval-storage.d.ts +139 -0
- package/dist/dashboard/approval-storage.d.ts.map +1 -0
- package/dist/dashboard/approval-storage.js +586 -0
- package/dist/dashboard/approval-storage.js.map +1 -0
- package/dist/dashboard/execution-history-manager.d.ts +52 -0
- package/dist/dashboard/execution-history-manager.d.ts.map +1 -0
- package/dist/dashboard/execution-history-manager.js +161 -0
- package/dist/dashboard/execution-history-manager.js.map +1 -0
- package/dist/dashboard/implementation-log-manager.d.ts +97 -0
- package/dist/dashboard/implementation-log-manager.d.ts.map +1 -0
- package/dist/dashboard/implementation-log-manager.js +586 -0
- package/dist/dashboard/implementation-log-manager.js.map +1 -0
- package/dist/dashboard/job-scheduler.d.ts +91 -0
- package/dist/dashboard/job-scheduler.d.ts.map +1 -0
- package/dist/dashboard/job-scheduler.js +321 -0
- package/dist/dashboard/job-scheduler.js.map +1 -0
- package/dist/dashboard/multi-server.d.ts +42 -0
- package/dist/dashboard/multi-server.d.ts.map +1 -0
- package/dist/dashboard/multi-server.js +1313 -0
- package/dist/dashboard/multi-server.js.map +1 -0
- package/dist/dashboard/parser.d.ts +18 -0
- package/dist/dashboard/parser.d.ts.map +1 -0
- package/dist/dashboard/parser.js +243 -0
- package/dist/dashboard/parser.js.map +1 -0
- package/dist/dashboard/project-manager.d.ts +82 -0
- package/dist/dashboard/project-manager.d.ts.map +1 -0
- package/dist/dashboard/project-manager.js +257 -0
- package/dist/dashboard/project-manager.js.map +1 -0
- package/dist/dashboard/public/assets/Inter-Bold-CD3Pr7BX.woff2 +0 -0
- package/dist/dashboard/public/assets/Inter-Medium-B_8v_WHh.woff2 +0 -0
- package/dist/dashboard/public/assets/Inter-Regular-DRVdRqcI.woff2 +0 -0
- package/dist/dashboard/public/assets/Inter-SemiBold-CtskMddL.woff2 +0 -0
- package/dist/dashboard/public/assets/JetBrainsMono-Bold-D4WEaHbo.woff2 +0 -0
- package/dist/dashboard/public/assets/JetBrainsMono-Medium-3S3k2nMz.woff2 +0 -0
- package/dist/dashboard/public/assets/JetBrainsMono-Regular-BQaDgvhP.woff2 +0 -0
- package/dist/dashboard/public/assets/Tableau10-B-NsZVaP.js +1 -0
- package/dist/dashboard/public/assets/apl-B4CMkyY2.js +1 -0
- package/dist/dashboard/public/assets/arc-C8LPXB-J.js +1 -0
- package/dist/dashboard/public/assets/array-BKyUJesY.js +1 -0
- package/dist/dashboard/public/assets/asciiarmor-Df11BRmG.js +1 -0
- package/dist/dashboard/public/assets/asn1-EdZsLKOL.js +1 -0
- package/dist/dashboard/public/assets/asterisk-B-8jnY81.js +1 -0
- package/dist/dashboard/public/assets/blockDiagram-c4efeb88-RidjsOEy.js +118 -0
- package/dist/dashboard/public/assets/brainfuck-C4LP7Hcl.js +1 -0
- package/dist/dashboard/public/assets/c4Diagram-c83219d4-CAH3hSpm.js +10 -0
- package/dist/dashboard/public/assets/channel-CmDIZRCD.js +1 -0
- package/dist/dashboard/public/assets/classDiagram-beda092f-Bo46Efmw.js +2 -0
- package/dist/dashboard/public/assets/classDiagram-v2-2358418a-Be57sb3z.js +2 -0
- package/dist/dashboard/public/assets/clike-B9uivgTg.js +1 -0
- package/dist/dashboard/public/assets/clojure-BMjYHr_A.js +1 -0
- package/dist/dashboard/public/assets/clone-BiekPeZp.js +1 -0
- package/dist/dashboard/public/assets/cmake-BQqOBYOt.js +1 -0
- package/dist/dashboard/public/assets/cobol-CWcv1MsR.js +1 -0
- package/dist/dashboard/public/assets/coffeescript-S37ZYGWr.js +1 -0
- package/dist/dashboard/public/assets/commonlisp-DBKNyK5s.js +1 -0
- package/dist/dashboard/public/assets/createText-1719965b-YurEYFNx.js +7 -0
- package/dist/dashboard/public/assets/crystal-SjHAIU92.js +1 -0
- package/dist/dashboard/public/assets/css-BnMrqG3P.js +1 -0
- package/dist/dashboard/public/assets/cypher-C_CwsFkJ.js +1 -0
- package/dist/dashboard/public/assets/d-pRatUO7H.js +1 -0
- package/dist/dashboard/public/assets/diff-DbItnlRl.js +1 -0
- package/dist/dashboard/public/assets/dockerfile-BKs6k2Af.js +1 -0
- package/dist/dashboard/public/assets/dtd-DF_7sFjM.js +1 -0
- package/dist/dashboard/public/assets/dylan-DwRh75JA.js +1 -0
- package/dist/dashboard/public/assets/ebnf-CDyGwa7X.js +1 -0
- package/dist/dashboard/public/assets/ecl-Cabwm37j.js +1 -0
- package/dist/dashboard/public/assets/edges-96097737--BjsAXwD.js +4 -0
- package/dist/dashboard/public/assets/eiffel-CnydiIhH.js +1 -0
- package/dist/dashboard/public/assets/elm-vLlmbW-K.js +1 -0
- package/dist/dashboard/public/assets/erDiagram-0228fc6a-BLGuJz36.js +51 -0
- package/dist/dashboard/public/assets/erlang-BNw1qcRV.js +1 -0
- package/dist/dashboard/public/assets/factor-kuTfRLto.js +1 -0
- package/dist/dashboard/public/assets/fcl-Kvtd6kyn.js +1 -0
- package/dist/dashboard/public/assets/flowDb-c6c81e3f-C8vD2iEO.js +10 -0
- package/dist/dashboard/public/assets/flowDiagram-50d868cf-BhxgVmOU.js +4 -0
- package/dist/dashboard/public/assets/flowDiagram-v2-4f6560a1-DvKCh0ha.js +1 -0
- package/dist/dashboard/public/assets/flowchart-elk-definition-6af322e1-CxOZDcEC.js +139 -0
- package/dist/dashboard/public/assets/forth-Ffai-XNe.js +1 -0
- package/dist/dashboard/public/assets/fortran-DYz_wnZ1.js +1 -0
- package/dist/dashboard/public/assets/ganttDiagram-a2739b55-vP9JOLba.js +257 -0
- package/dist/dashboard/public/assets/gas-Bneqetm1.js +1 -0
- package/dist/dashboard/public/assets/gherkin-heZmZLOM.js +1 -0
- package/dist/dashboard/public/assets/gitGraphDiagram-82fe8481-Cw0sm0i1.js +70 -0
- package/dist/dashboard/public/assets/graph-DKTWMcEG.js +1 -0
- package/dist/dashboard/public/assets/groovy-D9Dt4D0W.js +1 -0
- package/dist/dashboard/public/assets/haskell-Cw1EW3IL.js +1 -0
- package/dist/dashboard/public/assets/haxe-H-WmDvRZ.js +1 -0
- package/dist/dashboard/public/assets/http-DBlCnlav.js +1 -0
- package/dist/dashboard/public/assets/idl-BEugSyMb.js +1 -0
- package/dist/dashboard/public/assets/index-1zJPiVa8.js +3 -0
- package/dist/dashboard/public/assets/index-5325376f-DWs4kCT4.js +1 -0
- package/dist/dashboard/public/assets/index-BITJ9OoM.js +1 -0
- package/dist/dashboard/public/assets/index-C38JlXWp.js +1 -0
- package/dist/dashboard/public/assets/index-CCjPelL2.js +2 -0
- package/dist/dashboard/public/assets/index-CD9WQNmE.js +1 -0
- package/dist/dashboard/public/assets/index-CU7K5Zcb.js +1 -0
- package/dist/dashboard/public/assets/index-CXQVOhJV.js +1 -0
- package/dist/dashboard/public/assets/index-CXcaRrZ2.js +1 -0
- package/dist/dashboard/public/assets/index-ChLAL6g5.css +1 -0
- package/dist/dashboard/public/assets/index-D0o1vVOe.js +7 -0
- package/dist/dashboard/public/assets/index-DCsxqRvu.js +1 -0
- package/dist/dashboard/public/assets/index-DL3iiiRz.js +1 -0
- package/dist/dashboard/public/assets/index-DMv2_K2V.js +1 -0
- package/dist/dashboard/public/assets/index-DX7EEJ21.js +1 -0
- package/dist/dashboard/public/assets/index-Dey_HIH7.js +1 -0
- package/dist/dashboard/public/assets/index-DzDTRLhf.js +1 -0
- package/dist/dashboard/public/assets/index-OePkEWBg.js +1 -0
- package/dist/dashboard/public/assets/index-_d82jdTP.js +1 -0
- package/dist/dashboard/public/assets/index-yCKz4OXA.js +319 -0
- package/dist/dashboard/public/assets/infoDiagram-8eee0895-BRq08fZf.js +7 -0
- package/dist/dashboard/public/assets/init-Gi6I4Gst.js +1 -0
- package/dist/dashboard/public/assets/javascript-iXu5QeM3.js +1 -0
- package/dist/dashboard/public/assets/journeyDiagram-c64418c1-Cf8D2OC8.js +139 -0
- package/dist/dashboard/public/assets/julia-DuME0IfC.js +1 -0
- package/dist/dashboard/public/assets/katex-XbL3y5x-.js +261 -0
- package/dist/dashboard/public/assets/layout-CVdidYA-.js +1 -0
- package/dist/dashboard/public/assets/line-BdckgA27.js +1 -0
- package/dist/dashboard/public/assets/linear-C9Nh3JLa.js +1 -0
- package/dist/dashboard/public/assets/livescript-BwQOo05w.js +1 -0
- package/dist/dashboard/public/assets/lua-BgMRiT3U.js +1 -0
- package/dist/dashboard/public/assets/mathematica-DTrFuWx2.js +1 -0
- package/dist/dashboard/public/assets/mbox-CNhZ1qSd.js +1 -0
- package/dist/dashboard/public/assets/mindmap-definition-8da855dc-CK-y1AmO.js +415 -0
- package/dist/dashboard/public/assets/mirc-CjQqDB4T.js +1 -0
- package/dist/dashboard/public/assets/mllike-CXdrOF99.js +1 -0
- package/dist/dashboard/public/assets/modelica-Dc1JOy9r.js +1 -0
- package/dist/dashboard/public/assets/mscgen-BA5vi2Kp.js +1 -0
- package/dist/dashboard/public/assets/mumps-BT43cFF4.js +1 -0
- package/dist/dashboard/public/assets/nginx-DdIZxoE0.js +1 -0
- package/dist/dashboard/public/assets/nsis-LdVXkNf5.js +1 -0
- package/dist/dashboard/public/assets/ntriples-BfvgReVJ.js +1 -0
- package/dist/dashboard/public/assets/octave-Ck1zUtKM.js +1 -0
- package/dist/dashboard/public/assets/ordinal-Cboi1Yqb.js +1 -0
- package/dist/dashboard/public/assets/oz-BzwKVEFT.js +1 -0
- package/dist/dashboard/public/assets/pascal--L3eBynH.js +1 -0
- package/dist/dashboard/public/assets/path-CbwjOpE9.js +1 -0
- package/dist/dashboard/public/assets/perl-CdXCOZ3F.js +1 -0
- package/dist/dashboard/public/assets/pieDiagram-a8764435-T8V0JN2R.js +35 -0
- package/dist/dashboard/public/assets/pig-CevX1Tat.js +1 -0
- package/dist/dashboard/public/assets/powershell-CFHJl5sT.js +1 -0
- package/dist/dashboard/public/assets/properties-C78fOPTZ.js +1 -0
- package/dist/dashboard/public/assets/protobuf-ChK-085T.js +1 -0
- package/dist/dashboard/public/assets/pug-DeIclll2.js +1 -0
- package/dist/dashboard/public/assets/puppet-DMA9R1ak.js +1 -0
- package/dist/dashboard/public/assets/python-BuPzkPfP.js +1 -0
- package/dist/dashboard/public/assets/q-pXgVlZs6.js +1 -0
- package/dist/dashboard/public/assets/quadrantDiagram-1e28029f-CmtVsb5L.js +7 -0
- package/dist/dashboard/public/assets/r-B6wPVr8A.js +1 -0
- package/dist/dashboard/public/assets/requirementDiagram-08caed73-BUcTnzDl.js +52 -0
- package/dist/dashboard/public/assets/rpm-CTu-6PCP.js +1 -0
- package/dist/dashboard/public/assets/ruby-B2Rjki9n.js +1 -0
- package/dist/dashboard/public/assets/sankeyDiagram-a04cb91d-FswuxQ9M.js +8 -0
- package/dist/dashboard/public/assets/sas-B4kiWyti.js +1 -0
- package/dist/dashboard/public/assets/scheme-C41bIUwD.js +1 -0
- package/dist/dashboard/public/assets/sequenceDiagram-c5b8d532-BJQ15rhX.js +122 -0
- package/dist/dashboard/public/assets/shell-CjFT_Tl9.js +1 -0
- package/dist/dashboard/public/assets/sieve-C3Gn_uJK.js +1 -0
- package/dist/dashboard/public/assets/simple-mode-GW_nhZxv.js +1 -0
- package/dist/dashboard/public/assets/smalltalk-CnHTOXQT.js +1 -0
- package/dist/dashboard/public/assets/solr-DehyRSwq.js +1 -0
- package/dist/dashboard/public/assets/sparql-DkYu6x3z.js +1 -0
- package/dist/dashboard/public/assets/spreadsheet-BCZA_wO0.js +1 -0
- package/dist/dashboard/public/assets/sql-D0XecflT.js +1 -0
- package/dist/dashboard/public/assets/stateDiagram-1ecb1508-BfyE0DYv.js +1 -0
- package/dist/dashboard/public/assets/stateDiagram-v2-c2b004d7-pcGOYyiW.js +1 -0
- package/dist/dashboard/public/assets/stex-C3f8Ysf7.js +1 -0
- package/dist/dashboard/public/assets/styles-b4e223ce--lUviH7V.js +160 -0
- package/dist/dashboard/public/assets/styles-ca3715f6-BXbrD1Av.js +207 -0
- package/dist/dashboard/public/assets/styles-d45a18b0-GyiMrLKu.js +116 -0
- package/dist/dashboard/public/assets/stylus-B533Al4x.js +1 -0
- package/dist/dashboard/public/assets/svgDrawCommon-b86b1483-DI4Z1GTS.js +1 -0
- package/dist/dashboard/public/assets/swift-BzpIVaGY.js +1 -0
- package/dist/dashboard/public/assets/tcl-DVfN8rqt.js +1 -0
- package/dist/dashboard/public/assets/textile-CnDTJFAw.js +1 -0
- package/dist/dashboard/public/assets/tiddlywiki-DO-Gjzrf.js +1 -0
- package/dist/dashboard/public/assets/tiki-DGYXhP31.js +1 -0
- package/dist/dashboard/public/assets/timeline-definition-faaaa080-B1IgohU4.js +61 -0
- package/dist/dashboard/public/assets/toml-Bm5Em-hy.js +1 -0
- package/dist/dashboard/public/assets/troff-wAsdV37c.js +1 -0
- package/dist/dashboard/public/assets/ttcn-CfJYG6tj.js +1 -0
- package/dist/dashboard/public/assets/ttcn-cfg-B9xdYoR4.js +1 -0
- package/dist/dashboard/public/assets/turtle-B1tBg_DP.js +1 -0
- package/dist/dashboard/public/assets/vb-CmGdzxic.js +1 -0
- package/dist/dashboard/public/assets/vbscript-BuJXcnF6.js +1 -0
- package/dist/dashboard/public/assets/velocity-D8B20fx6.js +1 -0
- package/dist/dashboard/public/assets/verilog-C6RDOZhf.js +1 -0
- package/dist/dashboard/public/assets/vhdl-lSbBsy5d.js +1 -0
- package/dist/dashboard/public/assets/webidl-ZXfAyPTL.js +1 -0
- package/dist/dashboard/public/assets/xquery-DzFWVndE.js +1 -0
- package/dist/dashboard/public/assets/xychartDiagram-f5964ef8-B5oRDe_I.js +7 -0
- package/dist/dashboard/public/assets/yacas-BJ4BC0dw.js +1 -0
- package/dist/dashboard/public/assets/z80-Hz9HOZM7.js +1 -0
- package/dist/dashboard/public/claude-icon-dark.svg +1 -0
- package/dist/dashboard/public/claude-icon.svg +1 -0
- package/dist/dashboard/public/index.html +16 -0
- package/dist/dashboard/settings-manager.d.ts +47 -0
- package/dist/dashboard/settings-manager.d.ts.map +1 -0
- package/dist/dashboard/settings-manager.js +180 -0
- package/dist/dashboard/settings-manager.js.map +1 -0
- package/dist/dashboard/utils.d.ts +31 -0
- package/dist/dashboard/utils.d.ts.map +1 -0
- package/dist/dashboard/utils.js +102 -0
- package/dist/dashboard/utils.js.map +1 -0
- package/dist/dashboard/watcher.d.ts +32 -0
- package/dist/dashboard/watcher.d.ts.map +1 -0
- package/dist/dashboard/watcher.js +173 -0
- package/dist/dashboard/watcher.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +380 -0
- package/dist/index.js.map +1 -0
- package/dist/markdown/templates/design-template.md +96 -0
- package/dist/markdown/templates/product-template.md +51 -0
- package/dist/markdown/templates/requirements-template.md +50 -0
- package/dist/markdown/templates/structure-template.md +145 -0
- package/dist/markdown/templates/tasks-template.md +139 -0
- package/dist/markdown/templates/tech-template.md +99 -0
- package/dist/prompts/create-spec.d.ts +3 -0
- package/dist/prompts/create-spec.d.ts.map +1 -0
- package/dist/prompts/create-spec.js +93 -0
- package/dist/prompts/create-spec.js.map +1 -0
- package/dist/prompts/create-steering-doc.d.ts +3 -0
- package/dist/prompts/create-steering-doc.d.ts.map +1 -0
- package/dist/prompts/create-steering-doc.js +73 -0
- package/dist/prompts/create-steering-doc.js.map +1 -0
- package/dist/prompts/implement-task.d.ts +3 -0
- package/dist/prompts/implement-task.d.ts.map +1 -0
- package/dist/prompts/implement-task.js +173 -0
- package/dist/prompts/implement-task.js.map +1 -0
- package/dist/prompts/index.d.ts +15 -0
- package/dist/prompts/index.d.ts.map +1 -0
- package/dist/prompts/index.js +49 -0
- package/dist/prompts/index.js.map +1 -0
- package/dist/prompts/inject-spec-workflow-guide.d.ts +3 -0
- package/dist/prompts/inject-spec-workflow-guide.d.ts.map +1 -0
- package/dist/prompts/inject-spec-workflow-guide.js +47 -0
- package/dist/prompts/inject-spec-workflow-guide.js.map +1 -0
- package/dist/prompts/inject-steering-guide.d.ts +3 -0
- package/dist/prompts/inject-steering-guide.d.ts.map +1 -0
- package/dist/prompts/inject-steering-guide.js +51 -0
- package/dist/prompts/inject-steering-guide.js.map +1 -0
- package/dist/prompts/refresh-tasks.d.ts +3 -0
- package/dist/prompts/refresh-tasks.d.ts.map +1 -0
- package/dist/prompts/refresh-tasks.js +224 -0
- package/dist/prompts/refresh-tasks.js.map +1 -0
- package/dist/prompts/spec-status.d.ts +3 -0
- package/dist/prompts/spec-status.d.ts.map +1 -0
- package/dist/prompts/spec-status.js +75 -0
- package/dist/prompts/spec-status.js.map +1 -0
- package/dist/prompts/types.d.ts +13 -0
- package/dist/prompts/types.d.ts.map +1 -0
- package/dist/prompts/types.js +2 -0
- package/dist/prompts/types.js.map +1 -0
- package/dist/server.d.ts +17 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +175 -0
- package/dist/server.js.map +1 -0
- package/dist/tools/__tests__/projectPath.test.d.ts +2 -0
- package/dist/tools/__tests__/projectPath.test.d.ts.map +1 -0
- package/dist/tools/__tests__/projectPath.test.js +187 -0
- package/dist/tools/__tests__/projectPath.test.js.map +1 -0
- package/dist/tools/approvals.d.ts +14 -0
- package/dist/tools/approvals.d.ts.map +1 -0
- package/dist/tools/approvals.js +490 -0
- package/dist/tools/approvals.js.map +1 -0
- package/dist/tools/index.d.ts +5 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +52 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/log-implementation.d.ts +5 -0
- package/dist/tools/log-implementation.d.ts.map +1 -0
- package/dist/tools/log-implementation.js +397 -0
- package/dist/tools/log-implementation.js.map +1 -0
- package/dist/tools/spec-status.d.ts +5 -0
- package/dist/tools/spec-status.d.ts.map +1 -0
- package/dist/tools/spec-status.js +178 -0
- package/dist/tools/spec-status.js.map +1 -0
- package/dist/tools/spec-workflow-guide.d.ts +5 -0
- package/dist/tools/spec-workflow-guide.d.ts.map +1 -0
- package/dist/tools/spec-workflow-guide.js +291 -0
- package/dist/tools/spec-workflow-guide.js.map +1 -0
- package/dist/tools/steering-guide.d.ts +5 -0
- package/dist/tools/steering-guide.d.ts.map +1 -0
- package/dist/tools/steering-guide.js +192 -0
- package/dist/tools/steering-guide.js.map +1 -0
- package/dist/types.d.ts +172 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +13 -0
- package/dist/types.js.map +1 -0
- package/package.json +105 -0
package/README.ar.md
ADDED
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
# Spec Workflow MCP
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@pimzino/spec-workflow-mcp)
|
|
4
|
+
[](https://marketplace.visualstudio.com/items?itemName=Pimzino.spec-workflow-mcp)
|
|
5
|
+
|
|
6
|
+
خادم Model Context Protocol (MCP) للتطوير المنظم القائم على المواصفات مع لوحة تحكم فورية وإضافة VSCode.
|
|
7
|
+
|
|
8
|
+
## ☕ دعم هذا المشروع
|
|
9
|
+
|
|
10
|
+
<a href="https://buymeacoffee.com/Pimzino" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
|
|
11
|
+
|
|
12
|
+
## 📺 عرض توضيحي
|
|
13
|
+
|
|
14
|
+
### 🔄 نظام الموافقات في العمل
|
|
15
|
+
<a href="https://www.youtube.com/watch?v=C-uEa3mfxd0" target="_blank">
|
|
16
|
+
<img src="https://img.youtube.com/vi/C-uEa3mfxd0/maxresdefault.jpg" alt="Approval System Demo" width="600">
|
|
17
|
+
</a>
|
|
18
|
+
|
|
19
|
+
*شاهد كيف يعمل نظام الموافقات: إنشاء المستندات، طلب الموافقة عبر لوحة التحكم، تقديم الملاحظات، وتتبع المراجعات.*
|
|
20
|
+
|
|
21
|
+
### 📊 لوحة التحكم وإدارة المواصفات
|
|
22
|
+
<a href="https://www.youtube.com/watch?v=g9qfvjLUWf8" target="_blank">
|
|
23
|
+
<img src="https://img.youtube.com/vi/g9qfvjLUWf8/maxresdefault.jpg" alt="Dashboard Demo" width="600">
|
|
24
|
+
</a>
|
|
25
|
+
|
|
26
|
+
*استكشف لوحة التحكم الفورية: عرض المواصفات، تتبع التقدم، التنقل في المستندات، ومراقبة سير عمل التطوير.*
|
|
27
|
+
|
|
28
|
+
## ✨ الميزات الرئيسية
|
|
29
|
+
|
|
30
|
+
- **سير عمل تطوير منظم** - إنشاء متسلسل للمواصفات (المتطلبات → التصميم → المهام)
|
|
31
|
+
- **لوحة تحكم ويب فورية** - مراقبة المواصفات والمهام والتقدم مع تحديثات مباشرة
|
|
32
|
+
- **إضافة VSCode** - تجربة لوحة تحكم متكاملة لمستخدمي VSCode
|
|
33
|
+
- **سير عمل الموافقات** - عملية موافقة كاملة مع المراجعات
|
|
34
|
+
- **تتبع تقدم المهام** - أشرطة تقدم مرئية وحالة مفصلة
|
|
35
|
+
- **سجلات التنفيذ** - سجلات قابلة للبحث لجميع تنفيذات المهام مع إحصائيات الكود
|
|
36
|
+
- **دعم متعدد اللغات** - متاح بـ 11 لغة
|
|
37
|
+
|
|
38
|
+
## 🌍 اللغات المدعومة
|
|
39
|
+
|
|
40
|
+
🇺🇸 English • 🇯🇵 日本語 • 🇨🇳 中文 • 🇪🇸 Español • 🇧🇷 Português • 🇩🇪 Deutsch • 🇫🇷 Français • 🇷🇺 Русский • 🇮🇹 Italiano • 🇰🇷 한국어 • 🇸🇦 العربية
|
|
41
|
+
|
|
42
|
+
## 🚀 البدء السريع
|
|
43
|
+
|
|
44
|
+
### الخطوة 1: أضف إلى أداة الذكاء الاصطناعي الخاصة بك
|
|
45
|
+
|
|
46
|
+
أضف إلى تكوين MCP الخاص بك (راجع الإعداد الخاص بكل عميل أدناه):
|
|
47
|
+
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"mcpServers": {
|
|
51
|
+
"spec-workflow": {
|
|
52
|
+
"command": "npx",
|
|
53
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### الخطوة 2: اختر واجهتك
|
|
60
|
+
|
|
61
|
+
**الخيار أ: لوحة تحكم الويب** (مطلوبة لمستخدمي CLI)
|
|
62
|
+
ابدأ لوحة التحكم (تعمل على المنفذ 5000 بشكل افتراضي):
|
|
63
|
+
```bash
|
|
64
|
+
npx -y @pimzino/spec-workflow-mcp@latest --dashboard
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
ستكون لوحة التحكم متاحة على: http://localhost:5000
|
|
68
|
+
|
|
69
|
+
> **ملاحظة:** مطلوب مثيل واحد فقط من لوحة التحكم. ستتصل جميع مشاريعك بنفس لوحة التحكم.
|
|
70
|
+
|
|
71
|
+
**الخيار ب: إضافة VSCode** (موصى بها لمستخدمي VSCode)
|
|
72
|
+
|
|
73
|
+
قم بتثبيت [Spec Workflow MCP Extension](https://marketplace.visualstudio.com/items?itemName=Pimzino.spec-workflow-mcp) من سوق VSCode.
|
|
74
|
+
|
|
75
|
+
## 📝 كيفية الاستخدام
|
|
76
|
+
|
|
77
|
+
ببساطة اذكر spec-workflow في محادثتك:
|
|
78
|
+
|
|
79
|
+
- **"أنشئ مواصفة لمصادقة المستخدم"** - ينشئ سير عمل كامل للمواصفة
|
|
80
|
+
- **"اعرض مواصفاتي"** - يعرض جميع المواصفات وحالتها
|
|
81
|
+
- **"نفذ المهمة 1.2 في المواصفة user-auth"** - ينفذ مهمة محددة
|
|
82
|
+
|
|
83
|
+
[شاهد المزيد من الأمثلة →](docs/PROMPTING-GUIDE.md)
|
|
84
|
+
|
|
85
|
+
## 🔧 إعداد عميل MCP
|
|
86
|
+
|
|
87
|
+
<details>
|
|
88
|
+
<summary><strong>Augment Code</strong></summary>
|
|
89
|
+
|
|
90
|
+
قم بالتكوين في إعدادات Augment الخاصة بك:
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"mcpServers": {
|
|
94
|
+
"spec-workflow": {
|
|
95
|
+
"command": "npx",
|
|
96
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
</details>
|
|
102
|
+
|
|
103
|
+
<details>
|
|
104
|
+
<summary><strong>Claude Code CLI</strong></summary>
|
|
105
|
+
|
|
106
|
+
أضف إلى تكوين MCP الخاص بك:
|
|
107
|
+
```bash
|
|
108
|
+
claude mcp add spec-workflow npx @pimzino/spec-workflow-mcp@latest -- /path/to/your/project
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
**ملاحظات مهمة:**
|
|
112
|
+
- العلم `-y` يتجاوز مطالبات npm للتثبيت السلس
|
|
113
|
+
- الفاصل `--` يضمن تمرير المسار إلى سكريبت spec-workflow، وليس إلى npx
|
|
114
|
+
- استبدل `/path/to/your/project` بمسار دليل مشروعك الفعلي
|
|
115
|
+
|
|
116
|
+
**بديل لنظام Windows (إذا لم ينجح ما سبق):**
|
|
117
|
+
```bash
|
|
118
|
+
claude mcp add spec-workflow cmd.exe /c "npx @pimzino/spec-workflow-mcp@latest /path/to/your/project"
|
|
119
|
+
```
|
|
120
|
+
</details>
|
|
121
|
+
|
|
122
|
+
<details>
|
|
123
|
+
<summary><strong>Claude Desktop</strong></summary>
|
|
124
|
+
|
|
125
|
+
أضف إلى `claude_desktop_config.json`:
|
|
126
|
+
```json
|
|
127
|
+
{
|
|
128
|
+
"mcpServers": {
|
|
129
|
+
"spec-workflow": {
|
|
130
|
+
"command": "npx",
|
|
131
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
> **مهم:** قم بتشغيل لوحة التحكم بشكل منفصل مع `--dashboard` قبل بدء خادم MCP.
|
|
138
|
+
|
|
139
|
+
</details>
|
|
140
|
+
|
|
141
|
+
<details>
|
|
142
|
+
<summary><strong>Cline/Claude Dev</strong></summary>
|
|
143
|
+
|
|
144
|
+
أضف إلى تكوين خادم MCP الخاص بك:
|
|
145
|
+
```json
|
|
146
|
+
{
|
|
147
|
+
"mcpServers": {
|
|
148
|
+
"spec-workflow": {
|
|
149
|
+
"command": "npx",
|
|
150
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
</details>
|
|
156
|
+
|
|
157
|
+
<details>
|
|
158
|
+
<summary><strong>Continue IDE Extension</strong></summary>
|
|
159
|
+
|
|
160
|
+
أضف إلى تكوين Continue الخاص بك:
|
|
161
|
+
```json
|
|
162
|
+
{
|
|
163
|
+
"mcpServers": {
|
|
164
|
+
"spec-workflow": {
|
|
165
|
+
"command": "npx",
|
|
166
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
```
|
|
171
|
+
</details>
|
|
172
|
+
|
|
173
|
+
<details>
|
|
174
|
+
<summary><strong>Cursor IDE</strong></summary>
|
|
175
|
+
|
|
176
|
+
أضف إلى إعدادات Cursor (`settings.json`):
|
|
177
|
+
```json
|
|
178
|
+
{
|
|
179
|
+
"mcpServers": {
|
|
180
|
+
"spec-workflow": {
|
|
181
|
+
"command": "npx",
|
|
182
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
</details>
|
|
188
|
+
|
|
189
|
+
<details>
|
|
190
|
+
<summary><strong>OpenCode</strong></summary>
|
|
191
|
+
|
|
192
|
+
أضف إلى ملف التكوين `opencode.json`:
|
|
193
|
+
```json
|
|
194
|
+
{
|
|
195
|
+
"$schema": "https://opencode.ai/config.json",
|
|
196
|
+
"mcp": {
|
|
197
|
+
"spec-workflow": {
|
|
198
|
+
"type": "local",
|
|
199
|
+
"command": ["npx", "-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"],
|
|
200
|
+
"enabled": true
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
```
|
|
205
|
+
</details>
|
|
206
|
+
|
|
207
|
+
<details>
|
|
208
|
+
<summary><strong>Windsurf</strong></summary>
|
|
209
|
+
|
|
210
|
+
أضف إلى ملف التكوين `~/.codeium/windsurf/mcp_config.json`:
|
|
211
|
+
```json
|
|
212
|
+
{
|
|
213
|
+
"mcpServers": {
|
|
214
|
+
"spec-workflow": {
|
|
215
|
+
"command": "npx",
|
|
216
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
```
|
|
221
|
+
</details>
|
|
222
|
+
|
|
223
|
+
<details>
|
|
224
|
+
<summary><strong>Codex</strong></summary>
|
|
225
|
+
|
|
226
|
+
أضف إلى ملف التكوين `~/.codex/config.toml`:
|
|
227
|
+
```toml
|
|
228
|
+
[mcp_servers.spec-workflow]
|
|
229
|
+
command = "npx"
|
|
230
|
+
args = ["-y", "@pimzino/spec-workflow-mcp@latest", "/path/to/your/project"]
|
|
231
|
+
```
|
|
232
|
+
</details>
|
|
233
|
+
|
|
234
|
+
## 🐳 النشر باستخدام Docker
|
|
235
|
+
|
|
236
|
+
قم بتشغيل لوحة التحكم في حاوية Docker للنشر المعزول:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
# استخدام Docker Compose (موصى به)
|
|
240
|
+
cd containers
|
|
241
|
+
docker-compose up --build
|
|
242
|
+
|
|
243
|
+
# أو استخدام Docker CLI
|
|
244
|
+
docker build -f containers/Dockerfile -t spec-workflow-mcp .
|
|
245
|
+
docker run -p 5000:5000 -v "./workspace/.spec-workflow:/workspace/.spec-workflow:rw" spec-workflow-mcp
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
ستكون لوحة التحكم متاحة على: http://localhost:5000
|
|
249
|
+
|
|
250
|
+
[راجع دليل إعداد Docker →](containers/README.md)
|
|
251
|
+
|
|
252
|
+
## 🔒 البيئات المعزولة
|
|
253
|
+
|
|
254
|
+
للبيئات المعزولة (مثل Codex CLI مع `sandbox_mode=workspace-write`) حيث يكون `$HOME` للقراءة فقط، استخدم متغير البيئة `SPEC_WORKFLOW_HOME` لإعادة توجيه ملفات الحالة العامة إلى موقع قابل للكتابة:
|
|
255
|
+
|
|
256
|
+
```bash
|
|
257
|
+
SPEC_WORKFLOW_HOME=/workspace/.spec-workflow-mcp npx -y @pimzino/spec-workflow-mcp@latest /workspace
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
[راجع دليل التكوين →](docs/CONFIGURATION.md#environment-variables)
|
|
261
|
+
|
|
262
|
+
## 📚 التوثيق
|
|
263
|
+
|
|
264
|
+
- [دليل التكوين](docs/CONFIGURATION.md) - خيارات سطر الأوامر، ملفات التكوين
|
|
265
|
+
- [دليل المستخدم](docs/USER-GUIDE.md) - أمثلة استخدام شاملة
|
|
266
|
+
- [عملية سير العمل](docs/WORKFLOW.md) - سير عمل التطوير وأفضل الممارسات
|
|
267
|
+
- [دليل الواجهات](docs/INTERFACES.md) - تفاصيل لوحة التحكم وإضافة VSCode
|
|
268
|
+
- [دليل الأوامر](docs/PROMPTING-GUIDE.md) - أمثلة أوامر متقدمة
|
|
269
|
+
- [مرجع الأدوات](docs/TOOLS-REFERENCE.md) - توثيق الأدوات الكامل
|
|
270
|
+
- [التطوير](docs/DEVELOPMENT.md) - المساهمة وإعداد التطوير
|
|
271
|
+
- [استكشاف الأخطاء وإصلاحها](docs/TROUBLESHOOTING.md) - المشكلات الشائعة والحلول
|
|
272
|
+
|
|
273
|
+
## 📁 هيكل المشروع
|
|
274
|
+
|
|
275
|
+
```
|
|
276
|
+
your-project/
|
|
277
|
+
.spec-workflow/
|
|
278
|
+
approvals/
|
|
279
|
+
archive/
|
|
280
|
+
specs/
|
|
281
|
+
steering/
|
|
282
|
+
templates/
|
|
283
|
+
user-templates/
|
|
284
|
+
config.example.toml
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
## 🛠️ التطوير
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# تثبيت التبعيات
|
|
291
|
+
npm install
|
|
292
|
+
|
|
293
|
+
# بناء المشروع
|
|
294
|
+
npm run build
|
|
295
|
+
|
|
296
|
+
# التشغيل في وضع التطوير
|
|
297
|
+
npm run dev
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
[راجع دليل التطوير →](docs/DEVELOPMENT.md)
|
|
301
|
+
|
|
302
|
+
## 📄 الترخيص
|
|
303
|
+
|
|
304
|
+
GPL-3.0
|
|
305
|
+
|
|
306
|
+
## ⭐ تاريخ النجوم
|
|
307
|
+
|
|
308
|
+
<a href="https://www.star-history.com/#Pimzino/spec-workflow-mcp&Date">
|
|
309
|
+
<picture>
|
|
310
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date&theme=dark" />
|
|
311
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date" />
|
|
312
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date" />
|
|
313
|
+
</picture>
|
|
314
|
+
</a>
|
package/README.de.md
ADDED
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
# Spec Workflow MCP
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@pimzino/spec-workflow-mcp)
|
|
4
|
+
[](https://marketplace.visualstudio.com/items?itemName=Pimzino.spec-workflow-mcp)
|
|
5
|
+
|
|
6
|
+
Ein Model Context Protocol (MCP) Server für strukturierte, spezifikationsgetriebene Entwicklung mit Echtzeit-Dashboard und VSCode Extension.
|
|
7
|
+
|
|
8
|
+
## ☕ Unterstützen Sie dieses Projekt
|
|
9
|
+
|
|
10
|
+
<a href="https://buymeacoffee.com/Pimzino" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
|
|
11
|
+
|
|
12
|
+
## 📺 Showcase
|
|
13
|
+
|
|
14
|
+
### 🔄 Freigabesystem in Aktion
|
|
15
|
+
<a href="https://www.youtube.com/watch?v=C-uEa3mfxd0" target="_blank">
|
|
16
|
+
<img src="https://img.youtube.com/vi/C-uEa3mfxd0/maxresdefault.jpg" alt="Approval System Demo" width="600">
|
|
17
|
+
</a>
|
|
18
|
+
|
|
19
|
+
*Sehen Sie, wie das Freigabesystem funktioniert: Dokumente erstellen, Freigabe über das Dashboard anfordern, Feedback geben und Revisionen verfolgen.*
|
|
20
|
+
|
|
21
|
+
### 📊 Dashboard & Spec-Verwaltung
|
|
22
|
+
<a href="https://www.youtube.com/watch?v=g9qfvjLUWf8" target="_blank">
|
|
23
|
+
<img src="https://img.youtube.com/vi/g9qfvjLUWf8/maxresdefault.jpg" alt="Dashboard Demo" width="600">
|
|
24
|
+
</a>
|
|
25
|
+
|
|
26
|
+
*Entdecken Sie das Echtzeit-Dashboard: Specs anzeigen, Fortschritt verfolgen, Dokumente navigieren und Ihren Entwicklungsworkflow überwachen.*
|
|
27
|
+
|
|
28
|
+
## ✨ Hauptfunktionen
|
|
29
|
+
|
|
30
|
+
- **Strukturierter Entwicklungsworkflow** - Sequenzielle Spec-Erstellung (Anforderungen → Design → Aufgaben)
|
|
31
|
+
- **Echtzeit-Web-Dashboard** - Überwachen Sie Specs, Aufgaben und Fortschritt mit Live-Updates
|
|
32
|
+
- **VSCode Extension** - Integriertes Sidebar-Dashboard für VSCode-Benutzer
|
|
33
|
+
- **Freigabe-Workflow** - Vollständiger Freigabeprozess mit Revisionen
|
|
34
|
+
- **Aufgabenfortschritt-Verfolgung** - Visuelle Fortschrittsbalken und detaillierter Status
|
|
35
|
+
- **Implementierungs-Logs** - Durchsuchbare Logs aller Aufgabenimplementierungen mit Code-Statistiken
|
|
36
|
+
- **Mehrsprachige Unterstützung** - Verfügbar in 11 Sprachen
|
|
37
|
+
|
|
38
|
+
## 🌍 Unterstützte Sprachen
|
|
39
|
+
|
|
40
|
+
🇺🇸 English • 🇯🇵 日本語 • 🇨🇳 中文 • 🇪🇸 Español • 🇧🇷 Português • 🇩🇪 Deutsch • 🇫🇷 Français • 🇷🇺 Русский • 🇮🇹 Italiano • 🇰🇷 한국어 • 🇸🇦 العربية
|
|
41
|
+
|
|
42
|
+
## 🚀 Schnellstart
|
|
43
|
+
|
|
44
|
+
### Schritt 1: Zu Ihrem AI-Tool hinzufügen
|
|
45
|
+
|
|
46
|
+
Fügen Sie dies zu Ihrer MCP-Konfiguration hinzu (siehe clientspezifische Einrichtung unten):
|
|
47
|
+
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"mcpServers": {
|
|
51
|
+
"spec-workflow": {
|
|
52
|
+
"command": "npx",
|
|
53
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Schritt 2: Wählen Sie Ihre Oberfläche
|
|
60
|
+
|
|
61
|
+
**Option A: Web-Dashboard** (Erforderlich für CLI-Benutzer)
|
|
62
|
+
Starten Sie das Dashboard (läuft standardmäßig auf Port 5000):
|
|
63
|
+
```bash
|
|
64
|
+
npx -y @pimzino/spec-workflow-mcp@latest --dashboard
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Das Dashboard ist erreichbar unter: http://localhost:5000
|
|
68
|
+
|
|
69
|
+
> **Hinweis:** Nur eine Dashboard-Instanz wird benötigt. Alle Ihre Projekte verbinden sich mit demselben Dashboard.
|
|
70
|
+
|
|
71
|
+
**Option B: VSCode Extension** (Empfohlen für VSCode-Benutzer)
|
|
72
|
+
|
|
73
|
+
Installieren Sie die [Spec Workflow MCP Extension](https://marketplace.visualstudio.com/items?itemName=Pimzino.spec-workflow-mcp) aus dem VSCode-Marketplace.
|
|
74
|
+
|
|
75
|
+
## 📝 Verwendung
|
|
76
|
+
|
|
77
|
+
Erwähnen Sie einfach spec-workflow in Ihrem Gespräch:
|
|
78
|
+
|
|
79
|
+
- **"Erstelle eine Spec für Benutzerauthentifizierung"** - Erstellt vollständigen Spec-Workflow
|
|
80
|
+
- **"Liste meine Specs auf"** - Zeigt alle Specs und ihren Status
|
|
81
|
+
- **"Führe Aufgabe 1.2 in Spec user-auth aus"** - Führt eine bestimmte Aufgabe aus
|
|
82
|
+
|
|
83
|
+
[Mehr Beispiele anzeigen →](docs/PROMPTING-GUIDE.de.md)
|
|
84
|
+
|
|
85
|
+
## 🔧 MCP-Client-Einrichtung
|
|
86
|
+
|
|
87
|
+
<details>
|
|
88
|
+
<summary><strong>Augment Code</strong></summary>
|
|
89
|
+
|
|
90
|
+
Konfigurieren Sie in Ihren Augment-Einstellungen:
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"mcpServers": {
|
|
94
|
+
"spec-workflow": {
|
|
95
|
+
"command": "npx",
|
|
96
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
</details>
|
|
102
|
+
|
|
103
|
+
<details>
|
|
104
|
+
<summary><strong>Claude Code CLI</strong></summary>
|
|
105
|
+
|
|
106
|
+
Fügen Sie zu Ihrer MCP-Konfiguration hinzu:
|
|
107
|
+
```bash
|
|
108
|
+
claude mcp add spec-workflow npx @pimzino/spec-workflow-mcp@latest -- /pfad/zu/ihrem/projekt
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
**Wichtige Hinweise:**
|
|
112
|
+
- Das `-y` Flag umgeht npm-Eingabeaufforderungen für eine reibungslosere Installation
|
|
113
|
+
- Der `--` Separator stellt sicher, dass der Pfad an das spec-workflow-Skript übergeben wird, nicht an npx
|
|
114
|
+
- Ersetzen Sie `/pfad/zu/ihrem/projekt` durch Ihren tatsächlichen Projektverzeichnispfad
|
|
115
|
+
|
|
116
|
+
**Alternative für Windows (falls das oben nicht funktioniert):**
|
|
117
|
+
```bash
|
|
118
|
+
claude mcp add spec-workflow cmd.exe /c "npx @pimzino/spec-workflow-mcp@latest /pfad/zu/ihrem/projekt"
|
|
119
|
+
```
|
|
120
|
+
</details>
|
|
121
|
+
|
|
122
|
+
<details>
|
|
123
|
+
<summary><strong>Claude Desktop</strong></summary>
|
|
124
|
+
|
|
125
|
+
Fügen Sie zu `claude_desktop_config.json` hinzu:
|
|
126
|
+
```json
|
|
127
|
+
{
|
|
128
|
+
"mcpServers": {
|
|
129
|
+
"spec-workflow": {
|
|
130
|
+
"command": "npx",
|
|
131
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
> **Wichtig:** Führen Sie das Dashboard separat mit `--dashboard` aus, bevor Sie den MCP-Server starten.
|
|
138
|
+
|
|
139
|
+
</details>
|
|
140
|
+
|
|
141
|
+
<details>
|
|
142
|
+
<summary><strong>Cline/Claude Dev</strong></summary>
|
|
143
|
+
|
|
144
|
+
Fügen Sie zu Ihrer MCP-Server-Konfiguration hinzu:
|
|
145
|
+
```json
|
|
146
|
+
{
|
|
147
|
+
"mcpServers": {
|
|
148
|
+
"spec-workflow": {
|
|
149
|
+
"command": "npx",
|
|
150
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
</details>
|
|
156
|
+
|
|
157
|
+
<details>
|
|
158
|
+
<summary><strong>Continue IDE Extension</strong></summary>
|
|
159
|
+
|
|
160
|
+
Fügen Sie zu Ihrer Continue-Konfiguration hinzu:
|
|
161
|
+
```json
|
|
162
|
+
{
|
|
163
|
+
"mcpServers": {
|
|
164
|
+
"spec-workflow": {
|
|
165
|
+
"command": "npx",
|
|
166
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
```
|
|
171
|
+
</details>
|
|
172
|
+
|
|
173
|
+
<details>
|
|
174
|
+
<summary><strong>Cursor IDE</strong></summary>
|
|
175
|
+
|
|
176
|
+
Fügen Sie zu Ihren Cursor-Einstellungen (`settings.json`) hinzu:
|
|
177
|
+
```json
|
|
178
|
+
{
|
|
179
|
+
"mcpServers": {
|
|
180
|
+
"spec-workflow": {
|
|
181
|
+
"command": "npx",
|
|
182
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
</details>
|
|
188
|
+
|
|
189
|
+
<details>
|
|
190
|
+
<summary><strong>OpenCode</strong></summary>
|
|
191
|
+
|
|
192
|
+
Fügen Sie zu Ihrer `opencode.json` Konfigurationsdatei hinzu:
|
|
193
|
+
```json
|
|
194
|
+
{
|
|
195
|
+
"$schema": "https://opencode.ai/config.json",
|
|
196
|
+
"mcp": {
|
|
197
|
+
"spec-workflow": {
|
|
198
|
+
"type": "local",
|
|
199
|
+
"command": ["npx", "-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"],
|
|
200
|
+
"enabled": true
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
```
|
|
205
|
+
</details>
|
|
206
|
+
|
|
207
|
+
<details>
|
|
208
|
+
<summary><strong>Windsurf</strong></summary>
|
|
209
|
+
|
|
210
|
+
Fügen Sie zu Ihrer `~/.codeium/windsurf/mcp_config.json` Konfigurationsdatei hinzu:
|
|
211
|
+
```json
|
|
212
|
+
{
|
|
213
|
+
"mcpServers": {
|
|
214
|
+
"spec-workflow": {
|
|
215
|
+
"command": "npx",
|
|
216
|
+
"args": ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
```
|
|
221
|
+
</details>
|
|
222
|
+
|
|
223
|
+
<details>
|
|
224
|
+
<summary><strong>Codex</strong></summary>
|
|
225
|
+
|
|
226
|
+
Fügen Sie zu Ihrer `~/.codex/config.toml` Konfigurationsdatei hinzu:
|
|
227
|
+
```toml
|
|
228
|
+
[mcp_servers.spec-workflow]
|
|
229
|
+
command = "npx"
|
|
230
|
+
args = ["-y", "@pimzino/spec-workflow-mcp@latest", "/pfad/zu/ihrem/projekt"]
|
|
231
|
+
```
|
|
232
|
+
</details>
|
|
233
|
+
|
|
234
|
+
## 🐳 Docker-Deployment
|
|
235
|
+
|
|
236
|
+
Führen Sie das Dashboard in einem Docker-Container für isoliertes Deployment aus:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
# Mit Docker Compose (empfohlen)
|
|
240
|
+
cd containers
|
|
241
|
+
docker-compose up --build
|
|
242
|
+
|
|
243
|
+
# Oder mit Docker CLI
|
|
244
|
+
docker build -f containers/Dockerfile -t spec-workflow-mcp .
|
|
245
|
+
docker run -p 5000:5000 -v "./workspace/.spec-workflow:/workspace/.spec-workflow:rw" spec-workflow-mcp
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
Das Dashboard ist verfügbar unter: http://localhost:5000
|
|
249
|
+
|
|
250
|
+
[Siehe Docker-Setup-Anleitung →](containers/README.md)
|
|
251
|
+
|
|
252
|
+
## 🔒 Sandbox-Umgebungen
|
|
253
|
+
|
|
254
|
+
Für Sandbox-Umgebungen (z.B. Codex CLI mit `sandbox_mode=workspace-write`), in denen `$HOME` schreibgeschützt ist, verwenden Sie die Umgebungsvariable `SPEC_WORKFLOW_HOME`, um globale Zustandsdateien an einen beschreibbaren Ort umzuleiten:
|
|
255
|
+
|
|
256
|
+
```bash
|
|
257
|
+
SPEC_WORKFLOW_HOME=/workspace/.spec-workflow-mcp npx -y @pimzino/spec-workflow-mcp@latest /workspace
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
[Siehe Konfigurationsanleitung →](docs/CONFIGURATION.de.md#umgebungsvariablen)
|
|
261
|
+
|
|
262
|
+
## 📚 Dokumentation
|
|
263
|
+
|
|
264
|
+
- [Konfigurationsanleitung](docs/CONFIGURATION.de.md) - Befehlszeilenoptionen, Konfigurationsdateien
|
|
265
|
+
- [Benutzerhandbuch](docs/USER-GUIDE.de.md) - Umfassende Verwendungsbeispiele
|
|
266
|
+
- [Workflow-Prozess](docs/WORKFLOW.de.md) - Entwicklungsworkflow und Best Practices
|
|
267
|
+
- [Oberflächen-Leitfaden](docs/INTERFACES.de.md) - Dashboard- und VSCode-Extension-Details
|
|
268
|
+
- [Prompting-Leitfaden](docs/PROMPTING-GUIDE.de.md) - Erweiterte Prompting-Beispiele
|
|
269
|
+
- [Tools-Referenz](docs/TOOLS-REFERENCE.de.md) - Vollständige Tools-Dokumentation
|
|
270
|
+
- [Entwicklung](docs/DEVELOPMENT.de.md) - Mitwirken und Entwicklungseinrichtung
|
|
271
|
+
- [Fehlerbehebung](docs/TROUBLESHOOTING.de.md) - Häufige Probleme und Lösungen
|
|
272
|
+
|
|
273
|
+
## 📁 Projektstruktur
|
|
274
|
+
|
|
275
|
+
```
|
|
276
|
+
ihr-projekt/
|
|
277
|
+
.spec-workflow/
|
|
278
|
+
approvals/
|
|
279
|
+
archive/
|
|
280
|
+
specs/
|
|
281
|
+
steering/
|
|
282
|
+
templates/
|
|
283
|
+
user-templates/
|
|
284
|
+
config.example.toml
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
## 🛠️ Entwicklung
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# Abhängigkeiten installieren
|
|
291
|
+
npm install
|
|
292
|
+
|
|
293
|
+
# Projekt erstellen
|
|
294
|
+
npm run build
|
|
295
|
+
|
|
296
|
+
# Im Entwicklungsmodus ausführen
|
|
297
|
+
npm run dev
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
[Siehe Entwicklungsanleitung →](docs/DEVELOPMENT.de.md)
|
|
301
|
+
|
|
302
|
+
## 📄 Lizenz
|
|
303
|
+
|
|
304
|
+
GPL-3.0
|
|
305
|
+
|
|
306
|
+
## ⭐ Star-Verlauf
|
|
307
|
+
|
|
308
|
+
<a href="https://www.star-history.com/#Pimzino/spec-workflow-mcp&Date">
|
|
309
|
+
<picture>
|
|
310
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date&theme=dark" />
|
|
311
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date" />
|
|
312
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Pimzino/spec-workflow-mcp&type=Date" />
|
|
313
|
+
</picture>
|
|
314
|
+
</a>
|