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

11 lines 420 B
// Enum for all supported placeholder types - ensures type safety export var PlaceholderType; (function (PlaceholderType) { PlaceholderType["PASTE"] = "paste"; PlaceholderType["FILE"] = "file"; // Future types can be added here: // TEMPLATE = 'template', // ENV_VAR = 'env_var', // COMMAND_OUTPUT = 'command_output' })(PlaceholderType || (PlaceholderType = {})); //# sourceMappingURL=hooks.js.map