// Name: Snippet Search Paste // Description: Search a list of text snippets and paste the selected one at the cursor. // Author: tayiorbeii // GitHub: tayiorbeii import "@johnlindquist/kit" const snippets: string[] = [ "use superpowers to implement parallel agents as applicable", // Add more snippets below as needed: // "your reusable snippet here", // "another snippet to quickly paste", ] const selected = await arg( { placeholder: "Search snippets… type to filter, press enter to paste", enter: "Paste snippet", strict: true, }, snippets ) await hide() await setSelectedText(selected)