musubi-sdd 5.9.5 → 6.0.0
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.ja.md +15 -10
- package/README.md +12 -7
- package/bin/musubi-init.js +1 -0
- package/package.json +1 -1
- package/src/templates/locale-manager.js +2 -1
- /package/src/templates/agents/github-copilot/commands/{sdd-change-apply.md → sdd-change-apply.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-change-archive.md → sdd-change-archive.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-change-init.md → sdd-change-init.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-design.md → sdd-design.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-implement.md → sdd-implement.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-requirements.md → sdd-requirements.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-steering.md → sdd-steering.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-tasks.md → sdd-tasks.prompt.md} +0 -0
- /package/src/templates/agents/github-copilot/commands/{sdd-validate.md → sdd-validate.prompt.md} +0 -0
package/README.ja.md
CHANGED
|
@@ -262,10 +262,10 @@ musubi init -r owner/repo@develop
|
|
|
262
262
|
|
|
263
263
|
MUSUBIは7つのAIコーディングエージェントに対応し、それぞれに最適化された設定を提供します。
|
|
264
264
|
|
|
265
|
-
| エージェント | スキルAPI | 27スキル | コマンド形式 | コマンドファイル形式
|
|
266
|
-
| ------------------ | ------------- | -------------- | ---------------- |
|
|
267
|
-
| **Claude Code** | ✅ (27スキル) | ✅ | `/sdd-*` | Markdown
|
|
268
|
-
| **GitHub Copilot** | ❌ | ✅ (AGENTS.md) |
|
|
265
|
+
| エージェント | スキルAPI | 27スキル | コマンド形式 | コマンドファイル形式 | インストールディレクトリ |
|
|
266
|
+
| ------------------ | ------------- | -------------- | ---------------- | ------------------------- | --------------------------------------------- |
|
|
267
|
+
| **Claude Code** | ✅ (27スキル) | ✅ | `/sdd-*` | Markdown (.md) | `.claude/skills/`, `.claude/commands/` |
|
|
268
|
+
| **GitHub Copilot** | ❌ | ✅ (AGENTS.md) | `/sdd-*` | プロンプトファイル (.prompt.md) | `.github/prompts/`, `.github/AGENTS.md` |
|
|
269
269
|
| **Cursor IDE** | ❌ | ✅ (AGENTS.md) | `/sdd-*` | Markdown + AGENTS.md | `.cursor/commands/`, `.cursor/AGENTS.md` |
|
|
270
270
|
| **Gemini CLI** | ❌ | ✅ (GEMINI.md) | `/sdd-*` | TOML + GEMINI.md | `.gemini/commands/`, `GEMINI.md` |
|
|
271
271
|
| **Codex CLI** | ❌ | ✅ (AGENTS.md) | `/prompts:sdd-*` | Markdown + AGENTS.md | `.codex/prompts/`, `.codex/AGENTS.md` |
|
|
@@ -277,6 +277,7 @@ MUSUBIは7つのAIコーディングエージェントに対応し、それぞ
|
|
|
277
277
|
- スキルAPIはClaude Code専用です
|
|
278
278
|
- **全7プラットフォームが27スキルに対応**(Skills APIまたはAGENTS.md経由)
|
|
279
279
|
- v5.9.0で5つの組み込みオーケストレータースキルを追加(release, workflow, package, constitution-level, project-config)
|
|
280
|
+
- **GitHub CopilotはVS Code公式ドキュメントに従い `.prompt.md` 拡張子を使用**
|
|
280
281
|
- AGENTS.md: OpenAI仕様、GitHub Copilot & Cursorが公式サポート
|
|
281
282
|
- Gemini CLIはTOML形式 + GEMINI.md統合を使用
|
|
282
283
|
- その他のエージェントはMarkdown形式 + AGENTS.mdを使用
|
|
@@ -535,8 +536,11 @@ your-project/
|
|
|
535
536
|
|
|
536
537
|
```text
|
|
537
538
|
your-project/
|
|
538
|
-
├── .github/prompts/ # GitHub Copilot
|
|
539
|
-
│ ├──
|
|
539
|
+
├── .github/prompts/ # GitHub Copilot用(/sdd-*、.prompt.md)
|
|
540
|
+
│ ├── sdd-steering.prompt.md # プロンプトファイルは .prompt.md 拡張子
|
|
541
|
+
│ ├── sdd-requirements.prompt.md
|
|
542
|
+
│ ├── ... (9つのプロンプトファイル)
|
|
543
|
+
│ └── AGENTS.md # 27エージェント定義(公式サポート)
|
|
540
544
|
│ または
|
|
541
545
|
├── .cursor/commands/ # Cursor用(/sdd-*、Markdown)
|
|
542
546
|
│ ├── AGENTS.md # 25エージェント定義(公式サポート)
|
|
@@ -563,11 +567,12 @@ your-project/
|
|
|
563
567
|
|
|
564
568
|
**主な違い**:
|
|
565
569
|
|
|
566
|
-
- **Claude Code**:
|
|
567
|
-
- **GitHub Copilot
|
|
568
|
-
- **
|
|
570
|
+
- **Claude Code**: 27 Skills API(専用) + コマンド(Markdown)
|
|
571
|
+
- **GitHub Copilot**: AGENTS.md(公式サポート) + プロンプトファイル (`.prompt.md`)
|
|
572
|
+
- **Cursor**: AGENTS.md(公式サポート) + コマンド(Markdown)
|
|
573
|
+
- **Gemini CLI**: GEMINI.md統合(27エージェント) + TOMLコマンド(ユニーク)
|
|
569
574
|
- **その他**: AGENTS.md(互換) + Markdownコマンド
|
|
570
|
-
- **全プラットフォーム**: 同じ
|
|
575
|
+
- **全プラットフォーム**: 同じ27エージェント、異なる実装形式
|
|
571
576
|
|
|
572
577
|
## 使用方法
|
|
573
578
|
|
package/README.md
CHANGED
|
@@ -365,10 +365,10 @@ const result = await validator.validateAll(projectPath);
|
|
|
365
365
|
|
|
366
366
|
MUSUBI supports 7 AI coding agents, each with tailored configurations:
|
|
367
367
|
|
|
368
|
-
| Agent | Skills API | 27 Skills | Command Format | Command File Format
|
|
369
|
-
| ------------------ | -------------- | -------------- | ---------------- |
|
|
370
|
-
| **Claude Code** | ✅ (27 skills) | ✅ | `/sdd-*` | Markdown
|
|
371
|
-
| **GitHub Copilot** | ❌ | ✅ (AGENTS.md) |
|
|
368
|
+
| Agent | Skills API | 27 Skills | Command Format | Command File Format | Installation Directory |
|
|
369
|
+
| ------------------ | -------------- | -------------- | ---------------- | ------------------------- | --------------------------------------------- |
|
|
370
|
+
| **Claude Code** | ✅ (27 skills) | ✅ | `/sdd-*` | Markdown (.md) | `.claude/skills/`, `.claude/commands/` |
|
|
371
|
+
| **GitHub Copilot** | ❌ | ✅ (AGENTS.md) | `/sdd-*` | Prompt File (.prompt.md) | `.github/prompts/`, `.github/AGENTS.md` |
|
|
372
372
|
| **Cursor IDE** | ❌ | ✅ (AGENTS.md) | `/sdd-*` | Markdown + AGENTS.md | `.cursor/commands/`, `.cursor/AGENTS.md` |
|
|
373
373
|
| **Gemini CLI** | ❌ | ✅ (GEMINI.md) | `/sdd-*` | TOML + GEMINI.md | `.gemini/commands/`, `GEMINI.md` |
|
|
374
374
|
| **Codex CLI** | ❌ | ✅ (AGENTS.md) | `/prompts:sdd-*` | Markdown + AGENTS.md | `.codex/prompts/`, `.codex/AGENTS.md` |
|
|
@@ -380,6 +380,7 @@ MUSUBI supports 7 AI coding agents, each with tailored configurations:
|
|
|
380
380
|
- Skills API is exclusive to Claude Code
|
|
381
381
|
- **All 7 platforms now support 27 skills** via Skills API (Claude Code) or AGENTS.md (others)
|
|
382
382
|
- v5.9.0 added 5 built-in orchestrator skills (release, workflow, package, constitution-level, project-config)
|
|
383
|
+
- **GitHub Copilot uses `.prompt.md` extension** per VS Code official documentation
|
|
383
384
|
- AGENTS.md: OpenAI specification, officially supported by GitHub Copilot & Cursor
|
|
384
385
|
- Gemini CLI uses TOML format + GEMINI.md integration
|
|
385
386
|
|
|
@@ -646,8 +647,11 @@ your-project/
|
|
|
646
647
|
|
|
647
648
|
```text
|
|
648
649
|
your-project/
|
|
649
|
-
├── .github/prompts/ # For GitHub Copilot (
|
|
650
|
-
│ ├──
|
|
650
|
+
├── .github/prompts/ # For GitHub Copilot (/sdd-*, .prompt.md)
|
|
651
|
+
│ ├── sdd-steering.prompt.md # Prompt files use .prompt.md extension
|
|
652
|
+
│ ├── sdd-requirements.prompt.md
|
|
653
|
+
│ ├── ... (9 prompt files)
|
|
654
|
+
│ └── AGENTS.md # 27 skills definition (official support)
|
|
651
655
|
│ OR
|
|
652
656
|
├── .cursor/commands/ # For Cursor (/sdd-*, Markdown)
|
|
653
657
|
│ ├── AGENTS.md # 27 skills definition (official support)
|
|
@@ -684,7 +688,8 @@ your-project/
|
|
|
684
688
|
**Key Differences**:
|
|
685
689
|
|
|
686
690
|
- **Claude Code**: 27 Skills (25 + 5 built-in) + commands (Markdown)
|
|
687
|
-
- **GitHub Copilot
|
|
691
|
+
- **GitHub Copilot**: AGENTS.md (official support) + prompt files (`.prompt.md`)
|
|
692
|
+
- **Cursor**: AGENTS.md (official support) + commands (Markdown)
|
|
688
693
|
- **Gemini CLI**: GEMINI.md integration (27 skills) + TOML commands (unique)
|
|
689
694
|
- **Others**: AGENTS.md (compatible) + Markdown commands
|
|
690
695
|
- **All platforms**: Same 27 skills, different implementation formats
|
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": "
|
|
3
|
+
"version": "6.0.0",
|
|
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',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/templates/agents/github-copilot/commands/{sdd-design.md → sdd-design.prompt.md}
RENAMED
|
File without changes
|
/package/src/templates/agents/github-copilot/commands/{sdd-implement.md → sdd-implement.prompt.md}
RENAMED
|
File without changes
|
|
File without changes
|
/package/src/templates/agents/github-copilot/commands/{sdd-steering.md → sdd-steering.prompt.md}
RENAMED
|
File without changes
|
|
File without changes
|
/package/src/templates/agents/github-copilot/commands/{sdd-validate.md → sdd-validate.prompt.md}
RENAMED
|
File without changes
|