newo
Version:
NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, r
14 lines • 624 B
TypeScript
/**
* Sandbox Chat Command Handler
* Supports both single-command and interactive modes
*/
import type { MultiCustomerConfig, CliArgs } from '../../types.js';
/**
* Handle sandbox command
* Usage:
* npx newo sandbox "Hello" --customer <idn> # Single message mode
* npx newo sandbox --actor <actor_id> "Follow up" # Continue existing chat
* npx newo sandbox --interactive # Interactive mode (TBD)
*/
export declare function handleSandboxCommand(customerConfig: MultiCustomerConfig, args: CliArgs, verbose: boolean): Promise<void>;
//# sourceMappingURL=sandbox.d.ts.map