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

pyjinhx

pyjinhx에는 paulomtts에서 수집한 skills 9개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
9
Stars
9
업데이트
2026-06-09
Forks
0
직업 범위
직업 카테고리 2개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

dead-code-audit
소프트웨어 개발자

Audit pyjinhx for dead code—removed API ghosts in code/docs/tests, symbols with no callers, obsolete backward-compat paths, unused parameters, and tests for deleted behavior. Use after refactors, API removals, or when the user asks to "sweep for dead code", "find unused code", or "remove leftovers". Read-only report.

2026-06-09
code-audit-sweep
소프트웨어 개발자

Orchestrate a full structural code audit of pyjinhx using eight focused lenses (file responsibility, module placement, domain entities, state shape, duplication, indirection, public API, dead code). Use when the user asks to "audit the codebase", "sweep for quality", "review architecture", "audit reactive/", or before a large PR merge. Produces a merged read-only report; remediation is a separate pass unless requested.

2026-06-09
domain-entity-audit
소프트웨어 개발자

Audit whether classes and module names match domain concepts—entities vs algorithms, ABC vs hub vs value object, procedural filenames vs type names. Use when naming new types, reviewing package structure, or asking "what should this be called". Read-only report.

2026-06-09
public-api-audit
소프트웨어 개발자

Audit pyjinhx public API surface—pyjinhx.__all__, top-level exports vs canonical implementations, docs/reference/public-api.md alignment, tests/36_public_api_test.py. Use before releases, after refactors, or when removing deprecated symbols. Read-only.

2026-06-09
state-shape-audit
소프트웨어 개발자

Audit where mutable state lives in Python modules—module globals and ContextVars vs class classmethods, pure functions vs hubs, ABC vs coordinator split. Use when reviewing singletons, request scope, caches, or "should this be a class". Read-only.

2026-06-09
duplication-audit
소프트웨어 품질 보증 분석가·테스터

Audit for duplicated workflows and parallel call sequences that will drift—same orchestration in two modules, duplicate parsing/validation, identical decorator and context-manager bodies. Use when reviewing refactors, merge conflicts, or "keep these in sync" code. Read-only report; documents intentional asymmetry.

2026-06-09
file-responsibility-audit
소프트웨어 개발자

Audit Python files for single responsibility—oversized modules, mixed concerns (parsing + algorithm + runtime in one file), misleading filenames, empty package __init__ without module maps. Use when a file feels crowded or before splitting a module. Read-only report.

2026-06-08
indirection-audit
소프트웨어 개발자

Audit Python code for unnecessary indirection—thin wrappers, one-line factories, module functions that only delegate to classmethods, nested closures for capture, and internal re-export shims. Use when the user mentions indirection, wrappers, aliases, "just calls", or wants a delegation cleanup pass. Read-only report.

2026-06-08
module-placement-audit
소프트웨어 개발자

Audit Python package layering—which modules belong in core, reactive, integrations, or utils; framework-specific code in generic layers; forbidden upward imports. Use when asking "should this live in this file", moving adapters, or reviewing integration boundaries. Read-only report.

2026-06-08