Loading...
Loading...
Found 48002 skills
timothyfroehlich
Guides systematic debugging through reproduction, isolation, hypothesis formation, instrumentation, fixing, and regression testing for error resolution.
EarthmanWeb
Deep codebase analysis for large projects using swarm agents and DAA (Distributed Agent Architecture).
timothyfroehlich
Automates final development steps: verifies code, summarizes changes, notes follow-ups, and ensures repository hygiene.
timothyfroehlich
Provides reliable Python automation for REST API interactions with patterns for retries, timeouts, pagination, and testing.
timothyfroehlich
Produces step-by-step implementation plans with exact file paths and verification commands for safe code modifications.
edheltzel
Installs a curated frontend stack (React, Next.js, Tailwind, shadcn) for new project initialization.
edheltzel
Installs a curated backend stack including Bun, Hono, Cloudflare Workers, D1, and database services for new API or backend project setup.
fyndx
Provides reactive state management utilities for React Native, enabling models, observables, and computed values in CoinX.
jimmc414
Measures application performance before changes, profiles bottlenecks, and compares results to ensure effective optimization.
jimmc414
Compiles string expressions once into callable functions for efficient repeated evaluation in performance-sensitive loops.
jimmc414
Applies decorator patterns to functions for cross-cutting concerns like caching, timing, logging, and validation without modifying the original function code.
jimmc414
Provides algorithmic solutions for finding shortest paths in graphs, including maze solving, route planning, and game AI using BFS, DFS, Dijkstra, and A*.
jimmc414
Separates lexing from parsing in interpreters, converting token streams into Abstract Syntax Trees (AST) for structured language processing.
jimmc414
Provides a flexible type conversion utility that attempts multiple conversions in sequence with graceful fallback from specific to general types.
jimmc414
Offers named functions for arithmetic operators, reducing lambda usage and enhancing code clarity in functional programming contexts.
mcasper
Fetches detailed error information from Sentry including backtraces and context to investigate application issues.
jimmc414
Decomposes long functions into smaller, testable helper functions to reduce nesting and enhance readability.
jimmc414
Precomputes static relationships (e.g., graph structures, grid neighbors) at module load for efficient reference throughout the program, avoiding repeated calculations.
jimmc414
Solves 2D grid problems including mazes, cellular automata, and flood fill using a dict-based Grid class pattern for efficient pathfinding and grid manipulation.
jimmc414
Provides efficient combinatorial iteration for permutations, combinations, and cartesian products using Python's itertools without full memory storage.
jimmc414
Validates data structure properties including lengths, relationships, and constraints to ensure correct setup and integrity in software applications.
jimmc414
Ensures cross-version Python compatibility through try/except imports and optional dependency management for graceful degradation.
jimmc414
Defines type aliases to create self-documenting code and a domain-specific language feel for new modules, enhancing readability and maintainability.
jimmc414
Enables writing and running tests within the same source file as code, serving as living documentation and executable examples for developers.