genesis-compiler 1.2.8 → 1.2.9
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/package.json
CHANGED
package/src/index/prompt.js
CHANGED
|
@@ -368,7 +368,7 @@ export async function generateProjectPrompt({
|
|
|
368
368
|
const blueprint = await readBlueprint(root, { required: true, requireDescription: true });
|
|
369
369
|
stack ||= await readStack(root, { stackPackages });
|
|
370
370
|
const [index, projectSkills] = await Promise.all([
|
|
371
|
-
buildProjectIndex({ projectRoot: root, write: false }),
|
|
371
|
+
buildProjectIndex({ projectRoot: root, stackPackages, write: false }),
|
|
372
372
|
inspectProjectSkills({ projectRoot: root, stack }),
|
|
373
373
|
]);
|
|
374
374
|
const missing = missingStackResources({
|