新增更新日誌以記錄專案變更,更新版本至 1.0.7,並強調系統性問題分析與專案一致性維護的相關文檔,調整工具列表以包含新功能。

This commit is contained in:
siage 2025-04-19 03:29:39 +08:00
parent 863eb52781
commit 316e692f29
6 changed files with 44 additions and 3 deletions

18
CHANGELOG.md Normal file
View File

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

View File

@ -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 - [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 - [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 ## 🔧 Installation and Usage

18
docs/zh/CHANGELOG.md Normal file
View File

@ -0,0 +1,18 @@
[English](../../CHANGELOG.md) | [中文](CHANGELOG.md)
# 更新日誌
本文件記錄專案的所有重要變更。
## [1.0.7]
### 新增
- 新增思維鏈過程功能,用於系統性問題分析
- 新增專案規範初始化功能,用於維護專案一致性
### 變更
- 更新相關文檔,強調系統性問題分析與專案一致性維護
- 調整工具列表,包含新功能
- 更新 .gitignore排除不必要的資料夾

View File

@ -99,6 +99,7 @@
- [系統架構](architecture.md):詳細的系統設計與數據流說明 - [系統架構](architecture.md):詳細的系統設計與數據流說明
- [提示詞自定義指南](prompt-customization.md):透過環境變數自定義工具提示詞的說明 - [提示詞自定義指南](prompt-customization.md):透過環境變數自定義工具提示詞的說明
- [更新日誌](CHANGELOG.md):記錄此專案的所有重要變更
## 🔧 安裝與使用 ## 🔧 安裝與使用

7
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "mcp-shrimp-task-manager", "name": "mcp-shrimp-task-manager",
"version": "1.0.3", "version": "1.0.7",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "mcp-shrimp-task-manager", "name": "mcp-shrimp-task-manager",
"version": "1.0.3", "version": "1.0.7",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0", "@modelcontextprotocol/sdk": "^1.0.0",
@ -14,6 +14,9 @@
"uuid": "^9.0.1", "uuid": "^9.0.1",
"zod": "^3.22.4" "zod": "^3.22.4"
}, },
"bin": {
"mcp-shrimp-task-manager": "dist/index.js"
},
"devDependencies": { "devDependencies": {
"@types/node": "^20.8.2", "@types/node": "^20.8.2",
"@types/uuid": "^9.0.6", "@types/uuid": "^9.0.6",

View File

@ -1,6 +1,6 @@
{ {
"name": "mcp-shrimp-task-manager", "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", "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", "main": "dist/index.js",
"type": "module", "type": "module",