├── .claude-plugin ├── .mcp.json ├── marketplace.json ├── plugin.json └── with-dashboard │ ├── .mcp.json │ └── plugin.json ├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── dashboard_issue.yml │ ├── documentation.yml │ ├── feature_request.yml │ └── vscode_extension.yml └── workflows │ ├── claude-code-review.yml │ └── claude.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.ar.md ├── README.de.md ├── README.es.md ├── README.fr.md ├── README.it.md ├── README.ja.md ├── README.ko.md ├── README.md ├── README.pt.md ├── README.ru.md ├── README.zh.md ├── containers ├── .env.example ├── DOCKER_USAGE.md ├── Dockerfile ├── README.md ├── docker-compose.yml └── example.mcp.json ├── docs ├── CONFIGURATION.ar.md ├── CONFIGURATION.de.md ├── CONFIGURATION.es.md ├── CONFIGURATION.fr.md ├── CONFIGURATION.it.md ├── CONFIGURATION.ja.md ├── CONFIGURATION.ko.md ├── CONFIGURATION.md ├── CONFIGURATION.pt.md ├── CONFIGURATION.ru.md ├── CONFIGURATION.zh.md ├── DEVELOPMENT.ar.md ├── DEVELOPMENT.de.md ├── DEVELOPMENT.es.md ├── DEVELOPMENT.fr.md ├── DEVELOPMENT.it.md ├── DEVELOPMENT.ja.md ├── DEVELOPMENT.ko.md ├── DEVELOPMENT.md ├── DEVELOPMENT.pt.md ├── DEVELOPMENT.ru.md ├── DEVELOPMENT.zh.md ├── INTERFACES.ar.md ├── INTERFACES.de.md ├── INTERFACES.es.md ├── INTERFACES.fr.md ├── INTERFACES.it.md ├── INTERFACES.ja.md ├── INTERFACES.ko.md ├── INTERFACES.md ├── INTERFACES.pt.md ├── INTERFACES.ru.md ├── INTERFACES.zh.md ├── PROMPTING-GUIDE.ar.md ├── PROMPTING-GUIDE.de.md ├── PROMPTING-GUIDE.es.md ├── PROMPTING-GUIDE.fr.md ├── PROMPTING-GUIDE.it.md ├── PROMPTING-GUIDE.ja.md ├── PROMPTING-GUIDE.ko.md ├── PROMPTING-GUIDE.md ├── PROMPTING-GUIDE.pt.md ├── PROMPTING-GUIDE.ru.md ├── PROMPTING-GUIDE.zh.md ├── TOOLS-REFERENCE.ar.md ├── TOOLS-REFERENCE.de.md ├── TOOLS-REFERENCE.es.md ├── TOOLS-REFERENCE.fr.md ├── TOOLS-REFERENCE.it.md ├── TOOLS-REFERENCE.ja.md ├── TOOLS-REFERENCE.ko.md ├── TOOLS-REFERENCE.md ├── TOOLS-REFERENCE.pt.md ├── TOOLS-REFERENCE.ru.md ├── TOOLS-REFERENCE.zh.md ├── TROUBLESHOOTING.ar.md ├── TROUBLESHOOTING.de.md ├── TROUBLESHOOTING.es.md ├── TROUBLESHOOTING.fr.md ├── TROUBLESHOOTING.it.md ├── TROUBLESHOOTING.ja.md ├── TROUBLESHOOTING.ko.md ├── TROUBLESHOOTING.md ├── TROUBLESHOOTING.pt.md ├── TROUBLESHOOTING.ru.md ├── TROUBLESHOOTING.zh.md ├── USER-GUIDE.ar.md ├── USER-GUIDE.de.md ├── USER-GUIDE.es.md ├── USER-GUIDE.fr.md ├── USER-GUIDE.it.md ├── USER-GUIDE.ja.md ├── USER-GUIDE.ko.md ├── USER-GUIDE.md ├── USER-GUIDE.pt.md ├── USER-GUIDE.ru.md ├── USER-GUIDE.zh.md ├── WORKFLOW.ar.md ├── WORKFLOW.de.md ├── WORKFLOW.es.md ├── WORKFLOW.fr.md ├── WORKFLOW.it.md ├── WORKFLOW.ja.md ├── WORKFLOW.ko.md ├── WORKFLOW.md ├── WORKFLOW.pt.md ├── WORKFLOW.ru.md ├── WORKFLOW.zh.md └── technical-documentation │ ├── README.md │ ├── api-reference.md │ ├── architecture.md │ ├── context-management.md │ ├── contributing.md │ ├── dashboard.md │ ├── developer-guide.md │ ├── file-structure.md │ ├── i18n-guide.md │ ├── i18n-structure.md │ └── troubleshooting.md ├── package.json ├── scripts ├── copy-static.cjs ├── sync-plugin-version.js └── validate-i18n.js ├── src ├── config.ts ├── core │ ├── __tests__ │ │ ├── path-utils.test.ts │ │ └── task-validator.test.ts │ ├── archive-service.ts │ ├── dashboard-session.ts │ ├── global-dir.ts │ ├── implementation-log-migrator.ts │ ├── parser.ts │ ├── path-utils.ts │ ├── project-registry.ts │ ├── task-parser.ts │ ├── task-validator.ts │ └── workspace-initializer.ts ├── dashboard │ ├── __tests__ │ │ └── watcher-error-handling.test.ts │ ├── approval-storage.ts │ ├── execution-history-manager.ts │ ├── implementation-log-manager.ts │ ├── job-scheduler.ts │ ├── multi-server.ts │ ├── parser.ts │ ├── project-manager.ts │ ├── public │ │ ├── claude-icon-dark.svg │ │ └── claude-icon.svg │ ├── settings-manager.ts │ ├── utils.ts │ └── watcher.ts ├── dashboard_frontend │ ├── index.html │ ├── src │ │ ├── components │ │ │ ├── I18nErrorBoundary.tsx │ │ │ └── LanguageSelector.tsx │ │ ├── i18n-dynamic.ts │ │ ├── i18n.ts │ │ ├── lib │ │ │ └── utils.ts │ │ ├── locales │ │ │ ├── ar.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ └── zh.json │ │ ├── main.tsx │ │ ├── modules │ │ │ ├── api │ │ │ │ └── api.tsx │ │ │ ├── app │ │ │ │ └── App.tsx │ │ │ ├── approvals │ │ │ │ ├── ApprovalsAnnotator.tsx │ │ │ │ └── colors.ts │ │ │ ├── components │ │ │ │ ├── KanbanBoard.tsx │ │ │ │ ├── KanbanTaskCard.tsx │ │ │ │ ├── PageNavigationSidebar.tsx │ │ │ │ ├── ProjectDropdown.tsx │ │ │ │ ├── SortDropdown.tsx │ │ │ │ └── StatusFilterPills.tsx │ │ │ ├── diff │ │ │ │ ├── DiffStats.tsx │ │ │ │ ├── DiffViewer.tsx │ │ │ │ └── utils.ts │ │ │ ├── mdx-editor │ │ │ │ ├── MDXEditorWrapper.css │ │ │ │ ├── MDXEditorWrapper.tsx │ │ │ │ ├── hooks │ │ │ │ │ └── useMDXEditorTheme.ts │ │ │ │ ├── index.ts │ │ │ │ ├── plugins │ │ │ │ │ ├── index.ts │ │ │ │ │ └── mermaidPlugin.tsx │ │ │ │ ├── temp_source_update.js │ │ │ │ └── types.ts │ │ │ ├── modals │ │ │ │ ├── AlertModal.tsx │ │ │ │ ├── ChangelogModal.tsx │ │ │ │ ├── ConfirmationModal.tsx │ │ │ │ └── TextInputModal.tsx │ │ │ ├── notifications │ │ │ │ ├── NotificationProvider.tsx │ │ │ │ ├── VolumeControl.module.css │ │ │ │ └── VolumeControl.tsx │ │ │ ├── pages │ │ │ │ ├── ApprovalsPage.tsx │ │ │ │ ├── DashboardStatistics.tsx │ │ │ │ ├── JobExecutionHistory.tsx │ │ │ │ ├── JobFormModal.tsx │ │ │ │ ├── JobTemplates.ts │ │ │ │ ├── LogsPage.tsx │ │ │ │ ├── SettingsPage.tsx │ │ │ │ ├── SpecViewerPage.tsx │ │ │ │ ├── SpecsPage.tsx │ │ │ │ ├── SteeringPage.tsx │ │ │ │ └── TasksPage.tsx │ │ │ ├── projects │ │ │ │ └── ProjectProvider.tsx │ │ │ ├── theme │ │ │ │ ├── HighlightStyles.tsx │ │ │ │ ├── ThemeProvider.tsx │ │ │ │ ├── tailwind.css │ │ │ │ └── theme.css │ │ │ └── ws │ │ │ │ └── WebSocketProvider.tsx │ │ └── types.ts │ └── vite.config.ts ├── index.ts ├── markdown │ └── templates │ │ ├── design-template.md │ │ ├── product-template.md │ │ ├── requirements-template.md │ │ ├── structure-template.md │ │ ├── tasks-template.md │ │ └── tech-template.md ├── prompts │ ├── create-spec.ts │ ├── create-steering-doc.ts │ ├── implement-task.ts │ ├── index.ts │ ├── inject-spec-workflow-guide.ts │ ├── inject-steering-guide.ts │ ├── refresh-tasks.ts │ ├── spec-status.ts │ └── types.ts ├── server.ts ├── tools │ ├── __tests__ │ │ └── projectPath.test.ts │ ├── approvals.ts │ ├── index.ts │ ├── log-implementation.ts │ ├── spec-status.ts │ ├── spec-workflow-guide.ts │ └── steering-guide.ts └── types.ts ├── tsconfig.json ├── vitest.config.ts └── vscode-extension ├── .gitignore ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── components.json ├── esbuild.js ├── eslint.config.mjs ├── icon.png ├── icons ├── activity-bar-icon.svg └── spec-workflow.svg ├── package-lock.json ├── package.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.zh.json ├── src ├── extension.ts ├── extension │ ├── providers │ │ └── SidebarProvider.ts │ ├── services │ │ ├── ApprovalCommandService.ts │ │ ├── ApprovalEditorService.ts │ │ ├── ArchiveService.ts │ │ ├── CommentModalService.ts │ │ ├── FileWatcher.ts │ │ ├── ImplementationLogService.ts │ │ └── SpecWorkflowService.ts │ ├── types.ts │ └── utils │ │ ├── colorUtils.ts │ │ ├── logger.ts │ │ └── taskParser.ts ├── test │ ├── extension.test.ts │ └── pathResolution.test.ts └── webview │ ├── App.tsx │ ├── comment-modal.html │ ├── comment-modal.tsx │ ├── components │ ├── ArtifactSection.tsx │ ├── CommentModal.tsx │ ├── LogEntryCard.tsx │ ├── LogStatsPanel.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── progress.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ └── tabs.tsx │ ├── globals.css │ ├── hooks │ ├── useSoundNotifications.ts │ └── useVSCodeTheme.ts │ ├── i18n.ts │ ├── index.html │ ├── lib │ ├── utils.ts │ └── vscode-api.ts │ ├── locales │ ├── ar.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ └── zh.json │ ├── main.tsx │ ├── pages │ └── LogsPage.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.extension.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts ├── webview-assets └── sounds │ ├── approval-pending.wav │ └── task-completed.wav └── webview-dist ├── comment-modal.html ├── comment-modal.js ├── globals.css ├── i18n.js ├── index.html ├── locales ├── ar.json ├── de.json ├── en.json ├── es.json ├── fr.json ├── it.json ├── ja.json ├── ko.json ├── pt.json ├── ru.json └── zh.json ├── main.js └── sounds ├── approval-pending.wav └── task-completed.wav /.claude-plugin/.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.claude-plugin/.mcp.json -------------------------------------------------------------------------------- /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /.claude-plugin/with-dashboard/.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.claude-plugin/with-dashboard/.mcp.json -------------------------------------------------------------------------------- /.claude-plugin/with-dashboard/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.claude-plugin/with-dashboard/plugin.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/dashboard_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/dashboard_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/vscode_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/ISSUE_TEMPLATE/vscode_extension.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.ar.md -------------------------------------------------------------------------------- /README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.de.md -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.es.md -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.it.md -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.md -------------------------------------------------------------------------------- /README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.pt.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.ru.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/README.zh.md -------------------------------------------------------------------------------- /containers/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/.env.example -------------------------------------------------------------------------------- /containers/DOCKER_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/DOCKER_USAGE.md -------------------------------------------------------------------------------- /containers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/Dockerfile -------------------------------------------------------------------------------- /containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/README.md -------------------------------------------------------------------------------- /containers/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/docker-compose.yml -------------------------------------------------------------------------------- /containers/example.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/containers/example.mcp.json -------------------------------------------------------------------------------- /docs/CONFIGURATION.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.ar.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.de.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.es.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.fr.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.it.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.ja.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.ko.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.pt.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.ru.md -------------------------------------------------------------------------------- /docs/CONFIGURATION.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/CONFIGURATION.zh.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.ar.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.de.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.es.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.fr.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.it.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.ja.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.ko.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.pt.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.ru.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/DEVELOPMENT.zh.md -------------------------------------------------------------------------------- /docs/INTERFACES.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.ar.md -------------------------------------------------------------------------------- /docs/INTERFACES.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.de.md -------------------------------------------------------------------------------- /docs/INTERFACES.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.es.md -------------------------------------------------------------------------------- /docs/INTERFACES.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.fr.md -------------------------------------------------------------------------------- /docs/INTERFACES.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.it.md -------------------------------------------------------------------------------- /docs/INTERFACES.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.ja.md -------------------------------------------------------------------------------- /docs/INTERFACES.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.ko.md -------------------------------------------------------------------------------- /docs/INTERFACES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.md -------------------------------------------------------------------------------- /docs/INTERFACES.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.pt.md -------------------------------------------------------------------------------- /docs/INTERFACES.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.ru.md -------------------------------------------------------------------------------- /docs/INTERFACES.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/INTERFACES.zh.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.ar.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.de.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.es.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.fr.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.it.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.ja.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.ko.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.pt.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.ru.md -------------------------------------------------------------------------------- /docs/PROMPTING-GUIDE.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/PROMPTING-GUIDE.zh.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.ar.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.de.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.es.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.fr.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.it.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.ja.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.ko.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.pt.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.ru.md -------------------------------------------------------------------------------- /docs/TOOLS-REFERENCE.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TOOLS-REFERENCE.zh.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.ar.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.de.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.es.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.fr.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.it.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.ja.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.ko.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.pt.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.ru.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/TROUBLESHOOTING.zh.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.ar.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.de.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.es.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.fr.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.it.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.ja.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.ko.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.pt.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.ru.md -------------------------------------------------------------------------------- /docs/USER-GUIDE.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/USER-GUIDE.zh.md -------------------------------------------------------------------------------- /docs/WORKFLOW.ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.ar.md -------------------------------------------------------------------------------- /docs/WORKFLOW.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.de.md -------------------------------------------------------------------------------- /docs/WORKFLOW.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.es.md -------------------------------------------------------------------------------- /docs/WORKFLOW.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.fr.md -------------------------------------------------------------------------------- /docs/WORKFLOW.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.it.md -------------------------------------------------------------------------------- /docs/WORKFLOW.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.ja.md -------------------------------------------------------------------------------- /docs/WORKFLOW.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.ko.md -------------------------------------------------------------------------------- /docs/WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.md -------------------------------------------------------------------------------- /docs/WORKFLOW.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.pt.md -------------------------------------------------------------------------------- /docs/WORKFLOW.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.ru.md -------------------------------------------------------------------------------- /docs/WORKFLOW.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/WORKFLOW.zh.md -------------------------------------------------------------------------------- /docs/technical-documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/README.md -------------------------------------------------------------------------------- /docs/technical-documentation/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/api-reference.md -------------------------------------------------------------------------------- /docs/technical-documentation/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/architecture.md -------------------------------------------------------------------------------- /docs/technical-documentation/context-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/context-management.md -------------------------------------------------------------------------------- /docs/technical-documentation/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/contributing.md -------------------------------------------------------------------------------- /docs/technical-documentation/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/dashboard.md -------------------------------------------------------------------------------- /docs/technical-documentation/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/developer-guide.md -------------------------------------------------------------------------------- /docs/technical-documentation/file-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/file-structure.md -------------------------------------------------------------------------------- /docs/technical-documentation/i18n-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/i18n-guide.md -------------------------------------------------------------------------------- /docs/technical-documentation/i18n-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/i18n-structure.md -------------------------------------------------------------------------------- /docs/technical-documentation/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/docs/technical-documentation/troubleshooting.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/package.json -------------------------------------------------------------------------------- /scripts/copy-static.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/scripts/copy-static.cjs -------------------------------------------------------------------------------- /scripts/sync-plugin-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/scripts/sync-plugin-version.js -------------------------------------------------------------------------------- /scripts/validate-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/scripts/validate-i18n.js -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/core/__tests__/path-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/__tests__/path-utils.test.ts -------------------------------------------------------------------------------- /src/core/__tests__/task-validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/__tests__/task-validator.test.ts -------------------------------------------------------------------------------- /src/core/archive-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/archive-service.ts -------------------------------------------------------------------------------- /src/core/dashboard-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/dashboard-session.ts -------------------------------------------------------------------------------- /src/core/global-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/global-dir.ts -------------------------------------------------------------------------------- /src/core/implementation-log-migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/implementation-log-migrator.ts -------------------------------------------------------------------------------- /src/core/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/parser.ts -------------------------------------------------------------------------------- /src/core/path-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/path-utils.ts -------------------------------------------------------------------------------- /src/core/project-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/project-registry.ts -------------------------------------------------------------------------------- /src/core/task-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/task-parser.ts -------------------------------------------------------------------------------- /src/core/task-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/task-validator.ts -------------------------------------------------------------------------------- /src/core/workspace-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/core/workspace-initializer.ts -------------------------------------------------------------------------------- /src/dashboard/__tests__/watcher-error-handling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/__tests__/watcher-error-handling.test.ts -------------------------------------------------------------------------------- /src/dashboard/approval-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/approval-storage.ts -------------------------------------------------------------------------------- /src/dashboard/execution-history-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/execution-history-manager.ts -------------------------------------------------------------------------------- /src/dashboard/implementation-log-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/implementation-log-manager.ts -------------------------------------------------------------------------------- /src/dashboard/job-scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/job-scheduler.ts -------------------------------------------------------------------------------- /src/dashboard/multi-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/multi-server.ts -------------------------------------------------------------------------------- /src/dashboard/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/parser.ts -------------------------------------------------------------------------------- /src/dashboard/project-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/project-manager.ts -------------------------------------------------------------------------------- /src/dashboard/public/claude-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/public/claude-icon-dark.svg -------------------------------------------------------------------------------- /src/dashboard/public/claude-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/public/claude-icon.svg -------------------------------------------------------------------------------- /src/dashboard/settings-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/settings-manager.ts -------------------------------------------------------------------------------- /src/dashboard/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/utils.ts -------------------------------------------------------------------------------- /src/dashboard/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard/watcher.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/index.html -------------------------------------------------------------------------------- /src/dashboard_frontend/src/components/I18nErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/components/I18nErrorBoundary.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/components/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/components/LanguageSelector.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/i18n-dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/i18n-dynamic.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/i18n.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/ar.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/de.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/en.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/es.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/fr.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/it.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/ja.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/ko.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/pt.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/ru.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/locales/zh.json -------------------------------------------------------------------------------- /src/dashboard_frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/main.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/api/api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/api/api.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/app/App.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/approvals/ApprovalsAnnotator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/approvals/ApprovalsAnnotator.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/approvals/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/approvals/colors.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/KanbanBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/KanbanBoard.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/KanbanTaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/KanbanTaskCard.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/PageNavigationSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/PageNavigationSidebar.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/ProjectDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/ProjectDropdown.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/SortDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/SortDropdown.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/components/StatusFilterPills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/components/StatusFilterPills.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/diff/DiffStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/diff/DiffStats.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/diff/DiffViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/diff/DiffViewer.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/diff/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/diff/utils.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/MDXEditorWrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/MDXEditorWrapper.css -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/MDXEditorWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/MDXEditorWrapper.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/hooks/useMDXEditorTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/hooks/useMDXEditorTheme.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/index.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/plugins/index.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/plugins/mermaidPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/plugins/mermaidPlugin.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/temp_source_update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/temp_source_update.js -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/mdx-editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/mdx-editor/types.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/modals/AlertModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/modals/AlertModal.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/modals/ChangelogModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/modals/ChangelogModal.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/modals/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/modals/ConfirmationModal.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/modals/TextInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/modals/TextInputModal.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/notifications/NotificationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/notifications/NotificationProvider.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/notifications/VolumeControl.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/notifications/VolumeControl.module.css -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/notifications/VolumeControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/notifications/VolumeControl.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/ApprovalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/ApprovalsPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/DashboardStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/DashboardStatistics.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/JobExecutionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/JobExecutionHistory.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/JobFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/JobFormModal.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/JobTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/JobTemplates.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/LogsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/LogsPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/SettingsPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/SpecViewerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/SpecViewerPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/SpecsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/SpecsPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/SteeringPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/SteeringPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/pages/TasksPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/pages/TasksPage.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/projects/ProjectProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/projects/ProjectProvider.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/theme/HighlightStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/theme/HighlightStyles.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/theme/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/theme/tailwind.css -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/theme/theme.css -------------------------------------------------------------------------------- /src/dashboard_frontend/src/modules/ws/WebSocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/modules/ws/WebSocketProvider.tsx -------------------------------------------------------------------------------- /src/dashboard_frontend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/src/types.ts -------------------------------------------------------------------------------- /src/dashboard_frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/dashboard_frontend/vite.config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/markdown/templates/design-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/design-template.md -------------------------------------------------------------------------------- /src/markdown/templates/product-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/product-template.md -------------------------------------------------------------------------------- /src/markdown/templates/requirements-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/requirements-template.md -------------------------------------------------------------------------------- /src/markdown/templates/structure-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/structure-template.md -------------------------------------------------------------------------------- /src/markdown/templates/tasks-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/tasks-template.md -------------------------------------------------------------------------------- /src/markdown/templates/tech-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/markdown/templates/tech-template.md -------------------------------------------------------------------------------- /src/prompts/create-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/create-spec.ts -------------------------------------------------------------------------------- /src/prompts/create-steering-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/create-steering-doc.ts -------------------------------------------------------------------------------- /src/prompts/implement-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/implement-task.ts -------------------------------------------------------------------------------- /src/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/index.ts -------------------------------------------------------------------------------- /src/prompts/inject-spec-workflow-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/inject-spec-workflow-guide.ts -------------------------------------------------------------------------------- /src/prompts/inject-steering-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/inject-steering-guide.ts -------------------------------------------------------------------------------- /src/prompts/refresh-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/refresh-tasks.ts -------------------------------------------------------------------------------- /src/prompts/spec-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/spec-status.ts -------------------------------------------------------------------------------- /src/prompts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/prompts/types.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/tools/__tests__/projectPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/__tests__/projectPath.test.ts -------------------------------------------------------------------------------- /src/tools/approvals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/approvals.ts -------------------------------------------------------------------------------- /src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/index.ts -------------------------------------------------------------------------------- /src/tools/log-implementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/log-implementation.ts -------------------------------------------------------------------------------- /src/tools/spec-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/spec-status.ts -------------------------------------------------------------------------------- /src/tools/spec-workflow-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/spec-workflow-guide.ts -------------------------------------------------------------------------------- /src/tools/steering-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/tools/steering-guide.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vscode-extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.gitignore -------------------------------------------------------------------------------- /vscode-extension/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscode-test.mjs -------------------------------------------------------------------------------- /vscode-extension/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscode/extensions.json -------------------------------------------------------------------------------- /vscode-extension/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscode/launch.json -------------------------------------------------------------------------------- /vscode-extension/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscode/settings.json -------------------------------------------------------------------------------- /vscode-extension/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscode/tasks.json -------------------------------------------------------------------------------- /vscode-extension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/.vscodeignore -------------------------------------------------------------------------------- /vscode-extension/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/CHANGELOG.md -------------------------------------------------------------------------------- /vscode-extension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/LICENSE -------------------------------------------------------------------------------- /vscode-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/README.md -------------------------------------------------------------------------------- /vscode-extension/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/components.json -------------------------------------------------------------------------------- /vscode-extension/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/esbuild.js -------------------------------------------------------------------------------- /vscode-extension/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/eslint.config.mjs -------------------------------------------------------------------------------- /vscode-extension/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/icon.png -------------------------------------------------------------------------------- /vscode-extension/icons/activity-bar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/icons/activity-bar-icon.svg -------------------------------------------------------------------------------- /vscode-extension/icons/spec-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/icons/spec-workflow.svg -------------------------------------------------------------------------------- /vscode-extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/package-lock.json -------------------------------------------------------------------------------- /vscode-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/package.json -------------------------------------------------------------------------------- /vscode-extension/package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/package.nls.ja.json -------------------------------------------------------------------------------- /vscode-extension/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/package.nls.json -------------------------------------------------------------------------------- /vscode-extension/package.nls.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/package.nls.zh.json -------------------------------------------------------------------------------- /vscode-extension/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/providers/SidebarProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/providers/SidebarProvider.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/ApprovalCommandService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/ApprovalCommandService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/ApprovalEditorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/ApprovalEditorService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/ArchiveService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/ArchiveService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/CommentModalService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/CommentModalService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/FileWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/FileWatcher.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/ImplementationLogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/ImplementationLogService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/services/SpecWorkflowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/services/SpecWorkflowService.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/types.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/utils/colorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/utils/colorUtils.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/utils/logger.ts -------------------------------------------------------------------------------- /vscode-extension/src/extension/utils/taskParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/extension/utils/taskParser.ts -------------------------------------------------------------------------------- /vscode-extension/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/test/extension.test.ts -------------------------------------------------------------------------------- /vscode-extension/src/test/pathResolution.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/test/pathResolution.test.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/App.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/comment-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/comment-modal.html -------------------------------------------------------------------------------- /vscode-extension/src/webview/comment-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/comment-modal.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ArtifactSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ArtifactSection.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/CommentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/CommentModal.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/LogEntryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/LogEntryCard.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/LogStatsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/LogStatsPanel.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/accordion.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/badge.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/button.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/card.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/input.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/progress.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/select.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/separator.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/components/ui/tabs.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/globals.css -------------------------------------------------------------------------------- /vscode-extension/src/webview/hooks/useSoundNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/hooks/useSoundNotifications.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/hooks/useVSCodeTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/hooks/useVSCodeTheme.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/i18n.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/index.html -------------------------------------------------------------------------------- /vscode-extension/src/webview/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/lib/utils.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/lib/vscode-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/lib/vscode-api.ts -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/ar.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/de.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/en.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/es.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/fr.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/it.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/ja.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/ko.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/pt.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/ru.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/locales/zh.json -------------------------------------------------------------------------------- /vscode-extension/src/webview/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/main.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/pages/LogsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/pages/LogsPage.tsx -------------------------------------------------------------------------------- /vscode-extension/src/webview/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/src/webview/vite-env.d.ts -------------------------------------------------------------------------------- /vscode-extension/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/tailwind.config.js -------------------------------------------------------------------------------- /vscode-extension/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/tsconfig.app.json -------------------------------------------------------------------------------- /vscode-extension/tsconfig.extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/tsconfig.extension.json -------------------------------------------------------------------------------- /vscode-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/tsconfig.json -------------------------------------------------------------------------------- /vscode-extension/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/tsconfig.node.json -------------------------------------------------------------------------------- /vscode-extension/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/vite.config.ts -------------------------------------------------------------------------------- /vscode-extension/webview-assets/sounds/approval-pending.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-assets/sounds/approval-pending.wav -------------------------------------------------------------------------------- /vscode-extension/webview-assets/sounds/task-completed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-assets/sounds/task-completed.wav -------------------------------------------------------------------------------- /vscode-extension/webview-dist/comment-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/comment-modal.html -------------------------------------------------------------------------------- /vscode-extension/webview-dist/comment-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/comment-modal.js -------------------------------------------------------------------------------- /vscode-extension/webview-dist/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/globals.css -------------------------------------------------------------------------------- /vscode-extension/webview-dist/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/i18n.js -------------------------------------------------------------------------------- /vscode-extension/webview-dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/index.html -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/ar.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/de.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/en.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/es.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/fr.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/it.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/ja.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/ko.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/pt.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/ru.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/locales/zh.json -------------------------------------------------------------------------------- /vscode-extension/webview-dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/main.js -------------------------------------------------------------------------------- /vscode-extension/webview-dist/sounds/approval-pending.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/sounds/approval-pending.wav -------------------------------------------------------------------------------- /vscode-extension/webview-dist/sounds/task-completed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pimzino/spec-workflow-mcp/HEAD/vscode-extension/webview-dist/sounds/task-completed.wav --------------------------------------------------------------------------------