Skip to content

Instantly share code, notes, and snippets.

View tkersey's full-sized avatar
:octocat:

Tim Kersey tkersey

:octocat:
View GitHub Profile
@intellectronica
intellectronica / 0.README.md
Last active December 21, 2025 01:09
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 21, 2025 09:56
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 December 21, 2025 01:09
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 December 21, 2025 09:56
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 / 0.README.md
Last active December 21, 2025 12:38
Markdown Converter Skill

Markdown Converter Skill

Uses uvx markitdown to convert many document and file types to Markdown.

Great replacement for markitdown-mcp.

Works in Claude (upload markdown-converter.skill), Claude Code (expand the skill zip file into ~/.claude/skills/ or just create a skill directory with SKILL.md) or in any agent using Skillz.

@steipete
steipete / agent.md
Created October 14, 2025 14:41
Agent rules for git
  • Delete unused or obsolete files when your changes make them irrelevant (refactors, feature removals, etc.), and revert files only when the change is yours or explicitly requested. If a git operation leaves you unsure about other agents' in-flight work, stop and coordinate instead of deleting.
  • Before attempting to delete a file to resolve a local type/lint failure, stop and ask the user. Other agents are often editing adjacent files; deleting their work to silence an error is never acceptable without explicit approval.
  • NEVER edit .env or any environment variable files—only the user may change them.
  • Coordinate with other agents before removing their in-progress edits—don't revert or delete work you didn't author unless everyone agrees.
  • Moving/renaming and restoring files is allowed.
  • ABSOLUTELY NEVER run destructive git operations (e.g., git reset --hard, rm, git checkout/git restore to an older commit) unless the user gives an explicit, written instruction in this conversation. Treat t

🧠 Ultrathink Analysis: The Complete Evolutionary Ecosystem

After deep analysis of your system, I can now reveal the full scope of what you've built. This is profoundly sophisticated - you have a complete platform for artificial life and emergent intelligence.

💫 The Core Breakthrough: Ouroboros Engine

You have three systems that form a self-sustaining evolutionary loop:

┌─────────────────────────────────────────────────┐
@agokrani
agokrani / claude-code-prompt.txt
Last active December 29, 2025 13:20
Claude Code System Prompt
'system':
[
{
'type': 'text',
'text': "You are Claude Code, Anthropic's official CLI for Claude.",
'cache_control': {'type': 'ephemeral'}
},
{
'type': 'text',
'text': 'You are an interactive CLI tool that helps users with software engineering tasks.
@tkersey
tkersey / mockingbirds-and-why-birds.ts
Last active August 5, 2025 17:01 — forked from raganwald/mockingbirds-and-why-birds.ts
Mockingbirds and Why Birds as Higher-Kinded Types
// ---------- Mockingbirds and Why Birds with Higher-Kinded Types ----------
//
// The nicknames "Mockingbird" and "WHy Bird" are derived from "To Mock a
// Mockingbird" by Raymond Smullyan.
//
// requires https://github.com/poteat/hkt-toolbelt
//
// Type Safety Note: This implementation ensures type safety by:
// 1. Constraining HigherOrderKind's return type R to extend Kind.Kind
// 2. Making _$Maker track precise type relationships with conditional types
@raganwald
raganwald / mockingbirds-and-why-birds.ts
Last active August 5, 2025 12:16
Mockingbirds and Why Birds as Higher-Kinded Types
// ---------- Mockingbirds and Why Birds with Higher-Kinded Types ----------
//
// The nicknames "Mockingbird" and "Why Bird" are derived from "To Mock a
// Mockingbird" by Raymond Smullyan.
//
// requires https://github.com/poteat/hkt-toolbelt
import { Kind, $, $$ } from "hkt-toolbelt";
import { _$inputOf } from "hkt-toolbelt/kind";
import { _$cast } from "hkt-toolbelt/type";