├── .clinerules-architect ├── .clinerules-ask ├── .clinerules-code ├── .clinerules-debug ├── .clinerules-test ├── .cursor └── mcp.json ├── .gitattributes ├── .github └── workflows │ ├── npm-publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .versionrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bun.lock ├── bunbuild.toml ├── bunfig.toml ├── docs ├── README.md ├── ai-assistant-integration.md ├── architecture-plan.md ├── build-with-bun.md ├── bun-migration.md ├── cline-integration.md ├── code-improvements.md ├── cursor-integration.md ├── custom-folder-name.md ├── debug-mcp-config.md ├── documentation-structure.md ├── file-naming-convention-update.md ├── file-naming-convention.md ├── implementation-plan-rule-formats.md ├── integration-testing-guide.md ├── logging-system.md ├── mcp-protocol-specification.md ├── memory-bank-bug-fixes.md ├── memory-bank-mcp-startup.md ├── memory-bank-path-changes.md ├── memory-bank-status-fix.md ├── memory-bank-status-prefix.md ├── migration-guide.md ├── modular-architecture-proposal.md ├── npx-usage.md ├── requirements.md ├── roo-code-integration.md ├── rule-examples.md ├── rule-formats.md ├── test-coverage.md ├── testing-clinerules.md ├── testing-guide.md ├── testing-strategy.md ├── testing.md └── usage-modes.md ├── memory-bank ├── active-context.md ├── decision-log.md ├── docs │ └── english-language-policy.md ├── product-context.md ├── progress.md └── system-patterns.md ├── package.json ├── src ├── __tests__ │ ├── clinerules-integration.test.ts │ ├── externalRulesLoader.test.ts │ ├── fileUtils.test.ts │ ├── memory-bank-validation.test.ts │ ├── memoryBankManager.test.ts │ ├── migrationUtils.test.ts │ ├── progressTracker.test.ts │ └── server │ │ ├── coreTools.test.ts │ │ ├── memoryBankServer.test.ts │ │ └── temp-server-test-dir │ │ └── project │ │ ├── .clinerules-architect │ │ ├── .clinerules-ask │ │ ├── .clinerules-code │ │ ├── .clinerules-debug │ │ └── .clinerules-test ├── core │ ├── MemoryBankManager.ts │ ├── ProgressTracker.ts │ └── templates │ │ ├── CoreTemplates.ts │ │ └── index.ts ├── index.ts ├── server │ ├── MemoryBankServer.ts │ ├── resources │ │ ├── MemoryBankResources.ts │ │ └── index.ts │ └── tools │ │ ├── ContextTools.ts │ │ ├── CoreTools.ts │ │ ├── DecisionTools.ts │ │ ├── ModeTools.ts │ │ ├── ProgressTools.ts │ │ └── index.ts ├── test-tools.ts ├── types │ ├── bun-test.d.ts │ ├── constants.ts │ ├── guards.ts │ ├── index.ts │ ├── progress.ts │ ├── rules.ts │ └── utils.ts └── utils │ ├── ClineruleTemplates.ts │ ├── ExternalRulesLoader.ts │ ├── FileUtils.ts │ ├── LogManager.ts │ ├── MigrationUtils.ts │ └── ModeManager.ts └── tsconfig.json /.clinerules-architect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.clinerules-architect -------------------------------------------------------------------------------- /.clinerules-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.clinerules-ask -------------------------------------------------------------------------------- /.clinerules-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.clinerules-code -------------------------------------------------------------------------------- /.clinerules-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.clinerules-debug -------------------------------------------------------------------------------- /.clinerules-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.clinerules-test -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.npmignore -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/.versionrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/bun.lock -------------------------------------------------------------------------------- /bunbuild.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/bunbuild.toml -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/bunfig.toml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/ai-assistant-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/ai-assistant-integration.md -------------------------------------------------------------------------------- /docs/architecture-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/architecture-plan.md -------------------------------------------------------------------------------- /docs/build-with-bun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/build-with-bun.md -------------------------------------------------------------------------------- /docs/bun-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/bun-migration.md -------------------------------------------------------------------------------- /docs/cline-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/cline-integration.md -------------------------------------------------------------------------------- /docs/code-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/code-improvements.md -------------------------------------------------------------------------------- /docs/cursor-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/cursor-integration.md -------------------------------------------------------------------------------- /docs/custom-folder-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/custom-folder-name.md -------------------------------------------------------------------------------- /docs/debug-mcp-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/debug-mcp-config.md -------------------------------------------------------------------------------- /docs/documentation-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/documentation-structure.md -------------------------------------------------------------------------------- /docs/file-naming-convention-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/file-naming-convention-update.md -------------------------------------------------------------------------------- /docs/file-naming-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/file-naming-convention.md -------------------------------------------------------------------------------- /docs/implementation-plan-rule-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/implementation-plan-rule-formats.md -------------------------------------------------------------------------------- /docs/integration-testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/integration-testing-guide.md -------------------------------------------------------------------------------- /docs/logging-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/logging-system.md -------------------------------------------------------------------------------- /docs/mcp-protocol-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/mcp-protocol-specification.md -------------------------------------------------------------------------------- /docs/memory-bank-bug-fixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/memory-bank-bug-fixes.md -------------------------------------------------------------------------------- /docs/memory-bank-mcp-startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/memory-bank-mcp-startup.md -------------------------------------------------------------------------------- /docs/memory-bank-path-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/memory-bank-path-changes.md -------------------------------------------------------------------------------- /docs/memory-bank-status-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/memory-bank-status-fix.md -------------------------------------------------------------------------------- /docs/memory-bank-status-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/memory-bank-status-prefix.md -------------------------------------------------------------------------------- /docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/migration-guide.md -------------------------------------------------------------------------------- /docs/modular-architecture-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/modular-architecture-proposal.md -------------------------------------------------------------------------------- /docs/npx-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/npx-usage.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/roo-code-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/roo-code-integration.md -------------------------------------------------------------------------------- /docs/rule-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/rule-examples.md -------------------------------------------------------------------------------- /docs/rule-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/rule-formats.md -------------------------------------------------------------------------------- /docs/test-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/test-coverage.md -------------------------------------------------------------------------------- /docs/testing-clinerules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/testing-clinerules.md -------------------------------------------------------------------------------- /docs/testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/testing-guide.md -------------------------------------------------------------------------------- /docs/testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/testing-strategy.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/usage-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/docs/usage-modes.md -------------------------------------------------------------------------------- /memory-bank/active-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/active-context.md -------------------------------------------------------------------------------- /memory-bank/decision-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/decision-log.md -------------------------------------------------------------------------------- /memory-bank/docs/english-language-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/docs/english-language-policy.md -------------------------------------------------------------------------------- /memory-bank/product-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/product-context.md -------------------------------------------------------------------------------- /memory-bank/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/progress.md -------------------------------------------------------------------------------- /memory-bank/system-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/memory-bank/system-patterns.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/clinerules-integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/clinerules-integration.test.ts -------------------------------------------------------------------------------- /src/__tests__/externalRulesLoader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/externalRulesLoader.test.ts -------------------------------------------------------------------------------- /src/__tests__/fileUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/fileUtils.test.ts -------------------------------------------------------------------------------- /src/__tests__/memory-bank-validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/memory-bank-validation.test.ts -------------------------------------------------------------------------------- /src/__tests__/memoryBankManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/memoryBankManager.test.ts -------------------------------------------------------------------------------- /src/__tests__/migrationUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/migrationUtils.test.ts -------------------------------------------------------------------------------- /src/__tests__/progressTracker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/progressTracker.test.ts -------------------------------------------------------------------------------- /src/__tests__/server/coreTools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/coreTools.test.ts -------------------------------------------------------------------------------- /src/__tests__/server/memoryBankServer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/memoryBankServer.test.ts -------------------------------------------------------------------------------- /src/__tests__/server/temp-server-test-dir/project/.clinerules-architect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/temp-server-test-dir/project/.clinerules-architect -------------------------------------------------------------------------------- /src/__tests__/server/temp-server-test-dir/project/.clinerules-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/temp-server-test-dir/project/.clinerules-ask -------------------------------------------------------------------------------- /src/__tests__/server/temp-server-test-dir/project/.clinerules-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/temp-server-test-dir/project/.clinerules-code -------------------------------------------------------------------------------- /src/__tests__/server/temp-server-test-dir/project/.clinerules-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/temp-server-test-dir/project/.clinerules-debug -------------------------------------------------------------------------------- /src/__tests__/server/temp-server-test-dir/project/.clinerules-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/__tests__/server/temp-server-test-dir/project/.clinerules-test -------------------------------------------------------------------------------- /src/core/MemoryBankManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/core/MemoryBankManager.ts -------------------------------------------------------------------------------- /src/core/ProgressTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/core/ProgressTracker.ts -------------------------------------------------------------------------------- /src/core/templates/CoreTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/core/templates/CoreTemplates.ts -------------------------------------------------------------------------------- /src/core/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/core/templates/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/server/MemoryBankServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/MemoryBankServer.ts -------------------------------------------------------------------------------- /src/server/resources/MemoryBankResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/resources/MemoryBankResources.ts -------------------------------------------------------------------------------- /src/server/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/resources/index.ts -------------------------------------------------------------------------------- /src/server/tools/ContextTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/ContextTools.ts -------------------------------------------------------------------------------- /src/server/tools/CoreTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/CoreTools.ts -------------------------------------------------------------------------------- /src/server/tools/DecisionTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/DecisionTools.ts -------------------------------------------------------------------------------- /src/server/tools/ModeTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/ModeTools.ts -------------------------------------------------------------------------------- /src/server/tools/ProgressTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/ProgressTools.ts -------------------------------------------------------------------------------- /src/server/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/server/tools/index.ts -------------------------------------------------------------------------------- /src/test-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/test-tools.ts -------------------------------------------------------------------------------- /src/types/bun-test.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/bun-test.d.ts -------------------------------------------------------------------------------- /src/types/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/constants.ts -------------------------------------------------------------------------------- /src/types/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/guards.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/progress.ts -------------------------------------------------------------------------------- /src/types/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/rules.ts -------------------------------------------------------------------------------- /src/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/types/utils.ts -------------------------------------------------------------------------------- /src/utils/ClineruleTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/ClineruleTemplates.ts -------------------------------------------------------------------------------- /src/utils/ExternalRulesLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/ExternalRulesLoader.ts -------------------------------------------------------------------------------- /src/utils/FileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/FileUtils.ts -------------------------------------------------------------------------------- /src/utils/LogManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/LogManager.ts -------------------------------------------------------------------------------- /src/utils/MigrationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/MigrationUtils.ts -------------------------------------------------------------------------------- /src/utils/ModeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/src/utils/ModeManager.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/movibe/memory-bank-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------