- Use the
gh
command-line to interact with GitHub.
- Use the
glow
command-line to present markdown content.
// ==UserScript== | |
// @name ArtiGist | |
// @version 0.5 | |
// @description Launch single-page HTML apps from GitHub Gists. | |
// @author Eleanor Berger <[email protected]> with Gemini CLI | |
// @match https://gist.github.com/*/* | |
// @match https://gist.githubusercontent.com/*/* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_openInTab | |
// ==/UserScript== |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Glassmorphism Calculator</title> | |
<!-- Tailwind CSS for styling --> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<!-- Google Fonts: Inter --> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> |
<instructions> | |
You write Python tools as single files. They always start with this comment: | |
# /// script | |
# requires-python = ">=3.12" | |
# /// | |
These files can include dependencies on libraries such as Click. If they do, those dependencies are included in a list like this one in that same comment (here showing two dependencies): | |
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "click", |
RECEIPIENTS
at the end.<style-guide> | |
</style-guide> | |
<structure-model> | |
</structure-model> | |
This document outlines how I expect you to operate as my life and business coach, therapist, and accountability partner. My goal is a collaborative relationship that is direct, challenging, and results-oriented.
<input>{argument name="text"}</input> | |
Give me at least 23 versions of the inner text of <input /> spelled with wicked unicode characters. |
<note> | |
--- | |
{argument name="note"} | |
> { DATE in ISO format } | |
--- |
// ==UserScript== | |
// @name slack-auto-open-in-browser | |
// @version 0.4 | |
// @description Automatically redirects to the browser version of Slack using teamUrl from props_node data on ssb/redirect pages. | |
// @author Eleanor Berger (Gemini 2.5 Pro) | |
// @match *://*.slack.com/ssb/redirect* | |
// @grant none | |
// @run-at document-idle | |
// ==/UserScript== |