Skip to content

Instantly share code, notes, and snippets.

@vossisboss
vossisboss / build-wagtail-test-site.md
Created March 26, 2026 20:54
An agent skill for creating a test version of the Wagtail bakery demo for testing features and packages
name build-wagtail-test-site
description Plan and build a Wagtail test project for testing
license MIT

Build Wagtail Test Site

Overview

@ptmcg
ptmcg / pyconus2026_search.py
Last active May 14, 2026 23:42
Full text search of PyConUS talks, using littletable with CSV
import sys
from datetime import datetime
import re
try:
import littletable as lt
import rich
from rich.console import Console
from rich.table import Table
except ImportError:
print("littletable and rich modules required")
@antirez
antirez / codex_skill.md
Last active July 17, 2026 09:17
CLAUDE_CODEX_SKILL.md
name codex
description Use OpenAI Codex CLI for complex debugging, code analysis, or when stuck on difficult problems. Invokes Codex with a file-based question/answer pattern.
disable-model-invocation true

Using Codex for Complex Debugging

When you encounter a difficult problem that would benefit from a second perspective or deep analysis, use Codex via the file-based pattern.

@andreagrandi
andreagrandi / codex-advisor.md
Created January 20, 2026 22:03
Codex advisor agent for Claude Code (or any similar tool)
name codex-advisor
description Get a second opinion from Codex AI. Use for architecture reviews, code analysis, alternative approaches, or bouncing ideas off a peer coding agent with different strengths.
tools Bash, Read, Grep, Glob
model sonnet

Codex Advisor

You are a specialized sub-agent that interfaces with the Codex CLI to provide second opinions, alternative perspectives, and peer review from a different AI coding assistant.

@kieranklaassen
kieranklaassen / SKILL.md
Last active April 15, 2026 09:07
TRMNL e-ink display image generator skill for Claude Code
name trmnl-image-generator
description Generates TRMNL-compatible e-ink display images. Use when creating images for TRMNL devices, converting images to 1-bit format, or uploading content to e-ink displays. Triggers on "TRMNL", "e-ink", "e-paper", "terminal display".
allowed-tools
Bash
Write
Read
Edit
@marckohlbrugge
marckohlbrugge / x.sh
Created January 3, 2026 08:43
Requires jq. Simple command to work around X blocking bots. Returns LLM-friendly summary of a user account or post. Put in bin/ and optionally instruct Claude or your favorite LLM to use it when trying to fetch X links.
#!/bin/bash
# Fetch tweet or user profile in an LLM-friendly format using fxtwitter API
set -e
if [ -z "$1" ]; then
echo "Usage: x <twitter-url-or-username>"
echo "Examples:"
echo " x https://x.com/marckohlbrugge/status/2005972157445333371"
echo " x https://x.com/marckohlbrugge"
@intellectronica
intellectronica / 0.README.md
Last active December 15, 2025 19:23
Lorem Ipsum Generator SKILL

Lorem Ipsum Generator SKILL

Get lorem-ipsum.zip

Use this skill to generate lorem ipsum placeholder text for mockups, wireframes, and content drafts. Supports various structures including plain paragraphs, headings with sections, bullet and numbered lists, and realistic mixed documents. Output in plain text, Markdown, or HTML.

Works with Claude (by extracting it to ~/.claude/skills/) or uploading to the Claude web app, or with any other agent using Skillz.

Usage

@intellectronica
intellectronica / 0.README.md
Last active January 6, 2026 06:12
Upstash Redis Key-Value Store SKILL

Upstash Redis Key-Value Store SKILL

Get upstash-redis-kv.zip

Use this skill to read from and write to Upstash's Redis-compatible key-value store via REST API. Supports the full range of Redis data structures: strings, hashes, lists, sets, and sorted sets—ideal for caching, counters, leaderboards, queues, and persistent storage.

Works with Claude (by extracting it to ~/.claude/skills/) or with any other agent using Skillz.

Setup

@intellectronica
intellectronica / 0.README.md
Last active December 3, 2025 04:40
Invoice Generator SKILL (Example)

Invoice Generator SKILL (Example)

Get invoice.zip

Note: This is an example skill for educational purposes. It demonstrates how to create a skill that generates PDF documents from templates. You should use it to learn how to build your own invoice or document generation skills, not as a production invoicing solution.

Use this skill to generate professional PDF invoices by collecting invoice details interactively and processing them through a Word document template. It handles seller/buyer information, line items, VAT calculations, and payment terms.

Works with Claude Code locally (extract to ~/.claude/skills/), with Skillz for any agent, or on the Claude web app.

@intellectronica
intellectronica / 0.README.md
Last active July 1, 2026 09:00
SKILL: Fetch YouTube Transcript

YouTube Transcript SKILL

Get youtube-transcript.zip

Use this skill to fetch the transcript of a YouTube video, with or without timestamps.

Use this skill with Claude (by extracting it to .claude/skills/) or with any other agent using Skillz.

Note: This skill is unlikely to run successfully on the Claude web app, since access to YouTube is blocked. Use it with Claude Code or other local agents.