#!/usr/bin/env node /** * `napplet-skills` — install the napplet agent skills into whatever location * your coding agent reads (Claude Code, Codex, Cursor, Windsurf, AGENTS.md, * Gemini, Copilot, …), or print them to stdout. * * @packageDocumentation */ /** * Run the skills CLI without terminating the importing process. * * @param argv Command-line arguments, excluding the executable name. * @returns Numeric process exit status. */ declare function runCli(argv: string[]): number; export { runCli };