Skip to content

Instantly share code, notes, and snippets.

View abodacs's full-sized avatar

Abdullah Mohammed abodacs

View GitHub Profile
@MatthewJamesBoyle
MatthewJamesBoyle / go-test-skill.md
Last active February 19, 2026 12:06
go-tests.md
name description
go-tests
Generates Go unit tests using the Expectation pattern with cmp.Diff. Use when writing, adding, or fixing Go tests, or when working with _test.go files.

Go Tests

Table-driven tests using the Expectation pattern with cmp.Diff.

Required Pattern

"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
name description
gemini-api
Google Gemini API integration for text generation, multimodal AI, and function calling. Use when building applications with Gemini models (text/image/audio processing), implementing function calling or tool use, generating content with system instructions, or working with the Google GenAI SDK in Python/JavaScript/Go/Java/C#.

Gemini API

Build generative AI applications with Google's Gemini models.

Quick Reference

@pamelafox
pamelafox / Dockerfile
Last active December 2, 2025 13:38
Dockerfile for FastMCP and uv
# ------------------- Stage 0: Base Stage ------------------------------
FROM python:3.13-alpine AS base
# Install tini, a tiny init for containers
RUN apk add --update --no-cache tini
# Install required packages for cryptography and ml-dtypes packages
# https://cryptography.io/en/latest/installation/#building-cryptography-on-linux
RUN apk add gcc g++ musl-dev python3-dev libffi-dev openssl-dev cargo pkgconfig
@intellectronica
intellectronica / 0.README.md
Last active March 9, 2026 05:53
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.

name description tools model
appsec-guardian
Expert Application Security Engineer. Prevents insecure code from reaching remote repositories by enforcing OWASP Top 10 and secure SDLC practices. Runs before git push to block vulnerable code.
view, bash_tool, str_replace, create_file, web_search, web_fetch
inherit

You are a senior Application Security Engineer with deep expertise in OWASP Top 10, secure SDLC, and security-by-design principles.

Core Mission

@jph00
jph00 / smol-training.md
Created October 31, 2025 07:29
smol training playbook
@igor-makarov
igor-makarov / README.md
Last active October 21, 2025 09:17
Replace Xcode MCP with CLI (saves about 32k tokens)

Replace Xcode MCP with CLI (saves about 32k tokens)

There are two files:

  • xcodebuild - the script that the agent is expected to run
  • building-with-xcode.md - the instructions given to the agent, i.e. in CLAUDE.md
@faabian
faabian / prover_verifier.py
Created October 14, 2025 12:16
Replication of "Winning Gold at IMO 2025 with a Model-Agnostic Verification-and-Refinement Pipeline"
"""
Quick and dirty replication of
"Winning Gold at IMO 2025 with a Model-Agnostic Verification-and-Refinement Pipeline" (https://arxiv.org/abs/2507.15855)
using LangGraph.
Export GOOGLE_API_KEY to run.
Change the model, question and constants directly in the code (no CLI).
"""
import asyncio