feat: Add Cursor project skill and Windows PowerShell script parity#21
Open
rafaelsteil wants to merge 1 commit into
Open
feat: Add Cursor project skill and Windows PowerShell script parity#21rafaelsteil wants to merge 1 commit into
rafaelsteil wants to merge 1 commit into
Conversation
Introduce .cursor/skills/android-reverse-engineering for Cursor IDE, document cross-platform setup in README and setup-guide, and add missing PS1 scripts (fingerprint, Kotlin name recovery, lookup). Extract shared Python modules used by bash and PowerShell wrappers; harden decompile.ps1 for XAPK extraction, partial jadx/Fernflower success, and Fernflower timeouts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Cursor project skill and complete Windows PowerShell script parity
Summary
This PR makes the skill usable end-to-end on Windows and in Cursor, without changing the existing Claude Code plugin layout.
Cursor IDE support
.cursor/skills/android-reverse-engineering/SKILL.mdthat points at the shared scripts and references underplugins/android-reverse-engineering/.setup-guide.md.Windows PowerShell parity
Upstream already ships
check-deps.ps1,install-dep.ps1,decompile.ps1, andfind-api-calls.ps1(#8), but several workflow steps were bash-only. This PR adds the missing scripts:fingerprint.ps1recover-kotlin-names.ps1lookup-name.ps1It also brings
find-api-calls.ps1in line with the bash version (-Ktor,-Apollo,-Paths, and related output sections).Shared Python modules
Kotlin name recovery logic previously lived as inline Python inside the bash scripts. It is extracted into:
recover_kotlin_names.pylookup_names.pyBoth
*.shand*.ps1wrappers now call these modules, so behavior stays in sync across platforms.Hardened
decompile.ps1Aligns Windows decompilation with recent bash improvements (#10):
System.IO.Compression.ZipFile(.xapkis not a validExpand-Archiveinput).javafilesFERNFLOWER_TIMEOUT_SECONDS(default 900s)Docs and housekeeping
setup-guide.mdgains Windows install/verify sections (winget OpenJDK, PATH notes, Cursor)..gitignoreignores*-decompiled/output directories.No changes to the Claude Code plugin manifest or slash commands.
Motivation
Windows users could check deps, install tools, decompile, and scan APIs, but could not run Phase 0 fingerprinting or Kotlin name recovery without WSL/Git Bash. Cursor users had no documented path to load the skill. This closes both gaps while keeping a single source of truth for script logic under
plugins/.Note
A large portion of this PR was drafted with help from Cursor. I have reviewed the changes and tested as much as I could on my side, but I have not exhaustively exercised every script path or platform combination.