UNPKG

@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

31 lines 1.55 kB
import React from 'react'; /** * The /compact command compresses message history to reduce context usage. * * Note: The actual command logic is handled in app-util.ts handleCompactCommand() * because it requires access to app state (messages, setMessages, provider, model) * that isn't available through the standard command handler interface. * * This command definition exists to: * 1. Register the command in the command registry for /help and autocomplete * 2. Provide the command description to users * * Available flags: * --aggressive - Aggressive compression mode (removes more content) * --conservative - Conservative compression mode (preserves more content) * --default - Default balanced compression mode * --preview - Show compression preview without applying * --restore - Restore messages from pre-compression backup * --auto-on - Enable auto-compact for this session * --auto-off - Disable auto-compact for this session * --threshold <n> - Set auto-compact threshold (50-95%) for this session */ export const compactCommand = { name: 'compact', description: 'Compress message history to reduce context usage (use --aggressive, --conservative, --preview, --restore, --auto-on, --auto-off, --threshold <n>)', handler: async (_args, _messages, _metadata) => { // Handler returns empty fragment - actual logic in app-util.ts handleCompactCommand() return Promise.resolve(React.createElement(React.Fragment)); }, }; //# sourceMappingURL=compact.js.map