docs: 添加项目开发与美化计划

- 新增 development_plan.md 文件,详细规划了项目开发的三个阶段
- 添加 .clinerules 文件,定义了代码执行和任务分解的规则
- 创建 mcp.json 文件,配置了 Model Context Protocol 服务
This commit is contained in:
2025-07-30 14:48:54 +08:00
parent de8758f7cc
commit 4e0977de85
3 changed files with 84 additions and 0 deletions

22
.roo/mcp.json Normal file
View File

@@ -0,0 +1,22 @@
{
"mcpServers": {
"sequentialthinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"alwaysAllow": [
"sequentialthinking"
]
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"C:/AIFA/2 "
]
}
}
}