musubi-sdd 5.9.6 → 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 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 | `.claude/skills/`, `.claude/commands/` |
268
- | **GitHub Copilot** | ❌ | ✅ (AGENTS.md) | `#sdd-*` | Markdown + AGENTS.md | `.github/prompts/`, `.github/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用(#sdd-*、Markdown
539
- │ ├── AGENTS.md # 25エージェント定義(公式サポート)
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**: 25 Skills API(専用) + コマンド(Markdown)
567
- - **GitHub Copilot & Cursor**: AGENTS.md(公式サポート) + コマンド(Markdown)
568
- - **Gemini CLI**: GEMINI.md統合(25エージェント) + TOMLコマンド(ユニーク)
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
- - **全プラットフォーム**: 同じ25エージェント、異なる実装形式
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 | Installation Directory |
369
- | ------------------ | -------------- | -------------- | ---------------- | -------------------- | --------------------------------------------- |
370
- | **Claude Code** | ✅ (27 skills) | ✅ | `/sdd-*` | Markdown | `.claude/skills/`, `.claude/commands/` |
371
- | **GitHub Copilot** | ❌ | ✅ (AGENTS.md) | `#sdd-*` | Markdown + AGENTS.md | `.github/prompts/`, `.github/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 (#sdd-*, Markdown)
650
- │ ├── AGENTS.md # 27 skills definition (official support)
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 & Cursor**: AGENTS.md (official support) + commands (Markdown)
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musubi-sdd",
3
- "version": "5.9.6",
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": {