소스 정보
- 저장소
- thejaustin/ShizukuPlus
- 최근 소스 활동
- 2026년 7월 12일 11:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 812
- 포크
- 47
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/thejaustin/ShizukuPlus --skill lint-repair명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Guidelines and instructions for developing, testing, and troubleshooting ShizukuPlus (an enhanced Shizuku manager with OneUI 8+ fixes, Dhizuku mode, and Plus APIs).
Shizuku+ codebase integrity checks. Use before pushing or committing to ensure no common build-breaking issues (CMake versions, missing imports, Java/Kotlin interop) exist.
Spawns and configures Model Context Protocol (MCP) integrations for ShizukuPlus.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lint-repair |
| description | Automates running Android Lint and repairing errors/warnings in the codebase. |
| license | Complete terms in LICENSE |
| metadata | {"author":"Google LLC","keywords":["lint","static analysis","detekt","code smells"]} |
This skill automates the execution, parsing, and remediation of Android Lint warnings with minimal context bloat.
Execute Lint: Run the Gradle lint task.
./gradlew :manager:lintRelease
Note: Do not read the massive console output. Rely on the generated XML report.
Parse XML Report Efficiently:
The Android lint report can be massive. Instead of reading the whole XML into context, use an inline Python script or xmllint/grep pipeline to extract ONLY the severity="Error" or severity="Fatal" issues.
python3 -c '
import xml.etree.ElementTree as ET
tree = ET.parse("manager/build/reports/lint-results-release.xml")
for issue in tree.getroot().findall("issue"):
if issue.get("severity") in ["Error", "Fatal"]:
loc = issue.find("location")
print(f"{loc.get(\"file\")}:{loc.get(\"line\")} - {issue.get(\"message\")}")
'
Contextualize and Fix:
Read only the specific lines mentioned in the python output using the view_file tool (specifying exact StartLine and EndLine padding).
Use multi_replace_file_content to fix the warnings without loading the entire class.