From 2c42715ccefa4e87d764d85f7f825e2d77e599f6 Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Mon, 2 Jun 2025 17:09:58 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/cli/src/commands/debug.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/cli/src/commands/debug.ts b/packages/cli/src/commands/debug.ts index 5b7aced6..a449da34 100644 --- a/packages/cli/src/commands/debug.ts +++ b/packages/cli/src/commands/debug.ts @@ -3,7 +3,6 @@ import { Command } from 'commander' import { oraPromise } from 'ora' import type { Context } from '../types' -import { AuthStore } from '../lib/auth-store' export function registerDebugCommand({ program, logger }: Context) { const command = new Command('debug') @@ -13,8 +12,6 @@ export function registerDebugCommand({ program, logger }: Context) { 'The directory to load the Agentic project config from (defaults to cwd). This directory must contain an "agentic.config.{ts,js,json}" project file.' ) .action(async (opts) => { - AuthStore.requireAuth() - // Load the Agentic project config, parse, and validate it. This will also // validate any origin adapter config such as OpenAPI or MCP specs and // embed them if they point to local files or URLs. Note that the server