EtaYang10th/spark-skills

Evidence Over Plans: Online Trajectory Verification for Skill Distillation

111Stars on the repository
49Mods indexed here, across every type
2mo agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

EtaYang10th/spark-skills

Skill Claude CodeCodex

Parse a binary STL whose 2-byte triangle attribute stores Material ID, isolate the largest connected component, compute its enclosed volume, map material ID to density from a markdown table, and write a JSON mass report.

not rated 111 2mo ago A 50 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers implementing a complete Adaptive Cruise Control system: a PID controller with anti-windup, a multi-mode ACC state machine (cruise / follow / emergency), a kinematic vehicle simulation driven by real sensor data, PID gain tuning, and report generation. The pattern applies to any task that asks you to…

not rated 111 2mo ago A 0 tokens

citation-check

03

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers the end-to-end process of identifying fake or hallucinated academic citations in a BibTeX file. The task pattern involves reading a .bib file, analyzing each entry for signs of fabrication, and producing a JSON report of fake citation titles.

not rated 111 2mo ago A 0 tokens

court-form-filling

04

EtaYang10th/spark-skills

Skill Claude CodeCodex

The California SC-100 (Plaintiff's Claim and ORDER to Go to Small Claims Court) is an XFA-based PDF form, not a standard AcroForm. This distinction is critical — most PDF form-filling libraries (fillpdf, pdfrw, PyPDF2's simple field writer) silently fail or corrupt XFA forms. The correct approach is to extract the XFA…

not rated 111 2mo ago A 0 tokens

dialogue-parser

05

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers parsing branching dialogue scripts (RPG/game-style) from a plain-text format into a structured JSON graph and a Graphviz DOT visualization. The input format uses bracketed section headers, speaker lines with arrow transitions, and numbered choice lists. The output is a validated directed graph with…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers the end-to-end pipeline for seismic phase association: loading raw waveform data (MiniSEED) and station metadata, picking P and S wave arrivals with deep learning, associating those picks into discrete earthquake events, and writing a catalog CSV. The target metric is typically F1 score against a…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers the end-to-end workflow for computing business-cycle correlations between macroeconomic time series: extracting data from government Excel files (ERP tables, FRED CPI), deflating nominal series to real values, applying the Hodrick-Prescott filter, and computing Pearson correlation on the cyclical…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

AC Optimal Power Flow (ACOPF) finds the least-cost generator dispatch that satisfies the full nonlinear AC power balance equations, voltage limits, generator limits, and branch thermal limits. This skill covers the complete pipeline: parsing MATPOWER-format JSON data, formulating the NLP in polar coordinates, solving…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

Solve day-ahead energy market what-if studies on MATPOWER-style network JSON using DC-OPF with spinning reserve co-optimization, compare base vs counterfactual transmission scenarios, and write a validator-friendly report.json.

not rated 111 2mo ago A 54 tokens

exceltable-in-ppt

10

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers the end-to-end workflow for reading a PPTX file that contains an embedded Excel table (typically a currency exchange rate matrix or similar data grid), extracting an updated value from a text box on the slide, patching the embedded Excel workbook with the new value while preserving all formulas, and…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

TESS (Transiting Exoplanet Survey Satellite) lightcurves often contain strong stellar variability (starspot rotational modulation) that masks shallow exoplanet transit signals. The core challenge is separating the stellar signal from the planetary signal so that a Box Least Squares (BLS) periodogram can recover the…

not rated 111 2mo ago A 0 tokens

fix-build-agentops

13

EtaYang10th/spark-skills

Skill Claude CodeCodex

BugSwarm repositories contain paired passing/failing builds of real open-source projects. The failing build has a known regression introduced by a specific commit. Your job is to.

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers diagnosing and fixing build failures in Java/Maven repositories stored as BugSwarm artifacts. The typical setup is.

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

Patch Apache Druid 0.20.x-style vulnerabilities where crafted JSON exploits Jackson injectable deserialization to override security configuration (for example via empty-string keys), then rebuild targeted modules and preserve legitimate requests.

not rated 111 2mo ago A 51 tokens

fix-erlang-ssh-cve

16

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers identifying and patching vulnerabilities in the Erlang/OTP SSH server where SSH connection protocol messages (RFC 4254) are processed before the client has completed authentication (RFC 4252). The canonical example is CVE-2025-32433, but the pattern applies to any state-machine bypass in…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

Fix visual stability issues in Next.js e-commerce apps — covers CLS (Cumulative Layout Shift), FOIT (Flash of Invisible Text), and theme flicker.

not rated 111 2mo ago A 37 tokens

flink-query

18

EtaYang10th/spark-skills

Skill Claude CodeCodex

Procedural skill for implementing Apache Flink jobs that read gzipped CSV cluster-trace data, apply event-time session windows, join/filter across multiple event streams, and produce per-entity aggregations. Covers data-type POJOs, custom SourceFunctions for gzipped CSV, watermark strategies, session-window counting…

not rated 111 2mo ago A 77 tokens

glm-lake-mendota

19

EtaYang10th/spark-skills

Skill Claude CodeCodex

Simulate vertical water temperature profiles for lakes using the General Lake Model (GLM), calibrate key parameters to minimize RMSE against field observations, and produce validated NetCDF output.

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

Matched filtering is the optimal linear filter for detecting a known signal shape buried in stationary Gaussian noise. The procedure for gravitational-wave (GW) detection follows a well-defined pipeline.

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

Solve MATPOWER-format grid dispatch tasks by building a DC optimal power flow with generator energy dispatch, spinning reserve allocation, transmission constraints, and structured JSON reporting.

not rated 111 2mo ago A 42 tokens

hvac-control

22

EtaYang10th/spark-skills

Skill Claude CodeCodex

Implement a complete HVAC temperature control pipeline: open-loop calibration → first-order system identification → PID gain tuning → closed-loop control → metrics computation. The target is to bring a room from 18°C to a 22°C setpoint while meeting strict performance constraints (steady-state error, settling time…

not rated 111 2mo ago A 0 tokens

EtaYang10th/spark-skills

Skill Claude CodeCodex

This skill covers a common task pattern: you are given a problem.json file describing multiple independent computation tasks. Each task specifies an input .npy or .npz file, a natural-language description of the computation, and an output .npy path. Your job is to load the data, perform the computation in JAX, and…

not rated 111 2mo ago A 0 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: