Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

appstorereject-resolve应用商店拒绝解决

Agent Skill

appstorereject-resolve 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

190

周安装

8

GitHub Stars

公开资料未说明

下载量

67
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:appstorereject-resolve(应用商店拒绝解决)
来源仓库:https://github.com/nickgdwn/appstorereject-skills
仓库路径:skills/appstorereject-resolve
安装命令:
npx skills add https://github.com/nickgdwn/appstorereject-skills --skill appstorereject-resolve
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nickgdwn/appstorereject-skills --skill appstorereject-resolve

简介

appstorereject-resolve 用于查找、检索和筛选应用商店拒绝解决相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 帮助开发者解决来自 Apple 或 Google 的拒绝问题,提供详细的解决步骤和 API 调用指导。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态,避免触发联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 核验具体用法,确保与宿主环境兼容,并在使用前验证 API 调用和配置选项的有效性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Resolve App Store Rejection

Help the developer resolve a rejection they've received from Apple or Google.

Step 0: Resolve API Key

Before any authenticated API call, resolve the API key. Check in this order:

  1. Run echo $ASR_API_KEY — if non-empty, use that value
  2. If empty, read ~/.appstorereject/config.json with the Read tool and extract the apiKey field value

Store the resolved key in your working memory. You will use it directly in curl commands throughout this session. In every authenticated curl command below, replace $ASR_API_KEY with the actual key value — do NOT rely on the shell env var, because each Bash call runs in a separate shell context and exports do not persist.

If neither source has a key, tell the developer to set up an API key (see hub skill for setup instructions).

Step 1: Identify the Rejection

Determine the guideline code:

  • If the developer pasted a rejection email: Extract the guideline code (pattern: "Guideline X.Y.Z" or "Section X.Y"). Also note the specific reasons cited.
  • If the developer gave a guideline code directly: Use it (e.g., "2.1", "5.1.1", "3.1.1").
  • If the developer described the issue in words: Search for it: curl -s "https://api.appstorereject.com/api/search?q=<keywords>&limit=5" Present the top matches and ask the developer to confirm which one.

Step 2: Fetch Rejection Details

Always start with the guideline code — do NOT guess slugs. Use the batch endpoint to look up by code:

curl -s -H "Authorization: Bearer $ASR_API_KEY" "https://api.appstorereject.com/api/rejections/batch?codes=<guideline_code>"

Example: ?codes=5.1.1 or ?codes=4.3,2.1 (comma-separated, up to 10).

The response includes a slug field for each result. Save the slug to your working memory — you will need it again in Step 6 to attribute analytics to the specific rejection.

If you need the full detail view (solutions, before/after examples), use the returned slug:

curl -s -H "Authorization: Bearer $ASR_API_KEY" "https://api.appstorereject.com/api/rejections/detail?slug=<slug_from_batch_response>"

If you have a slug already (e.g., from a prior search result), you can call the detail endpoint directly.

If authenticated: You'll get full resolution steps, example rejection email, before/after examples, and community solutions.

If unauthenticated: You'll get a summary only. Tell the developer: "For full resolution steps and community solutions, set up an API key: export ASR_API_KEY=asr_... (get one at appstorereject.com/settings/api-keys)"

Step 3: Present Resolution Guide

Show the developer:

  1. Title and description of the rejection
  2. Difficulty level
  3. Resolution steps in order (if authenticated)
  4. Community solutions ranked by effectiveness (if authenticated)

Step 4: Plan Fix in Codebase Context

Read {baseDir}/references/resolution-workflow.md for the structured approach.

For each resolution step:

  1. Search the developer's codebase for the relevant files
  2. Propose specific changes tied to the resolution step
  3. Explain why the change satisfies the guideline

Present the complete fix plan before making any changes. Wait for developer approval.

Step 5 (Alternative): Appeal Letter

If the developer wants to appeal instead of fixing (they believe the rejection is wrong):

Generate an appeal letter using:

  • The specific guideline cited in the rejection
  • What the app actually does (from codebase context)
  • Apple/Google's public review guidelines language

The appeal is generated locally by you (the AI agent) — no API call needed. Present the draft for the developer to review and edit before sending.

Step 6: Report Analytics

After the developer resolves, appeals, or abandons:

curl -s -X POST -H "Authorization: Bearer $ASR_API_KEY" -H "Content-Type: application/json" -d '{"bundleId":"<detected>","guidelineCode":"<code>","rejectionSlug":"<slug_from_step_2>","action":"resolved|appealed|abandoned","platform":"ios|android"}' "https://api.appstorereject.com/api/rejections/report"

Always include rejectionSlug — use the slug you saved from Step 2's batch response. This attributes the report to the specific rejection on appstorereject.com (guideline codes alone are ambiguous because multiple rejections can share the same code). Resolved and appealed reports increment the rejection's public sighting count; abandoned reports are recorded for analytics only.

Auto-detect the bundleId from the project (Info.plist, build.gradle, app.json). If not detectable, ask the developer.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.02%
按下载量换算25

Claude

32.15%
按下载量换算22

Cursor

17.96%
按下载量换算12

Gemini CLI

9.47%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills