DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Xby Hitoshura25 Android Playstore Deploy — DeepSeek Harness…
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
X

xby-hitoshura25-android-playstore-deploy

Xby Hitoshura25 Android Playstore Deploy

一个帮助开发者设置自动化Google Play商店部署流程的工具,支持项目分析、密钥生成、服务账户配置和GitHub Actions工作流生成。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:xby-skill/xby-hitoshura25-android-playstore-deploy#5419315a6687b614a9f9395290c3b3c6780675db
README兼容性版本

兼容性与来源证明

Xby Hitoshura25 Android Playstore Deploy 以 xby-hitoshura25-android-playstore-deploy 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/28

版本

1.0.0stable
2026/8/28

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/2
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

xby-hitoshura25-android-playstore-deploy

DeepSeek Harness (DSH) 的插件:Android应用商店部署工具

一个帮助开发者设置自动化Google Play商店部署流程的工具,支持项目分析、密钥生成、服务账户配置和GitHub Actions工作流生成。

功能

  • set_xby_apikey — 在聊天中设置 API 密钥(自动持久化,重启有效)
  • analyze_android_project — Analyze an Android project to understand its configuration and identify requirements for Play Store deployment

Args:

project_path: Absolute path to the Android project root directory

Returns: Result from analyze_android_project

  • generate_keystore — Generate a new Android keystore file for app signing with secure parameters

Args:

output_path: Absolute path where the keystore will be saved

alias: Key alias for the signing key

key_password: Password for the signing key

store_password: Password for the keystore

validity_days: How many days the key should be valid

key_size: Key size in bits

dname: Distinguished name for the certificate

Returns: Result from generate_keystore

  • generate_signing_config — Generate Gradle signing configuration with dual-source support

Generates signing configuration that works seamlessly for both local development and CI/CD:

  • Environment variables (prioritized for CI/CD)
  • gradle.properties fallback (for local development)
  • Task-based validation (debug builds always work)

Automatically generates gradle.properties.template for easy local setup.

Args:

project_path: Path to Android project

env_var_prefix: Prefix for environment variables (default: "APP_")
               Example: "APP_" creates APP_SIGNING_KEY_STORE_PATH
               Use "" for no prefix

Returns: Result including gradle_config_kotlin, gradle_properties_template, and setup instructions

  • setup_service_account_guide — Provide interactive step-by-step guide for setting up Google Play Service Account

Returns: Result from setup_service_account_guide

  • generate_github_workflow — Generate a complete GitHub Actions workflow file for Play Store deployment

Args:

project_path: Path to Android project

package_name: Android app package name

track: Play Store release track (internal, alpha, beta, production)

trigger_strategy: How to trigger the workflow (manual, branch, tag)

branch_name: Branch name to trigger on if trigger_strategy is branch

app_module_path: Path to app module relative to project root

java_version: Java/JDK version to use for builds

enforce_proguard: If True, ensure isMinifyEnabled=true in build.gradle.kts (default: True)

mapping_file_path: Override default ProGuard mapping file path

include_release_notes: Include release notes directory (default: True)

release_notes_directory: Path to release notes directory (default: distribution/whatsnew)

env_var_prefix: Prefix for environment variables (default: "APP_")
               Example: "APP_" creates APP_SIGNING_KEY_STORE_PATH
               Use "" for no prefix

Returns: Result from generate_github_workflow

  • validate_github_secrets — Validate that required GitHub Secrets are configured (checks existence only)

Args:

repo_owner: GitHub repository owner username or organization

repo_name: GitHub repository name

github_token: GitHub Personal Access Token with repo scope

required_secrets: List of secret names to check for

Returns: Result from validate_github_secrets

  • create_github_secrets_guide — Generate a comprehensive guide for creating all required GitHub Secrets

Args:

repo_url: GitHub repository URL

keystore_path: Optional path to keystore for encoding instructions

Returns: Result from create_github_secrets_guide

  • validate_play_store_setup — Validate that Play Store app and API access are properly configured using service account

Args:

service_account_json_path: Path to service account JSON file

package_name: Android app package name to validate

Returns: Result from validate_play_store_setup

  • test_deployment_workflow — Test the deployment workflow locally without uploading to Play Store

Args:

project_path: Path to Android project

keystore_path: Path to keystore file

store_password: Keystore password

key_alias: Key alias

key_password: Key password

dry_run: If true, skip actual Play Store upload

Returns: Result from test_deployment_workflow

安装

方式一:从 GitHub 直接安装(推荐)

# 格式: dsh plugin --profile <profile> add github:<owner>/<repo>
dsh plugin --profile web add github:xby_skill/xby-hitoshura25-android-playstore-deploy

方式二:从本地目录安装(开发模式)

# 仅用于本地开发调试
dsh plugin --profile web add /absolute/path/to/xby-hitoshura25-android-playstore-deploy

方式三:通过 cordis.patch.yml 开发调试

dsh web --profile web --patch /absolute/path/to/dsh-ocr-plugin/cordis.patch.yml

配置

获取 API 密钥

前往 小笨羊官网 注册并获取 API 密钥。