musubi-sdd 5.7.2 → 5.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -0
- package/package.json +1 -1
- package/src/ai/advanced-ai.js +877 -0
- package/src/ai/index.js +52 -0
- package/src/enterprise/index.js +40 -0
- package/src/enterprise/multi-tenant.js +913 -0
- package/src/index.js +12 -0
- package/src/integrations/codegraph-mcp.js +538 -4
- package/src/integrations/enterprise-integrations.js +930 -0
package/README.md
CHANGED
|
@@ -71,6 +71,61 @@ musubi init --windsurf # Windsurf IDE
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
+
## 📊 What's New in v5.8.0
|
|
75
|
+
|
|
76
|
+
### CodeGraph MCP v0.8.0 Integration 🔗
|
|
77
|
+
|
|
78
|
+
Major update to CodeGraph MCP integration with expanded language support and new features.
|
|
79
|
+
|
|
80
|
+
#### 16 Language Support (NEW: Kotlin, Swift, Scala, Lua)
|
|
81
|
+
|
|
82
|
+
- **Python, TypeScript, JavaScript** - Full AST analysis
|
|
83
|
+
- **Rust, Go, Java, PHP, C#** - Enterprise language support
|
|
84
|
+
- **C, C++, HCL (Terraform)** - System and infrastructure code
|
|
85
|
+
- **Ruby** - Dynamic language support
|
|
86
|
+
- **Kotlin** (NEW) - `.kt`, `.kts` files with classes, interfaces, functions
|
|
87
|
+
- **Swift** (NEW) - `.swift` files with classes, structs, protocols
|
|
88
|
+
- **Scala** (NEW) - `.scala`, `.sc` files with traits, objects
|
|
89
|
+
- **Lua** (NEW) - `.lua` files with functions, table assignments
|
|
90
|
+
|
|
91
|
+
#### File Watching & Auto Re-indexing
|
|
92
|
+
|
|
93
|
+
- **`codegraph-mcp watch`** - Real-time file monitoring
|
|
94
|
+
- **Debounce configuration** - Configurable delay (default: 1.0s)
|
|
95
|
+
- **Community detection** - Optional `--community` flag after re-index
|
|
96
|
+
|
|
97
|
+
#### Enhanced MCP Tools (14 Tools)
|
|
98
|
+
|
|
99
|
+
| Category | Tools |
|
|
100
|
+
|----------|-------|
|
|
101
|
+
| **Graph Query** | `query_codebase`, `find_dependencies`, `find_callers`, `find_callees`, `find_implementations`, `analyze_module_structure` |
|
|
102
|
+
| **Code Retrieval** | `get_code_snippet`, `read_file_content`, `get_file_structure` |
|
|
103
|
+
| **GraphRAG** | `global_search`, `local_search` |
|
|
104
|
+
| **Management** | `suggest_refactoring`, `reindex_repository`, `execute_shell_command` |
|
|
105
|
+
|
|
106
|
+
#### Security & Performance (v0.7.3)
|
|
107
|
+
|
|
108
|
+
- **Security fixes**: Path traversal and command injection protection
|
|
109
|
+
- **Connection pooling**: Improved database performance
|
|
110
|
+
- **Caching**: Faster repeated queries
|
|
111
|
+
|
|
112
|
+
```javascript
|
|
113
|
+
// Use CodeGraph MCP integration
|
|
114
|
+
const { CodeGraphIntegration } = require('musubi-sdd');
|
|
115
|
+
|
|
116
|
+
const cg = new CodeGraphIntegration('/path/to/repo');
|
|
117
|
+
await cg.indexRepository();
|
|
118
|
+
|
|
119
|
+
// File watching (v0.7.0+)
|
|
120
|
+
await cg.startWatch({ debounce: 2.0, community: true });
|
|
121
|
+
|
|
122
|
+
// Query codebase
|
|
123
|
+
const results = await cg.queryCodebase('authentication');
|
|
124
|
+
const callers = await cg.findCallers('UserService::login');
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
74
129
|
## 📊 What's New in v5.6.0
|
|
75
130
|
|
|
76
131
|
### Enterprise-Scale Analysis & Rust Migration Support 🏢🦀
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "musubi-sdd",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.2",
|
|
4
4
|
"description": "Ultimate Specification Driven Development Tool with 27 Agents for 7 AI Coding Platforms + MCP Integration (Claude Code, GitHub Copilot, Cursor, Gemini CLI, Windsurf, Codex, Qwen Code)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|