Skill Claude CodeCodex
Anonymize academic PDFs for blind peer review by redacting author names, affiliations, emails, arXiv IDs, venue info, acknowledgement names, and other identity-revealing content using PyMuPDF string-level redaction.
Skill Claude CodeCodex
Anonymize academic PDFs for blind peer review by redacting author names, affiliations, emails, arXiv IDs, venue info, acknowledgement names, and other identity-revealing content using PyMuPDF string-level redaction.
Skill Claude CodeCodex
Parallelize a sequential TF-IDF search engine using Python multiprocessing. Covers parallel index building (tokenization, TF, DF, IDF, inverted index, doc vectors) and parallel batch query search. Produces identical results to sequential with 1.5x+ indexing and 2x+ search speedup on 4 workers.
Skill Claude CodeCodex
Solve Travelling Purchase Problem (TPP) PDDL planning tasks using pyperplan. Reads problem.json, runs pyperplan with multiple search strategies, converts output to action(arg1, arg2, ...) format.
Skill Claude CodeCodex
Extract employee table from PDF backup, compare with current Excel file, identify deleted and modified employee records, output JSON diff report.
Skill Claude CodeCodex
Count unique pedestrians in surveillance videos using YOLOv8 detection and multi-object tracking. Deduplicates across frames, excludes cyclists. Writes per-video counts to Excel.
Skill Claude CodeCodex
Fetches web articles/essays, extracts main text content, converts to speech using edge-tts (local, no API key needed), and concatenates into a single MP3 audiobook. Use when you need to convert online text content to audio.
Skill Claude CodeCodex
Calculate Dots coefficients for IPF powerlifting data. Copies relevant columns from Data sheet to Dots sheet, adds TotalKg and Dots formulas. Use when computing normalized strength scores for powerlifting competitions.
Skill Claude CodeCodex
Detect and process dangling paper titles in PPTX presentations. Reformats text boxes with paper titles (font, size, color), repositions them to bottom center, and creates a reference slide with auto-numbered unique titles.
Skill Claude CodeCodex
Fills a proteomics Task sheet with INDEX-MATCH expression lookups, group statistics (AVERAGE/STDEV for Control vs Treated), and fold change formulas (Log2FC and FC). Discovers layout at runtime from the workbook itself. Use when a proteinexpression.xlsx has Task and Data sheets requiring two-way lookups and…
Skill Claude CodeCodex
Translate Python code to idiomatic Scala 2.13. Handles type system mapping (enums to sealed traits, Union to ADTs, Optional to Option), naming conventions (snakecase to camelCase), Protocol to type class pattern, dataclass to case class, and compilation validation via sbt.
Skill Claude CodeCodex
Simulate open Dicke model steady state and compute cavity Wigner function using QuTiP PIQS. Use for tasks involving Dicke model, collective spin-cavity systems, Wigner function calculation, and open quantum systems with various loss channels.
Skill Claude CodeCodex
MPC controller for 6-section Roll-to-Roll web handling system. Derives linearized state-space model using Euler discretization matching the simulator, designs MPC with LQR fallback, runs simulation with time-varying reference tracking, and computes performance metrics.