name: loop description: > Run a prompt or slash command on a recurring interval (e.g. /loop 5m /foo, defaults to 10m). Use when the user wants to set up a recurring task, poll for status, or run something repeatedly on an interval. Do NOT invoke for one-off tasks. argument-hint: "[interval] " source-path: cli.js (line 8047, function Agz / qgz) source-package: "@anthropic-ai/claude-code@2.1.71"
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
| Always respond in pirate english, start each message with "Ahoy!" |
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
| #!/usr/bin/env python3 | |
| """ | |
| Moom Configuration Generator | |
| This script programmatically generates Moom window management shortcuts. | |
| It creates a grid-based system for positioning windows across multiple displays. | |
| SCREEN LAYOUT: | |
| ============== | |
| ┌──────────────────────┐┏━━━━━━━━━┓ |
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
| #!/usr/bin/env python3 | |
| # /// script | |
| # dependencies = [] | |
| # /// | |
| """ | |
| Fetch an agent definition from a URL and run claude with it. | |
| """ | |
| import sys | |
| import json |
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
| // ==UserScript== | |
| // @name Reddit Refined | |
| // @version 1.1.0 | |
| // @description Various refinements for Reddit browsing experience | |
| // @match https://www.reddit.com/* | |
| // @match https://*.reddit.com/* | |
| // @run-at document-start | |
| // @grant none | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
| // @license MIT |
Pinkbike publishes photoepics. URLs look like https://www.pinkbike.com/news/photo-epic-final-practice-at-red-bull-rampage-2025.html
- there's "/news/"
- there's a "photo-epic"
These article have mainly large photos and their captions.
Let's make a userscript that allows viewing these photoepics in full screen.
HTML structure:
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
| #!/usr/bin/env python3 | |
| # /// script | |
| # dependencies = [] | |
| # /// | |
| import sqlite3 | |
| import json | |
| import os | |
| from pathlib import Path | |
| def get_mcp_disabled_tools(): |
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
| // Name: Finicky Switch Default Browser | |
| // Description: Switches the default browser in Finicky config | |
| // Author: Strajk | |
| import '@johnlindquist/kit' | |
| import fs from 'fs' | |
| let finickyPath = home('.finicky.js') | |
| // Check if Finicky config exists |
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
| // Name: Flashcards | |
| // Description: Space-repeat images, managed just by filesystem | |
| // Shortcut: shift+ctrl+option+cmd+o | |
| import '@johnlindquist/kit' | |
| const flashcardsDir = kenvPath('db', 'flashcards') | |
| await ensureDir(flashcardsDir) | |
| const today = new Date() |
NewerOlder