musubi-sdd 5.9.4 → 5.9.6
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/bin/musubi-init.js
CHANGED
|
@@ -1002,6 +1002,7 @@ async function main(agent, agentKey, options = {}) {
|
|
|
1002
1002
|
{ name: '日本語 (Japanese)', value: 'ja' },
|
|
1003
1003
|
{ name: '中文 (Chinese)', value: 'zh' },
|
|
1004
1004
|
{ name: '한국어 (Korean)', value: 'ko' },
|
|
1005
|
+
{ name: 'Bahasa Indonesia (Indonesian)', value: 'id' },
|
|
1005
1006
|
{ name: 'Español (Spanish)', value: 'es' },
|
|
1006
1007
|
{ name: 'Deutsch (German)', value: 'de' },
|
|
1007
1008
|
{ name: 'Français (French)', value: 'fr' },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "musubi-sdd",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.6",
|
|
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": {
|
|
@@ -12,7 +12,7 @@ const path = require('path');
|
|
|
12
12
|
/**
|
|
13
13
|
* Supported locales
|
|
14
14
|
*/
|
|
15
|
-
const SUPPORTED_LOCALES = ['en', 'ja', 'zh', 'ko', 'es', 'de', 'fr'];
|
|
15
|
+
const SUPPORTED_LOCALES = ['en', 'ja', 'zh', 'ko', 'id', 'es', 'de', 'fr'];
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Template category to directory mapping
|
|
@@ -34,6 +34,7 @@ const LOCALE_NAMES = {
|
|
|
34
34
|
ja: '日本語',
|
|
35
35
|
zh: '中文',
|
|
36
36
|
ko: '한국어',
|
|
37
|
+
id: 'Bahasa Indonesia',
|
|
37
38
|
es: 'Español',
|
|
38
39
|
de: 'Deutsch',
|
|
39
40
|
fr: 'Français',
|