opencode-athena 0.11.0 → 0.12.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/dist/cli/index.js +17 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +31 -12
- package/dist/index.js +125 -34
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +102 -22
- package/dist/plugin/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -965,7 +965,8 @@ var BmadConfigSchema = z.object({
|
|
|
965
965
|
sprintStatus: z.string().nullable().optional().describe("Custom path to sprint-status.yaml file (null = auto-detect)"),
|
|
966
966
|
prd: z.string().nullable().optional().describe("Custom path to PRD.md file (null = auto-detect)"),
|
|
967
967
|
architecture: z.string().nullable().optional().describe("Custom path to architecture.md file (null = auto-detect)"),
|
|
968
|
-
epics: z.string().nullable().optional().describe("Custom path to epics.md file (null = auto-detect)")
|
|
968
|
+
epics: z.string().nullable().optional().describe("Custom path to epics.md file (null = auto-detect)"),
|
|
969
|
+
outputFolder: z.string().nullable().optional().describe("Custom path to BMAD output folder (null = auto-detect _bmad-output)")
|
|
969
970
|
}).optional()
|
|
970
971
|
});
|
|
971
972
|
var FeaturesSchema = z.object({
|
|
@@ -1597,7 +1598,8 @@ function generateAthenaConfig(answers) {
|
|
|
1597
1598
|
sprintStatus: null,
|
|
1598
1599
|
prd: null,
|
|
1599
1600
|
architecture: null,
|
|
1600
|
-
epics: null
|
|
1601
|
+
epics: null,
|
|
1602
|
+
outputFolder: null
|
|
1601
1603
|
}
|
|
1602
1604
|
},
|
|
1603
1605
|
features: featuresToFlags(features.enabledFeatures),
|
|
@@ -2756,6 +2758,19 @@ var MIGRATIONS = [
|
|
|
2756
2758
|
}
|
|
2757
2759
|
return config;
|
|
2758
2760
|
}
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
fromVersion: "0.11.0",
|
|
2764
|
+
toVersion: "0.12.0",
|
|
2765
|
+
description: "Add BMAD v6 alpha outputFolder path override",
|
|
2766
|
+
migrateAthena: (config) => {
|
|
2767
|
+
const bmad = config.bmad || {};
|
|
2768
|
+
const paths = bmad.paths || {};
|
|
2769
|
+
if (paths.outputFolder === void 0) {
|
|
2770
|
+
paths.outputFolder = null;
|
|
2771
|
+
}
|
|
2772
|
+
return { ...config, bmad: { ...bmad, paths } };
|
|
2773
|
+
}
|
|
2759
2774
|
}
|
|
2760
2775
|
];
|
|
2761
2776
|
function migrateLegacyFiles() {
|