diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bdb50f0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +[English](CHANGELOG.md) | [中文](docs/zh/CHANGELOG.md) + +# Changelog + +All notable changes to this project will be documented in this file. + +## [1.0.7] + +### Added + +- Added Thought Chain Process feature for systematic problem analysis +- Added Project Rules Initialization feature for maintaining project consistency + +### Changed + +- Updated documentation to emphasize systematic problem analysis and project consistency +- Adjusted tool list to include new features +- Updated .gitignore to exclude unnecessary folders diff --git a/README.md b/README.md index 2043a1d..1d308a4 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ This tool is particularly valuable when your codebase expands or undergoes signi - [System Architecture](docs/en/architecture.md): Detailed system design and data flow explanation - [Prompt Customization Guide](docs/en/prompt-customization.md): Instructions for customizing tool prompts via environment variables +- [Changelog](CHANGELOG.md): Record of all notable changes to this project ## 🔧 Installation and Usage diff --git a/docs/zh/CHANGELOG.md b/docs/zh/CHANGELOG.md new file mode 100644 index 0000000..7dcb7d8 --- /dev/null +++ b/docs/zh/CHANGELOG.md @@ -0,0 +1,18 @@ +[English](../../CHANGELOG.md) | [中文](CHANGELOG.md) + +# 更新日誌 + +本文件記錄專案的所有重要變更。 + +## [1.0.7] + +### 新增 + +- 新增思維鏈過程功能,用於系統性問題分析 +- 新增專案規範初始化功能,用於維護專案一致性 + +### 變更 + +- 更新相關文檔,強調系統性問題分析與專案一致性維護 +- 調整工具列表,包含新功能 +- 更新 .gitignore,排除不必要的資料夾 diff --git a/docs/zh/README.md b/docs/zh/README.md index b42feae..9969b44 100644 --- a/docs/zh/README.md +++ b/docs/zh/README.md @@ -99,6 +99,7 @@ - [系統架構](architecture.md):詳細的系統設計與數據流說明 - [提示詞自定義指南](prompt-customization.md):透過環境變數自定義工具提示詞的說明 +- [更新日誌](CHANGELOG.md):記錄此專案的所有重要變更 ## 🔧 安裝與使用 diff --git a/package-lock.json b/package-lock.json index c1198fb..6d52562 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mcp-shrimp-task-manager", - "version": "1.0.3", + "version": "1.0.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mcp-shrimp-task-manager", - "version": "1.0.3", + "version": "1.0.7", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", @@ -14,6 +14,9 @@ "uuid": "^9.0.1", "zod": "^3.22.4" }, + "bin": { + "mcp-shrimp-task-manager": "dist/index.js" + }, "devDependencies": { "@types/node": "^20.8.2", "@types/uuid": "^9.0.6", diff --git a/package.json b/package.json index 385aef0..7a06c3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcp-shrimp-task-manager", - "version": "1.0.6", + "version": "1.0.7", "description": "Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems", "main": "dist/index.js", "type": "module",