소스 정보
- 저장소
- liriliri/tinker
- 최근 소스 활동
- 2026년 7월 16일 03:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 225
- 포크
- 18
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/liriliri/tinker --skill simplify명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | simplify |
| description | Review changed code for reuse, quality, and efficiency, then fix any issues found. |
| argument-hint | <plugin-name-or-file-path> |
Review a Tinker plugin's source code for redundant, dead, or duplicated code, then fix all issues found.
plugin-name-or-file-path: plugin folder name (e.g. tinker-hash) or one or more specific file pathsRead all target files and check for the following categories of redundancy:
return, throw, or breakswitch cases that can never execute given the existing logic (e.g. a handler registered before a special-case check that already covers the same path)true or always false.ts, .tsx) under src/ that are never imported by any other file in the plugin.ts/.tsx file in the plugin contains an import statement pointing to itmain.tsx, index.ts) and type-only files (types.ts) are exempt from this checksrc/i18n/*.json that are never referenced via t('key') anywhere in the plugin's .ts/.tsx filesen-US.json and zh-CN.json) — a key is unused only if it is absent from all t() calls across the entire plugin sourceFor each issue found, output:
[Category] file/path:line — description
Example:
[Unused] src/lib/constants.ts:40 — SUPPORTED_EXTENSIONS is exported but never imported
[Dead Code] src/lib/ffmpegArgs.ts:22 — case 'gif' in getVideoCodecArgs is unreachable; caller handles gif before invoking this function
[Duplicate Logic] src/components/MediaList.tsx:50,158 — handleContextMenu is identical in ImageCard and MediaRow; extract to a shared hook
[Duplicate Type] src/components/MediaList.tsx:43,151 — MediaItemProps and MediaRowProps are identical; remove one
[Unreferenced] src/components/EditProviderDialog.tsx — file is never imported by any other file in the plugin; delete it
[i18n] src/i18n/en-US.json:12 — key "outputDir" is defined but never used via t()
If no issues are found, report: No redundancies found.
.ts, .tsx, and .json files under <plugin-name>/src/.ts/.tsx file under src/ against all import statements in the plugin — any file not imported by any other file (excluding entry points and types.ts) is unreferenced and should be deleted..ts/.tsx files for t('key') calls. Any key not found in any call is unused.