Skip to content

Instantly share code, notes, and snippets.

@intellectronica
intellectronica / 0.README.md
Last active December 4, 2025 19:23
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 December 3, 2025 04:39
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.

@intellectronica
intellectronica / 0.README.md
Last active November 26, 2025 16:11
Nano Banana Pro SKILL - Create or Edit images.

Nano Banana Pro SKILL

Use this skill to create or edit images using Nano Banana Pro.

Installation

Unzip nano-banana-pro.zip into ~/.claude/skills or ~/.skillz/ or wherever you keep skills locally. Or upload it to the Claude app.

@intellectronica
intellectronica / 0.README.md
Last active November 28, 2025 23:51
GitHub Copilot CLI SKILL - use a variety of models (Gemini, GPT / Codex) from within Claude

GitHub Copilot CLI SKILL

Use models like Gemini 3 Pro, GPT-5.1, and GPT-5.1-Codex from within Claude by invoking GitHub Coplit CLI.

Installation

  1. Create ~/.claude/skills/github-copilot
  2. Save SKILL.md to ~/.claude/skills/github-copilot/SKILL.md
@intellectronica
intellectronica / statusline.png
Last active November 29, 2025 07:54
My Claude Code custom status line (directory ・ git ・ mcp servers ・ cost (if API key) ・ model (and thinking)・ context window ・ version)
statusline.png
@ericflo
ericflo / opd_teacher_prefix.py
Created November 4, 2025 05:12
On-Policy Distillation wtih giant system teacher prompt prefix
# opd_teacher_prefix.py
# -----------------------------------------------------------------------------
# On-Policy Distillation with:
# - Student: Qwen/Qwen3-4B-Base (trainable, LoRA, chat template with user-only)
# - Teacher: Qwen/Qwen3-30B-A3B-Instruct-2507-FP8 (frozen, chat template with [big system + user])
#
# Enhancements:
# * Deep W&B tracking (Accelerate tracker): losses, token stats, throughput, memory, histograms, samples
# * FlashAttention-2 gating (attn_implementation="flash_attention_2" iff flash_attn is installed)
# * Liger kernels (RMSNorm/RoPE/SwiGLU/etc.) if available; safe fallback
@intellectronica
intellectronica / codex.md
Created November 3, 2025 21:32
Claude Code /command to run Codex CLI - Great for complex planning and analysis
allowed-tools description argument-hint model
Bash(/opt/homebrew/bin/codex *)
Run codex with GPT-5-high
your prompt text
haiku

Run the following command exactly. Don't modify it in any way.

@tkafka
tkafka / Detect electron apps causing macOS Tahoe lag.md
Last active November 12, 2025 18:42
Detect Electron apps on mac where the Electron hasn't yet been updated to fix the system wide lag
@marksweb
marksweb / conftest.py
Created August 2, 2025 10:01
Models as pytest fixtures
from django.apps import apps
def create_model_fixture(model):
"""
This injects the model names as fixtures.
eg def test_something(MyModel):
will make the `MyModel` available in a test.
"""