Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começarauto-refactor
자동 리팩토링 — 긴 함수 분리, 중복 제거, import 정리
Estrelas0
Forks0
Atualizado1 de junho de 2026 às 07:37
SKILL.md
readonlyMenu
자동 리팩토링 — 긴 함수 분리, 중복 제거, import 정리
agent_memory 조회 — 실패 패턴/바이럴 시그널/훅 성과 4채널 비교
Watch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
프롬프트 설계 — system/user 분리, few-shot 기준, 토큰 효율 vs 정확도
자동 디버깅 — 에러 로그 → 원인 파일/라인 추적, Docker/Python traceback 분석
자동 테스트 — 변경 파일 syntax/import/smoke test 일괄 검증
경보 엔진 — 아웃라이어/하락/바이럴 감지 + Telegram 알림
| name | auto-refactor |
| description | 자동 리팩토링 — 긴 함수 분리, 중복 제거, import 정리 |
| user_invocable | true |
코드 품질을 자동으로 개선합니다. 큰 변경은 사전 확인 후 적용.
/auto-refactor scan → 리팩토링 후보 전체 스캔
/auto-refactor functions → 100줄+ 함수만 추출
/auto-refactor duplicates → 중복 코드 블록 감지
/auto-refactor imports → unused import 제거 + 정렬
/auto-refactor file <path> → 특정 파일 리팩토링
_for_channel(ch) 패턴 통일from x import * 감지 + 경고dict → dict[str, Any] 명시Optional 누락 → | None 추가/auto-test changed 자동 실행modules/ 전체cutter/generator.py, auto_deploy.py, api_server.py[auto-refactor scan] 후보 발견:
🔴 cutter/generator.py:generate_cuts() — 484줄 (분리 권장)
🟡 auto_deploy.py:run_auto_deploy() — 187줄 (재검토)
🟡 topic_generator.py:중복 4건 (LLM 호출 패턴 통일 권장)
🟢 quality.py — 정상