From b9673317449012a432200d591b6ece0372c4a836 Mon Sep 17 00:00:00 2001 From: xpander-ai-coding-agent Date: Wed, 5 Nov 2025 17:20:13 -0800 Subject: [PATCH] fix: add --skip-local-tests flag to agent deploy command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous PR #112 added the flag to the top-level deploy command but missed the agent subcommand path. This adds the missing flag to `xpander agent deploy`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/commands/agent/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/commands/agent/index.ts b/src/commands/agent/index.ts index 2898bde..54427b7 100644 --- a/src/commands/agent/index.ts +++ b/src/commands/agent/index.ts @@ -65,6 +65,7 @@ export function agent(program: Command): void { .description('Deploy agent') .option('--profile ', 'Profile to use') .option('--confirm', 'Skip confirmation prompts') + .option('--skip-local-tests', 'Skip local Docker container tests') .action(async (agentId, options) => { const { createClient } = await import('../../utils/client'); const { getAgentIdFromEnvOrSelection } = await import( @@ -77,7 +78,12 @@ export function agent(program: Command): void { agentId, ); if (!resolvedAgentId) return; - await deployAgent(client, resolvedAgentId, options.confirm); + await deployAgent( + client, + resolvedAgentId, + options.confirm, + options.skipLocalTests, + ); }); agentCmd