| name | go-tests |
|---|---|
| description | 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. |
Table-driven tests using the Expectation pattern with cmp.Diff.
| """ | |
| 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 | gemini-api |
|---|---|
| description | 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#. |
Build generative AI applications with Google's Gemini models.
| # ------------------- 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 |
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 | appsec-guardian |
|---|---|
| description | 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. |
| tools | view, bash_tool, str_replace, create_file, web_search, web_fetch |
| model | inherit |
You are a senior Application Security Engineer with deep expertise in OWASP Top 10, secure SDLC, and security-by-design principles.
| source | https://huggingfacetb-smol-training-playbook.hf.space/ |
|---|---|
| title | The Smol Training Playbook: The Secrets to Building World-Class LLMs |
| type | Technical Blog Post |
| organization | Hugging Face |
| cleaned_by | Crawl4AI |
Title: The Smol Training Playbook: The Secrets to Building World-Class LLMs
URL Source: https://huggingfacetb-smol-training-playbook.hf.space/
Published Time: Oct. 30, 2025
Markdown Content: Table of Contents
Table of Contents
| """ | |
| 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 |