Skip to main content

jimmc414/claude-code-plugin-marketplace

SkillsMP는 jimmc414/claude-code-plugin-marketplace에서 65개의 skill을 수집했습니다. skill을 열어 소스와 세부 정보를 확인하세요.

최근 기록된 소스 활동
SkillsMP 카탈로그 업데이트
수집된 skills
65
GitHub 스타
4
GitHub 포크
6

수집된 skill 65개 중 40개를 표시합니다.

직업 분류
소프트웨어 개발자
설명

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,…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
데이터 과학자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
보험계리사
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 품질 보증 분석가·테스터
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 품질 보증 분석가·테스터
설명

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

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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

원문 언어: 영어

업데이트
수집된 skill 65개 중 40개를 표시합니다.