From 9550dc0182df9a38c06b0b17c58258138e627514 Mon Sep 17 00:00:00 2001 From: "fatih.bulut" Date: Sun, 21 Jun 2026 01:58:03 +0300 Subject: [PATCH] feat(clone-app): scaffold plugin manifest and marketplace entry --- .claude-plugin/marketplace.json | 13 +++++++++++++ plugins/clone-app/.claude-plugin/plugin.json | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 plugins/clone-app/.claude-plugin/plugin.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 9ec0386..2159cda 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -22,6 +22,19 @@ "license": "Apache-2.0", "keywords": ["android", "reverse-engineering", "apk", "jadx", "decompile", "api-extraction"], "category": "security" + }, + { + "name": "clone-app", + "source": "./plugins/clone-app", + "description": "Analyze a Google Play app for cloning: APK reverse engineering, AI-assisted effort estimation, market viability.", + "version": "0.1.0", + "author": { + "name": "masa2146" + }, + "repository": "https://github.com/masa2146/android-reverse-engineering-skill", + "license": "Apache-2.0", + "keywords": ["android", "clone", "feasibility", "effort-estimation", "market-analysis"], + "category": "security" } ] } diff --git a/plugins/clone-app/.claude-plugin/plugin.json b/plugins/clone-app/.claude-plugin/plugin.json new file mode 100644 index 0000000..ed150cc --- /dev/null +++ b/plugins/clone-app/.claude-plugin/plugin.json @@ -0,0 +1,13 @@ +{ + "name": "clone-app", + "version": "0.1.0", + "description": "Analyze a Google Play app: download APK, reverse engineer it, estimate AI-assisted clone effort and infra cost, assess market viability, and optionally generate an implementation plan.", + "author": { + "name": "masa2146" + }, + "repository": "https://github.com/masa2146/android-reverse-engineering-skill", + "license": "Apache-2.0", + "keywords": ["android", "clone", "feasibility", "effort-estimation", "market-analysis", "reverse-engineering"], + "skills": "./skills/", + "commands": "./commands/" +}