Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by brianjohnpenner

Trigger Scripts directly from Raycast

brianjohnpenner's avatar
Brian Penner
// Name: Generate Raycast Scripts import "@johnlindquist/kit" const collect = await npm("collect.js") // get the directory to store the scripts in. Save in an environment variable const directory = await env("RAYCAST_SCRIPTS_DIRECTORY", async () => { return await selectFolder("Select a directory to store the scripts in") }) // get all the scripts from Script Kit let scripts = collect(await getScripts()) // remove preview from scripts scripts = scripts.map(script => { delete script.preview return script }) // get only kenv scripts scripts = scripts.where('kenv', '') // TODO find out which scripts should be ignored // generate a script for each one in the directory scripts.each(async script => { const scriptContents = `#!/bin/bash