GitHub
Skills harvested from GitHub repositories
14810 skills availabledialogue_graph
This skill provides a dialoguegraph module to easily build valid dialogue trees/graphs. Script Parsers: When converting ...
erlang-otp-behaviors
OTP (Open Telecom Platform) behaviors provide reusable patterns for common process types in Erlang systems. These abstra...
hierarchical-taxonomy-clustering
Create a unified multi-level taxonomy from hierarchical category paths by clustering similar paths and automatically gen...
ffmpeg-format-conversion
Convert media files between different formats and containers. Convert video containers (MP4, MKV, AVI, etc.) Convert aud...
segment-combiner
Combines multiple segment JSON files into a single unified segments file for video processing. Merging segments from mul...
image_editing
This guide covers essential image processing operations using ImageMagick, a collection of command-line tools that can b...
meteorology-driver-classification
When analyzing what drives changes in an environmental system, it is useful to group individual variables into broader c...
search-driving-distance
Look up distance/duration between an origin and destination. pip install pandas numpy requests from searchdrivingdistanc...
ffmpeg-video-filters
Apply video filters for scaling, cropping, watermarks, speed changes, and visual effects. Resize videos Crop video frame...
lomb-scargle-periodogram
The Lomb-Scargle periodogram is the standard tool for finding periods in unevenly sampled astronomical time series data....
python-scala-functional
def applytwice(f, x): return f(f(x)) def makemultiplier(n): return lambda x: x n double = makemultiplier(2) result = ap...
transit-least-squares
Transit Least Squares is a specialized algorithm optimized for detecting exoplanet transits in light curves. It's more s...
python-scala-libraries
import json data = {"name": "Alice", "age": 30} jsonstr = json.dumps(data) parsed = json.loads(jsonstr) from dataclasses...
pause-detector
Detects pauses and low-energy segments using local dynamic thresholds on pre-computed energy data. Unlike global thresho...
senior-java
World-class Java and Spring Boot development skill for enterprise applications, microservices, and cloud-native systems....
audiobook
Create audiobooks from web articles, essays, or text files. This skill covers the full pipeline: content fetching, text ...
yaml-config
Always use safeload to prevent code execution vulnerabilities: import yaml with open('config.yaml', 'r') as f: config = ...
trivy-offline-vulnerability-scanning
This skill provides guidance on using Trivy, an open-source security scanner, to discover vulnerabilities in software de...
sympy
SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than...
text-parser
Parse structured text files to extract data for filling PDFs. def parseinput(text): """Parse key-value pairs from text."...
obj-exporter
OBJ is a text-based 3D geometry format: v x y z # Vertex position vn x y z # Vertex normal f v1 v2 v3 #...
video-processor
Processes videos by removing specified segments and concatenating the remaining parts. Handles multiple removal segments...
openai-tts
Generate high-quality spoken audio from text using OpenAI's TTS API. The API key is available as environment variable: O...
python-scala-collections
empty = [] nums = [1, 2, 3] repeated = [0] 5 fromrange = list(range(1, 11)) // Scala val empty = List.empty[Int] // or...