Skip to main content

jimmc414/claude-code-plugin-marketplace

SkillsMP hat 65 Skills aus jimmc414/claude-code-plugin-marketplace gesammelt. Öffne einen Skill, um Quelle und Details zu prüfen.

Letzte erfasste Quellaktivität
SkillsMP-Katalog aktualisiert
gesammelte Skills
65
GitHub-Stars
4
GitHub-Forks
6

Es werden 40 von 65 gesammelten Skills angezeigt.

Beruf
Softwareentwickler
Beschreibung

Conducts iterative deep research on any topic using web search, progressive exploration, and structured synthesis. Use when asked for comprehensive research, deep investigation, thorough analysis, or multi-source exploration of any topic. Triggers: research,…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For cross-cutting concerns: add behavior without modifying functions, caching, timing, logging, validation wrappers.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For performance work: measure before changing, profile to find bottlenecks, compare before and after.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For symbolic computation: ASTs, mathematical expressions, code that manipulates code structure, expression transformations.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For ordered processing: A* search, Dijkstra, event simulation, task scheduling. Efficient min/max extraction with heap-based queue.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For dynamic programming: overlapping subproblems, recursive solutions with repeated computations, memoization to avoid redundant work.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For persistent state: closures capture outer variables, alternative to classes for simple state, factory functions that remember context.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For flexible parsing: try multiple type conversions in order, graceful fallback from specific to general types.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For iteration with errors: catch exceptions during exploration, skip invalid cases, continue to next attempt.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For hot loop optimization: repeated formula evaluation, regex patterns, expression compilation. Transform string to callable once, call many times.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For complex behavior: build from tiny functions, chain transformations, make code read like a pipeline of operations.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For probability and counting: permutations, combinations, sample spaces, Monte Carlo simulation, brute-force enumeration, card/dice problems.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For new modules: define type aliases as vocabulary, make code self-documenting, create domain-specific language feel.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For heterogeneous data: pattern matching on type/structure, interpreter eval loops, handling different expression types.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For 2D debugging: visualize grid/board state, show puzzle progress, make algorithm behavior visible.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For cross-version support: try/except imports, optional dependencies, graceful degradation across Python versions.

Quellsprache: Englisch

Aktualisiert
Beruf
Datenwissenschaftler
Beschreibung

For computational geometry: convex hull, point enclosure, polygon operations. Uses monotone chain algorithm with stack-based turn detection.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For pathfinding and search: shortest path, maze solving, game AI, route planning, graph traversal, BFS/DFS, Dijkstra, A* problems.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For result reporting: tabular output, aligned columns, statistics summaries, human-readable reports.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For graph exploration: frontier collection with configurable pop order, BFS/DFS/random via strategy change.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For tree/maze generation: spanning trees, random mazes, graph coverage. Uses frontier-based exploration with configurable traversal order.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For boundary conditions: empty collections, zero values, recursive base cases, null checks, prevent crashes at edges.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For fast comparison: ensure only one instance of each symbol, use 'is' instead of '==', symbol tables for interpreters.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For combinatorial iteration: permutations, combinations, cartesian products, without storing all results in memory.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For two-sided matching: hospital-resident, stable marriage, college admissions. Gale-Shapley algorithm for stable matching with preferences.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For NP-hard optimization: TSP, scheduling, assignment problems. Uses greedy construction + local improvement (2-opt, hill climbing).

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For domain-specific languages: operator overloading, make Python look like math/domain notation, expression builders.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For text processing: extract numbers, words, structured data from messy text using regex patterns, parsing utilities.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For generic algorithms: strategy pattern, callbacks, configurable behavior. Pass functions as parameters to customize algorithm behavior.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For static relationships: graph structure, grid neighbors, constraint peers. Calculate once at module load, reference throughout program.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For constraint problems: eliminate impossibilities before guessing, reduce search space through inference, fail fast on contradictions.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For long functions: break into smaller pieces, extract helper functions, reduce nesting, improve testability and readability.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For graceful failure: return None or False instead of exceptions, let caller decide how to handle failure.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For comparison: display before/after, multiple solutions, diffs side by side for visual comparison.

Quellsprache: Englisch

Aktualisiert
Beruf
Versicherungsmathematiker
Beschreibung

For constraint satisfaction: Sudoku, scheduling, N-queens, logic puzzles, SAT-like problems, assignment problems. Uses propagate-then-search pattern.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For 2D grid problems: mazes, board games, tile maps, pixel grids, coordinate systems, cellular automata, flood fill. Uses dict-based Grid class pattern.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For search with undo: explicit decision stack, backtracking when paths fail, depth-first exploration with state restoration.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwarequalitätssicherungsanalysten und -tester
Beschreibung

For data structure validation: test lengths, relationships, constraints that must hold, verify setup is correct.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwarequalitätssicherungsanalysten und -tester
Beschreibung

For example-driven development: test cases as specifications, input/output pairs, documentation through examples.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

For performance reporting: timing wrappers, throughput calculations, profiling summaries.

Quellsprache: Englisch

Aktualisiert
Es werden 40 von 65 gesammelten Skills angezeigt.