|
10 | 10 |
|
11 | 11 | Vibe Coder is an MCP (Model Context Protocol) server designed to supercharge your AI assistant (like Cursor, Cline AI, or Claude Desktop) with powerful tools for software development. It helps with research, planning, generating requirements, creating starter projects, and more! |
12 | 12 |
|
13 | | -## 🆕 What's New in Version 0.3.0 |
14 | | - |
15 | | -### 🎯 Major NLP and Pattern Matching Improvements |
16 | | -- **✨ Enhanced Natural Language Processing** |
17 | | - - Reconnected and optimized pattern matching system achieving 94%+ accuracy |
18 | | - - Added 314 semantically relevant patterns across all 15 tools |
19 | | - - Implemented ultra-fast keyword prefiltering (<1ms response time) |
20 | | - - Lowered semantic matching threshold from 0.70 to 0.60 for better coverage |
21 | | - |
22 | | -- **🚀 Intelligent Request Routing** |
23 | | - - Multi-layer matching pipeline: Keyword → Pattern → Semantic → Sequential → Fallback |
24 | | - - Pattern matching now handles 90% confidence for exact matches |
25 | | - - Keyword prefiltering provides instant matches for common requests |
26 | | - - Sequential thinking now aware of all 15 tools (previously only 6) |
27 | | - |
28 | | -- **📊 Comprehensive Pattern Coverage** |
29 | | - - Each tool now has 15-33 unique patterns (up from 2-13) |
30 | | - - Patterns are semantically relevant to actual tool functionality |
31 | | - - Eliminated pattern conflicts between similar tools |
32 | | - - Added support for natural language variations and conversational queries |
33 | | - |
34 | | -### 🔧 Technical Improvements |
35 | | -- **Performance Enhancements** |
36 | | - - Pattern matching: <5ms for 90% confidence matches |
37 | | - - Keyword matching: <1ms for 85% confidence matches |
38 | | - - Overall accuracy improved from ~20% to 94%+ for defined patterns |
39 | | - - Reduced fallback usage by 75% |
40 | | - |
41 | | -- **Code Quality** |
42 | | - - Fully type-safe implementation with zero TypeScript errors |
43 | | - - All changes follow existing architectural patterns |
44 | | - - Respects centralized configuration, security, and transport systems |
45 | | - - Comprehensive test coverage for NLP improvements |
| 13 | +## 🆕 What's New in Version 0.3.1 |
| 14 | + |
| 15 | +### 🔧 Installation & Version Synchronization |
| 16 | +- **✨ Global Installation Alignment** |
| 17 | + - Fixed global and local version synchronization issues |
| 18 | + - Enhanced clean build process for both local and global installations |
| 19 | + - Improved global package installation workflow using proper tarball builds |
| 20 | + - Better version consistency across all project files |
| 21 | + |
| 22 | +- **📝 Documentation Updates** |
| 23 | + - Updated all version references across configuration files |
| 24 | + - Synchronized setup scripts (setup.sh, setup.bat) to reflect new version |
| 25 | + - Updated README, CHANGELOG, and system instructions |
| 26 | + - Enhanced .vibe-config.json version alignment |
| 27 | + |
| 28 | +- **🏗️ Build Process Improvements** |
| 29 | + - Streamlined clean build workflow for release preparation |
| 30 | + - Enhanced global installation process to avoid symlink issues |
| 31 | + - Better CI/CD preparation with proper version management |
| 32 | + - Improved packaging workflow for NPM publication |
46 | 33 |
|
47 | 34 | ### Previous Releases |
48 | 35 |
|
@@ -561,8 +548,8 @@ Vibe Coder MCP integrates with MCP-compatible clients to provide the following c |
561 | 548 | ### 📋 **Research & Planning Suite** |
562 | 549 | * **Research Tool**: Deep research using Perplexity Sonar via OpenRouter |
563 | 550 | * **Context Curation**: Intelligent codebase analysis with 8-phase workflow pipeline and intelligent codemap caching for AI-driven development |
564 | | -* **Document Generators**: PRDs (`generate-prd`), user stories (`generate-user-stories`), task lists (`generate-task-list`), development rules (`generate-rules`) |
565 | | -* **Project Scaffolding**: Full-stack starter kits (`generate-fullstack-starter-kit`) with dynamic template generation |
| 551 | +* **Document Generators**: PRDs (`prd-generator`), user stories (`user-stories-generator`), task lists (`task-list-generator`), development rules (`rules-generator`) |
| 552 | +* **Project Scaffolding**: Full-stack starter kits (`fullstack-starter-kit-generator`) with dynamic template generation |
566 | 553 | * **Workflow Execution**: Predefined sequences of tool calls defined in `workflows.json` |
567 | 554 |
|
568 | 555 | ### ⚡ **Performance & Reliability** |
@@ -788,11 +775,11 @@ The location varies depending on your AI assistant: |
788 | 775 | // A list of tool names that the MCP client is allowed to execute automatically |
789 | 776 | "autoApprove": [ |
790 | 777 | "research", |
791 | | - "generate-rules", |
792 | | - "generate-user-stories", |
793 | | - "generate-task-list", |
794 | | - "generate-prd", |
795 | | - "generate-fullstack-starter-kit", |
| 778 | + "rules-generator", |
| 779 | + "user-stories-generator", |
| 780 | + "task-list-generator", |
| 781 | + "prd-generator", |
| 782 | + "fullstack-starter-kit-generator", |
796 | 783 | "refactor-code", |
797 | 784 | "git-summary", |
798 | 785 | "run-workflow", |
@@ -1306,14 +1293,14 @@ Refer to these individual READMEs for in-depth information: |
1306 | 1293 |
|
1307 | 1294 | ### Planning & Documentation Tools |
1308 | 1295 |
|
1309 | | -* **Rules Generator (`generate-rules`):** Creates project-specific development rules and guidelines. |
1310 | | -* **PRD Generator (`generate-prd`):** Generates comprehensive product requirements documents. |
1311 | | -* **User Stories Generator (`generate-user-stories`):** Creates detailed user stories with acceptance criteria. |
1312 | | -* **Task List Generator (`generate-task-list`):** Builds structured development task lists with dependencies. |
| 1296 | +* **Rules Generator (`rules-generator`):** Creates project-specific development rules and guidelines. |
| 1297 | +* **PRD Generator (`prd-generator`):** Generates comprehensive product requirements documents. |
| 1298 | +* **User Stories Generator (`user-stories-generator`):** Creates detailed user stories with acceptance criteria. |
| 1299 | +* **Task List Generator (`task-list-generator`):** Builds structured development task lists with dependencies. |
1313 | 1300 |
|
1314 | 1301 | ### Project Scaffolding Tool |
1315 | 1302 |
|
1316 | | -* **Fullstack Starter Kit Generator (`generate-fullstack-starter-kit`):** Creates customized project starter kits with specified frontend/backend technologies, including basic setup scripts and configuration. |
| 1303 | +* **Fullstack Starter Kit Generator (`fullstack-starter-kit-generator`):** Creates customized project starter kits with specified frontend/backend technologies, including basic setup scripts and configuration. |
1317 | 1304 |
|
1318 | 1305 | ### Workflow & Orchestration |
1319 | 1306 |
|
|
0 commit comments