Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 2.03 KB

File metadata and controls

57 lines (36 loc) · 2.03 KB

Replicate Android Feature

skills.sh

An agent skill for reproducing an existing Android feature in another project or platform. It treats the Android implementation as the source of truth and preserves the complete feature path, behavior, UI, and reusable resources.

Install

npx skills add addxing/replicate-android-feature

DeepSeek Harness

This repo follows the DeepSeek Harness (DSH) Skill format. Clone it into a skills directory and it will be auto-discovered:

# User-level install (available in all projects)
git clone https://github.com/addxing/replicate-android-feature ~/.dsh/skills/replicate-android-feature

# Project-level install (current project only)
git clone https://github.com/addxing/replicate-android-feature .dsh/skills/replicate-android-feature

DSH hot-reloads the skills directory after cloning; the skill becomes available in new sessions.

Or install it as an official bundle plugin in one line (requires pnpm; restart the web app afterwards):

dsh plugin --profile web add "github:addxing/replicate-android-feature#main"

Usage

Ask your AI coding tool to apply the skill and identify the feature to reproduce:

Use $replicate-android-feature to reproduce the favorites feature from the Android source project in the target project.

Provide the source and target project locations when they cannot be inferred from the workspace.

What It Does

This skill guides an agent to:

  • reproduce all Android functionality and business logic
  • match all visual elements, including layout, colors, typography, and spacing
  • trace and implement every feature entry and related page from the Android source code
  • reuse Android resources, converting only formats unsupported by the target platform
  • summarize implemented content, main changed files, validation, and remaining gaps or blockers

Files

  • SKILL.md - skill instructions
  • LICENSE.txt - Apache 2.0 license