This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Smartify your words! | |
Tired of feeling dumb? Winter got you in a funk? | |
Can you just not seem to get the words out right? | |
Well, let's Smartify your words! | |
Highlight some text and press `cmd+shift+enter` to send it through ChatGPT | |
to replace the text with a more eloquent version. Mileage may vary. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Google Search | |
Example of leveraging Google's Custom Search Engine API to search the web | |
*/ | |
// Name: Google Search | |
// Description: Leverage Google's Custom Search Engine API to search the web | |
// Author: Josh Mabry | |
// Twitter: @AI_Citizen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Pardon the mess this was put together in half a day for the [lablab.ai](https://lablab.ai/event/autonomous-gpt-agents-hackathon) hackathon. | |
More updates to come | |
# AC AGI | |
An autonomous general intelligence that accomplishes a task for you. | |
Uses human in the loop to provide feedback to the agent. | |
How to use: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Explain Plz | |
Highlight some text and have it explained by AI | |
Works for any highlighted text or code | |
*/ | |
// Name: Explain Plz | |
// Description: Get an explanation for any highlighted text | |
// Author: Josh Mabry | |
// Twitter: @AI_Citizen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Generate a response to a prompt in any text field | |
This script utilizes ChatGPT to generate a response for the selected text. | |
The response will then replace the original text, making it useful for various writing tasks such as blog posts, code, and emails. | |
Highlight some text and press `cmd+shift+p` to send it through ChatGPT | |
to replace the text response. Your mileage may vary. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Prompt Anything | |
Highlight some text and run this script to prompt against it. | |
Useful for summarizing text, generating a title, or any other task you can think of. | |
## Usage | |
- Highlight the text you want to prompt against | |
- Run the script via shortcut or command palette | |
- Input your desired prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Prompt Anything | |
Highlight some text and run this script to prompt against it. | |
Useful for summarizing text, generating a title, or any other task you can think of. | |
## Usage | |
- Highlight the text you want to prompt against | |
- Run the script via shortcut or command palette | |
- Input your desired prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# Prompt Anything | |
Highlight some text and run this script to prompt against it. | |
Useful for summarizing text, generating a title, or any other task you can think of. | |
## Usage | |
- Highlight the text you want to prompt against | |
- Run the script via shortcut or command palette | |
- Input your desired prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Prompt Manager | |
// Description: Manage your prompt templates | |
// Author: Josh Mabry | |
// Twitter: @AI_Citizen | |
//################## | |
// ScriptKit Imports | |
//################## | |
import "@johnlindquist/kit"; | |
// import { editPrompt } from "./utils/prompt-crud.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const renderTags = async (dbName) => { | |
const tagsDb = await db(dbName); | |
await tagsDb.read(); | |
const allTags = [...tagsDb.data.tags]; | |
const selectedTags = {}; | |
let selecting = true; | |
while (selecting) { | |
const availableTags = allTags.map((tag) => ({ | |
name: `${tag} ${selectedTags[tag] ? " ✓" : " "}`, | |
value: tag, |
OlderNewer