pigmalion-setup 0.1.9 → 0.2.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.
Files changed (2) hide show
  1. package/bin/cli.js +5 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -166,7 +166,11 @@ async function runCodex(codexCmd) {
166
166
  const ext = path.extname(codexCmd).toLowerCase();
167
167
  const useShell = process.platform === "win32" && (ext === ".cmd" || ext === ".ps1");
168
168
 
169
- const child = spawn(codexCmd, [], {
169
+ const prompt = [
170
+ `"Lee y sigue estrictamente SETUP.md en: ${setupPath} y luego termina."`
171
+ ].join("\n");
172
+
173
+ const child = spawn(codexCmd, [prompt], {
170
174
  stdio: 'inherit',
171
175
  shell: useShell,
172
176
  cwd: TARGET_DIR
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pigmalion-setup",
3
- "version": "0.1.9",
3
+ "version": "0.2.2",
4
4
  "author": "msoler75",
5
5
  "description": "NPX utility to initialize projects with Pigmalion Manager setup flow.",
6
6
  "type": "module",