docs(installer): clarify skill-only module warning suppression
This commit is contained in:
parent
3b297fc964
commit
0a7329331b
|
|
@ -247,6 +247,8 @@ class ManifestGenerator {
|
||||||
const moduleYamlPath = await resolveInstalledModuleYaml(moduleName);
|
const moduleYamlPath = await resolveInstalledModuleYaml(moduleName);
|
||||||
if (!moduleYamlPath) {
|
if (!moduleYamlPath) {
|
||||||
if (await this._isSkillOnlyModule(moduleName)) {
|
if (await this._isSkillOnlyModule(moduleName)) {
|
||||||
|
// Pure source-root skill bundles intentionally ship no module.yaml,
|
||||||
|
// so there is no agent roster to emit and no warning to surface.
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// External modules live in ~/.bmad/cache/external-modules, not src/modules.
|
// External modules live in ~/.bmad/cache/external-modules, not src/modules.
|
||||||
|
|
@ -445,6 +447,8 @@ class ManifestGenerator {
|
||||||
const moduleYamlPath = await resolveInstalledModuleYaml(moduleName);
|
const moduleYamlPath = await resolveInstalledModuleYaml(moduleName);
|
||||||
if (!moduleYamlPath) {
|
if (!moduleYamlPath) {
|
||||||
if (await this._isSkillOnlyModule(moduleName)) {
|
if (await this._isSkillOnlyModule(moduleName)) {
|
||||||
|
// Pure source-root skill bundles intentionally ship no module.yaml,
|
||||||
|
// so there is no installer config schema to read or warning to surface.
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
console.warn(
|
console.warn(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue