Skip to content

Commit ecbcd1a

Browse files
napoleondclaude
andcommitted
fix(atxp): pass -y to skills add command to skip interactive prompts
The previous fix only passed -y to npx (to auto-install the skills package) but not to the skills add command itself, which has its own interactive confirmation prompts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c919848 commit ecbcd1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/atxp/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ async function main() {
503503
case undefined: {
504504
const { execSync } = await import('child_process');
505505
try {
506-
execSync('npx -y skills add https://github.com/atxp-dev/cli --skill atxp', { stdio: 'inherit' });
506+
execSync('npx -y skills add https://github.com/atxp-dev/cli --skill atxp -y', { stdio: 'inherit' });
507507
} catch {
508508
process.exit(1);
509509
}

0 commit comments

Comments
 (0)