@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
15 lines • 653 B
TypeScript
import type { Command } from '../types/commands.js';
/**
* The /context-max command sets the maximum context length for the current session.
*
* Note: The actual command logic is handled in app-util.ts handleContextMaxCommand()
* because it requires access to app state that isn't available through the standard
* command handler interface.
*
* Usage:
* /context-max <number> - Set context limit (supports k/K suffix, e.g. 128k)
* /context-max - Show current effective context limit
* /context-max --reset - Clear session override
*/
export declare const contextMaxCommand: Command;
//# sourceMappingURL=context-max.d.ts.map