ma-agents 3.15.4 → 3.16.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/lib/bmad-extension-plugin/.claude-plugin/marketplace.json +1 -1
- package/lib/knowledge-atlas/dist/atlas.cjs +138 -55
- package/lib/knowledge-atlas/src/render/document.ts +109 -12
- package/lib/knowledge-atlas/src/render/site.ts +20 -2
- package/lib/knowledge-atlas/src/render/vendor.ts +43 -0
- package/lib/knowledge-atlas/vendor/drawio-viewer.min.js +7563 -0
- package/lib/knowledge-atlas/vendor/mermaid.min.js +2314 -0
- package/package.json +70 -70
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ma-agents",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor, Roo Code)",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"ma-agents": "bin/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
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/uv-transition-resilience.test.js && node test/passthrough-reconciliation-6-9-0.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 && node test/knowledge-atlas-smoke.test.js && node test/knowledge-atlas-manifest.test.js && node test/knowledge-atlas-render.test.js && node test/knowledge-atlas-graph.test.js && node test/knowledge-atlas-packaging.test.js && node test/knowledge-atlas-offline-safety.test.js && node test/knowledge-atlas-reconcile.test.js && node test/knowledge-atlas-determinism.test.js && node test/knowledge-atlas-degradation.test.js && node test/knowledge-atlas-realproject.test.js && node test/knowledge-atlas-link-integrity.test.js && node test/knowledge-atlas-config-scan.test.js && node test/knowledge-atlas-references.test.js",
|
|
12
|
-
"build:bmad-cache": "node scripts/build-bmad-cache.js",
|
|
13
|
-
"build:plugin": "node scripts/build-plugin.js",
|
|
14
|
-
"build:atlas": "node scripts/build-atlas.js",
|
|
15
|
-
"typecheck:atlas": "tsc --project lib/knowledge-atlas/tsconfig.json",
|
|
16
|
-
"prepare": "node scripts/build-plugin.js && node scripts/build-atlas.js",
|
|
17
|
-
"version": "node scripts/build-plugin.js && node scripts/build-atlas.js && git add lib/bmad-extension-plugin && git add -f lib/knowledge-atlas/dist/atlas.cjs"
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"ai",
|
|
21
|
-
"agent",
|
|
22
|
-
"skills",
|
|
23
|
-
"claude-code",
|
|
24
|
-
"gemini",
|
|
25
|
-
"copilot",
|
|
26
|
-
"kilocode",
|
|
27
|
-
"cline",
|
|
28
|
-
"cursor",
|
|
29
|
-
"roo-code",
|
|
30
|
-
"npx"
|
|
31
|
-
],
|
|
32
|
-
"author": "",
|
|
33
|
-
"license": "MIT",
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"bmad-method": "6.9.0",
|
|
36
|
-
"chalk": "^4.1.2",
|
|
37
|
-
"fs-extra": "^11.1.1",
|
|
38
|
-
"js-yaml": "^4.1.1",
|
|
39
|
-
"prompts": "^2.4.2",
|
|
40
|
-
"yaml": "^2.8.2"
|
|
41
|
-
},
|
|
42
|
-
"files": [
|
|
43
|
-
"bin/",
|
|
44
|
-
"lib/",
|
|
45
|
-
"scripts/",
|
|
46
|
-
"skills/",
|
|
47
|
-
"docs/",
|
|
48
|
-
"examples/",
|
|
49
|
-
"mil498/",
|
|
50
|
-
"index.js",
|
|
51
|
-
"README.md",
|
|
52
|
-
"SKILLS_STRUCTURE.md",
|
|
53
|
-
"CONTRIBUTING.md",
|
|
54
|
-
"QUICK_START.md",
|
|
55
|
-
"LICENSE"
|
|
56
|
-
],
|
|
57
|
-
"engines": {
|
|
58
|
-
"node": ">=16.0.0"
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@types/js-yaml": "^4.0.9",
|
|
62
|
-
"@types/markdown-it": "^14.1.2",
|
|
63
|
-
"@types/node": "^18.19.130",
|
|
64
|
-
"esbuild": "^0.28.1",
|
|
65
|
-
"force-graph": "1.51",
|
|
66
|
-
"lunr": "^2.3.9",
|
|
67
|
-
"markdown-it": "^14.2.0",
|
|
68
|
-
"typescript": "^6.0.3"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ma-agents",
|
|
3
|
+
"version": "3.16.0",
|
|
4
|
+
"description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor, Roo Code)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ma-agents": "bin/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
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/uv-transition-resilience.test.js && node test/passthrough-reconciliation-6-9-0.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 && node test/knowledge-atlas-smoke.test.js && node test/knowledge-atlas-manifest.test.js && node test/knowledge-atlas-render.test.js && node test/knowledge-atlas-graph.test.js && node test/knowledge-atlas-packaging.test.js && node test/knowledge-atlas-offline-safety.test.js && node test/knowledge-atlas-reconcile.test.js && node test/knowledge-atlas-determinism.test.js && node test/knowledge-atlas-degradation.test.js && node test/knowledge-atlas-realproject.test.js && node test/knowledge-atlas-link-integrity.test.js && node test/knowledge-atlas-config-scan.test.js && node test/knowledge-atlas-references.test.js",
|
|
12
|
+
"build:bmad-cache": "node scripts/build-bmad-cache.js",
|
|
13
|
+
"build:plugin": "node scripts/build-plugin.js",
|
|
14
|
+
"build:atlas": "node scripts/build-atlas.js",
|
|
15
|
+
"typecheck:atlas": "tsc --project lib/knowledge-atlas/tsconfig.json",
|
|
16
|
+
"prepare": "node scripts/build-plugin.js && node scripts/build-atlas.js",
|
|
17
|
+
"version": "node scripts/build-plugin.js && node scripts/build-atlas.js && git add lib/bmad-extension-plugin && git add -f lib/knowledge-atlas/dist/atlas.cjs"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"ai",
|
|
21
|
+
"agent",
|
|
22
|
+
"skills",
|
|
23
|
+
"claude-code",
|
|
24
|
+
"gemini",
|
|
25
|
+
"copilot",
|
|
26
|
+
"kilocode",
|
|
27
|
+
"cline",
|
|
28
|
+
"cursor",
|
|
29
|
+
"roo-code",
|
|
30
|
+
"npx"
|
|
31
|
+
],
|
|
32
|
+
"author": "",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"bmad-method": "6.9.0",
|
|
36
|
+
"chalk": "^4.1.2",
|
|
37
|
+
"fs-extra": "^11.1.1",
|
|
38
|
+
"js-yaml": "^4.1.1",
|
|
39
|
+
"prompts": "^2.4.2",
|
|
40
|
+
"yaml": "^2.8.2"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"bin/",
|
|
44
|
+
"lib/",
|
|
45
|
+
"scripts/",
|
|
46
|
+
"skills/",
|
|
47
|
+
"docs/",
|
|
48
|
+
"examples/",
|
|
49
|
+
"mil498/",
|
|
50
|
+
"index.js",
|
|
51
|
+
"README.md",
|
|
52
|
+
"SKILLS_STRUCTURE.md",
|
|
53
|
+
"CONTRIBUTING.md",
|
|
54
|
+
"QUICK_START.md",
|
|
55
|
+
"LICENSE"
|
|
56
|
+
],
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=16.0.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@types/js-yaml": "^4.0.9",
|
|
62
|
+
"@types/markdown-it": "^14.1.2",
|
|
63
|
+
"@types/node": "^18.19.130",
|
|
64
|
+
"esbuild": "^0.28.1",
|
|
65
|
+
"force-graph": "1.51",
|
|
66
|
+
"lunr": "^2.3.9",
|
|
67
|
+
"markdown-it": "^14.2.0",
|
|
68
|
+
"typescript": "^6.0.3"
|
|
69
|
+
}
|
|
70
|
+
}
|