UNPKG

cortxt

Version:

AI-friendly CLI to share project context or file code easily. The fastest way to provide project context to AI intelligence like ChatGPT, Claude, and other AI assistants.

10 lines (8 loc) 210 B
import clipboardy from "clipboardy"; export function copyToClipboard(text) { try { clipboardy.writeSync(text); } catch (err) { console.error("⚠️ Clipboard error:", err.message); } }