ma-agents 3.13.2-skillname.0 → 3.13.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 CHANGED
@@ -166,7 +166,7 @@ Skills can be installed into any of these AI coding agents:
166
166
  |------|-------------|----------|------------------|
167
167
  | Claude Code | `.claude/skills/` | `claude-code` | `.claude/CLAUDE.md` |
168
168
  | Google Gemini | `.gemini/skills/` | `generic` | `.gemini/gemini.md` |
169
- | GitHub Copilot | `.github/skills/` | `generic` | `.github/copilot/copilot.md` |
169
+ | GitHub Copilot | `.agents/skills/` | `generic` | `.github/copilot-instructions.md` |
170
170
  | Cursor | `.cursor/skills/` | `generic` | `.cursor/cursor.md` |
171
171
  | Kilocode | `.kilocode/skills/` | `generic` | `.kilocode/kilocode.md` |
172
172
  | Cline | `.cline/skills/` | `cline` | `.cline/clinerules.md` |
@@ -37,7 +37,7 @@
37
37
  "name": "ma-skills",
38
38
  "source": "./",
39
39
  "description": "ma-agents extension module providing enterprise SDLC personas and operational workflow skills.",
40
- "version": "3.13.1",
40
+ "version": "3.13.2",
41
41
  "author": {
42
42
  "name": "Alon Mayaffit"
43
43
  },
package/lib/agents.js CHANGED
@@ -78,8 +78,11 @@ const agents = [
78
78
  // from their tool-specific directories to the shared `.agents/skills/`
79
79
  // tree (see platform-codes.yaml). Aligning here keeps the smoke verifier
80
80
  // and all downstream consumers in sync with BMAD's actual write target.
81
- // The instruction file path is unchanged `.github/copilot/copilot.md`
82
- // is still where Copilot reads custom-instructions.
81
+ // The skill-bootstrap instructions MUST live in `.github/copilot-instructions.md`
82
+ // — that is the only repository custom-instructions file GitHub Copilot reads
83
+ // (VS Code, Visual Studio, github.com; per the PRD agent table). The earlier
84
+ // `.github/copilot/copilot.md` path was never loaded by Copilot, so installed
85
+ // skills were invisible to it.
83
86
  skillsDir: '.agents/skills',
84
87
  getProjectPath: () => path.join(process.cwd(), '.agents', 'skills'),
85
88
  getGlobalPath: () => {
@@ -95,7 +98,7 @@ const agents = [
95
98
  fileExtension: '.md',
96
99
  template: 'generic',
97
100
  bmadPlatformCode: 'github-copilot',
98
- instructionFiles: ['.github/copilot/copilot.md'],
101
+ instructionFiles: ['.github/copilot-instructions.md'],
99
102
  injectionStrategy: { position: 'top', skipPatterns: ['---'] }
100
103
  },
101
104
  {
@@ -37,7 +37,7 @@
37
37
  "name": "ma-skills",
38
38
  "source": "./",
39
39
  "description": "ma-agents extension module providing enterprise SDLC personas and operational workflow skills.",
40
- "version": "3.13.2-skillname.0",
40
+ "version": "3.13.2",
41
41
  "author": {
42
42
  "name": "Alon Mayaffit"
43
43
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ma-agents",
3
- "version": "3.13.2-skillname.0",
3
+ "version": "3.13.2",
4
4
  "description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor, Roo Code)",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node bin/cli.js",
11
- "test": "node test/yes-flag.test.js && node test/skill-authoring.test.js && node test/skill-validation.test.js && node test/skill-mandatory.test.js && node test/skill-customize-agent.test.js && node test/create-agent.test.js && node test/generate-project-context.test.js && node test/build-bmad-args.test.js && node test/build-bmad-cache-reader.test.js && node test/bmad-version-bump.test.js && node test/extension-module-restructure.test.js && node test/convert-agents-to-skills.test.js && node test/migration.test.js && node test/migration-validation.test.js && node test/story-15-5-workflow-skills.test.js && node test/repo-layout.test.js && node test/config-storage.test.js && node test/cross-repo-validation.test.js && node test/config-lost-on-update.test.js && node test/portable-paths.test.js && node test/cicd-remote-mode.test.js && node test/config-layout.test.js && node test/roo-code-agent.test.js && node test/roo-code-injection.test.js && node test/profile.test.js && node test/instruction-block.test.js && node test/instruction-injection.test.js && node test/agents-md.test.js && node test/instruction-block-git.test.js && node test/onprem-injection.test.js && node test/onprem-layer.test.js && node test/roomodes.test.js && node test/clinerules.test.js && node test/cline-workflow-reconciliation.test.js && node test/reconfigure.test.js && node test/experimental-warning.test.js && node test/bmad-persona-phase-prefix.test.js && node test/f1a-on-prem-prefix-post-install.test.js && node test/retired-skills-migration.test.js && node test/rename-migration.test.js && node test/uninstall.test.js && node test/offline-recompile.test.js && node test/plugin-manifests.test.js && node test/build-plugin.test.js && node test/config-path-migration.test.js && node test/gitignore-plugin-stage.test.js && node test/customizations-translation.test.js && node test/routing-parity.test.js && node test/bmad-extension.test.js && node test/integration-verification.test.js && node test/agent-scope.test.js && node test/obsolete-tool-dirs.test.js && node test/bmad-empty-tools-guard.test.js && node test/v68-pluginresolver-enumeration-passthrough.test.js && node test/agents.test.js && node test/installer.test.js && node test/bmad.test.js && node test/cli.test.js",
11
+ "test": "node test/yes-flag.test.js && node test/skill-authoring.test.js && node test/skill-validation.test.js && node test/skill-mandatory.test.js && node test/skill-customize-agent.test.js && node test/create-agent.test.js && node test/generate-project-context.test.js && node test/build-bmad-args.test.js && node test/build-bmad-cache-reader.test.js && node test/bmad-version-bump.test.js && node test/extension-module-restructure.test.js && node test/convert-agents-to-skills.test.js && node test/migration.test.js && node test/migration-validation.test.js && node test/story-15-5-workflow-skills.test.js && node test/repo-layout.test.js && node test/config-storage.test.js && node test/cross-repo-validation.test.js && node test/config-lost-on-update.test.js && node test/portable-paths.test.js && node test/cicd-remote-mode.test.js && node test/config-layout.test.js && node test/roo-code-agent.test.js && node test/roo-code-injection.test.js && node test/profile.test.js && node test/instruction-block.test.js && node test/instruction-injection.test.js && node test/agents-md.test.js && node test/instruction-block-git.test.js && node test/onprem-injection.test.js && node test/onprem-layer.test.js && node test/copilot-instructions-path.test.js && node test/roomodes.test.js && node test/clinerules.test.js && node test/cline-workflow-reconciliation.test.js && node test/reconfigure.test.js && node test/experimental-warning.test.js && node test/bmad-persona-phase-prefix.test.js && node test/f1a-on-prem-prefix-post-install.test.js && node test/retired-skills-migration.test.js && node test/rename-migration.test.js && node test/uninstall.test.js && node test/offline-recompile.test.js && node test/plugin-manifests.test.js && node test/build-plugin.test.js && node test/config-path-migration.test.js && node test/gitignore-plugin-stage.test.js && node test/customizations-translation.test.js && node test/routing-parity.test.js && node test/bmad-extension.test.js && node test/integration-verification.test.js && node test/agent-scope.test.js && node test/obsolete-tool-dirs.test.js && node test/bmad-empty-tools-guard.test.js && node test/v68-pluginresolver-enumeration-passthrough.test.js && node test/agents.test.js && node test/installer.test.js && node test/bmad.test.js && node test/cli.test.js",
12
12
  "build:bmad-cache": "node scripts/build-bmad-cache.js",
13
13
  "build:plugin": "node scripts/build-plugin.js",
14
14
  "prepare": "node scripts/build-plugin.js",