Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

claude-code-plugin-marketplace

claude-code-plugin-marketplace에는 jimmc414에서 수집한 skills 65개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
65
Stars
4
업데이트
2025-12-30
Forks
4
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

deep-research
소프트웨어 개발자

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, investigate, deep dive, comprehensive analysis, explore thoroughly, find everything about.

2025-12-30
apply-decorator-wrap
소프트웨어 개발자

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

2025-12-27
benchmark-before-optimize
소프트웨어 개발자

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

2025-12-27
build-expression-tree
소프트웨어 개발자

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

2025-12-27
build-priority-queue
소프트웨어 개발자

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

2025-12-27
cache-recursive-calls
소프트웨어 개발자

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

2025-12-27
capture-state-closure
소프트웨어 개발자

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

2025-12-27
cascade-type-conversion
소프트웨어 개발자

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

2025-12-27
catch-expected-errors
소프트웨어 개발자

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

2025-12-27
compile-once-call-many
소프트웨어 개발자

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

2025-12-27
compose-small-helpers
소프트웨어 개발자

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

2025-12-27
count-combinations
소프트웨어 개발자

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

2025-12-27
define-domain-types
소프트웨어 개발자

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

2025-12-27
dispatch-on-structure
소프트웨어 개발자

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

2025-12-27
display-grid-state
소프트웨어 개발자

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

2025-12-27
fallback-compatibility
소프트웨어 개발자

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

2025-12-27
find-convex-hull
데이터 과학자

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

2025-12-27
find-shortest-path
소프트웨어 개발자

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

2025-12-27
format-statistics-table
소프트웨어 개발자

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

2025-12-27
frontier-based-explore
소프트웨어 개발자

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

2025-12-27
generate-tree-structure
소프트웨어 개발자

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

2025-12-27
handle-edge-cases
소프트웨어 개발자

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

2025-12-27
intern-symbols-identity
소프트웨어 개발자

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

2025-12-27
iterate-with-itertools
소프트웨어 개발자

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

2025-12-27
match-stable-pairs
소프트웨어 개발자

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

2025-12-27
optimize-local-search
소프트웨어 개발자

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

2025-12-27
overload-operators-dsl
소프트웨어 개발자

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

2025-12-27
parse-extract-input
소프트웨어 개발자

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

2025-12-27
pass-function-as-arg
소프트웨어 개발자

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

2025-12-27
precompute-relationships
소프트웨어 개발자

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

2025-12-27
propagate-then-search
소프트웨어 개발자

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

2025-12-27
refactor-decompose-function
소프트웨어 개발자

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

2025-12-27
return-none-for-failure
소프트웨어 개발자

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

2025-12-27
show-side-by-side
소프트웨어 개발자

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

2025-12-27
solve-constraint-puzzle
보험계리사

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

2025-12-27
solve-grid-maze
소프트웨어 개발자

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

2025-12-27
stack-based-backtrack
소프트웨어 개발자

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

2025-12-27
test-structural-invariants
소프트웨어 품질 보증 분석가·테스터

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

2025-12-27
test-with-examples
소프트웨어 품질 보증 분석가·테스터

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

2025-12-27
time-and-report
소프트웨어 개발자

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

2025-12-27
이 저장소에서 수집된 skills 65개 중 상위 40개를 표시합니다.