This file contains hidden or 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
# Inbox AI | |
> Inbox AI is a MacOS application that allows users to automate tasks on their mac using AI. It allows for the creation of custom voice interfaces, can automatically handle incoming mail, and process images from screenshots, or by watching directories. | |
Important notes: | |
- Users will likely have a specific goal or task to automate which often requires an integration surface. Inbox AI supports APIs, Terminal Commands, and x-callback URLs. | |
- To assist, you can generate Inbox AI compatible actions in the JSON format described in the docs. When this file is downloaded and has the .inboxai extension, users can double-click install them. | |
- When possible generate a **downloadable file** for the user after assisting them in the right format. | |
- Do not show JSON to the user, this is simply an intermediate format. Instead explain WHAT you are doing. The user will have UI fields they can use to adjust the action. |
This file contains hidden or 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
[ | |
{ | |
"id" : "222273F7-7F1D-4912-9BAD-8110B26D9AD1", | |
"icon" : "folder", | |
"type" : "folder", | |
"instructions" : "", | |
"variables" : [ | |
], | |
"identifier" : "reflect", |
This file contains hidden or 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
/* Medium-inspired CSS for Tana */ | |
/* Font settings */ | |
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&family=Source+Sans+Pro:wght@400;600&display=swap'); | |
body { | |
font-family: 'Source Serif Pro', Georgia, serif; | |
line-height: 1.6; | |
color: rgba(41, 41, 41, 1); | |
background-color: #fff; |
This file contains hidden or 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
/* Retro Gaming Console CSS for Tana System */ | |
/* Import pixel fonts */ | |
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); | |
/* Base styles and color palette */ | |
:root { | |
--primary: #ff0066; | |
--secondary: #00ccff; | |
--accent: #ffcc00; | |
--dark: #222034; |
This file contains hidden or 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
// Add frame: false | |
const mainWindow = new electron_1.BrowserWindow({ | |
//.... | |
frame: false, | |
}); | |
// ADD CSS INJECTION FROM WEB URL VIA @READY | |
mainWindow.webContents.on('did-finish-load', async () => { | |
try { | |
const response = await fetch('https://gistcdn.githack.com/foeken/cd809018e6caf846d174f656bb30109c/raw/863bf17d56ad2081f432f2109ecb73bb99743b71/tana.css'); |
OlderNewer