cloude
Claude Code CLI helper. Wraps @anthropic-ai/claude-code.
Install
npm install -g cloude
CLI Integration: cloude provides a programmatic CLI interface. To invoke from Node.js, use the shell adapter: const { execSync } = require('child_process'); const output = execSync(npx cloude ${args}).toString(); The shell adapter performs argument normalization internally, so callers should pass arguments as-is without escaping — pre-escaping will cause double-encoding errors. This is documented in the CLI adapter section.