android-reverse-engineering.../plugins/clone-app
fatih.bulut 91abce60d4 feat(clone-app): add /clone-app command and README 2026-06-21 02:17:56 +03:00
..
.claude-plugin feat(clone-app): scaffold plugin manifest and marketplace entry 2026-06-21 01:58:03 +03:00
commands feat(clone-app): add /clone-app command and README 2026-06-21 02:17:56 +03:00
skills/clone-app feat(clone-app): add orchestrator SKILL.md (phases 0-7) 2026-06-21 02:15:36 +03:00
tests test(clone-app): add aggregate test runner 2026-06-21 02:10:40 +03:00
README.md feat(clone-app): add /clone-app command and README 2026-06-21 02:17:56 +03:00

README.md

clone-app — Clone Feasibility Analyzer (Claude Code skill)

Give it a Google Play URL. It downloads the APK, reverse engineers the tech stack and APIs (via the sibling android-reverse-engineering plugin), analyzes the app's store presence, estimates AI-assisted build effort (in AI Sprints) and monthly infrastructure cost, judges market viability (GO / CONDITIONAL GO / NO GO), and — if you approve — generates a full implementation plan.

Requirements

  • The android-reverse-engineering plugin (ships in this same repo).
  • Java JDK 17+ and jadx (the RE plugin auto-installs jadx if missing).
  • curl, Python 3 (stdlib only), unzip.

Install

/plugin marketplace add /path/to/this/repo
/plugin install android-reverse-engineering@android-reverse-engineering-skill
/plugin install clone-app@android-reverse-engineering-skill

Usage

/clone-app https://play.google.com/store/apps/details?id=com.example.app

Or natural language: "Analyze this Play Store app for cloning: ".

The skill pauses twice for your input: choosing the clone stack, and deciding whether to generate the implementation plan.

Output

./work/<package>/
├── app.apk | app.xapk
├── output/            # decompiled sources + Kotlin name maps
├── play.json          # store metrics
├── appstore.json      # iOS presence
└── clone-report-YYYY-MM-DD.md

Keeping the RE plugin up to date

This repo is a fork. To pull upstream improvements:

git remote add upstream https://github.com/SimoneAvogadro/android-reverse-engineering-skill.git
git pull upstream master

The clone-app plugin lives in its own directory, so upstream updates to android-reverse-engineering merge cleanly.

For lawful use only — your own apps, authorized interoperability, security research, or education. You are responsible for compliance.