asc-wall-submit

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

asc wall submit

asc wall submit

Use this skill to add or update a Wall of Apps entry without introducing new CLI surface area.
使用本技能可新增或更新Wall of Apps条目,无需新增CLI对外功能。

When to use

适用场景

  • User wants to submit an app to the Wall of Apps
  • User wants to update an existing Wall of Apps entry
  • User asks for the exact Wall submission flow
  • 用户想要向Wall of Apps提交应用
  • 用户想要更新Wall of Apps中已有的条目
  • 用户询问具体的Wall提交流程

Required inputs

所需输入

Collect and confirm all fields before running commands:
  • app
    : app name
  • link
    : app URL (
    http
    /
    https
    , usually App Store URL)
  • creator
    : GitHub handle or creator name
  • platform
    : comma-separated labels (for example:
    iOS,macOS
    )
If any value is missing, ask for it first.
运行命令前请收集并确认所有字段:
  • app
    : 应用名称
  • link
    : 应用URL(
    http
    /
    https
    协议,通常为App Store链接)
  • creator
    : GitHub账号名或创作者名称
  • platform
    : 英文逗号分隔的标签(例如:
    iOS,macOS
如有任何值缺失,请先向用户询问。

Submission workflow

提交流程

  1. Run commands from the
    App-Store-Connect-CLI
    repository root.
  2. Run:
    make generate app APP="Your App Name" LINK="https://apps.apple.com/app/id1234567890" CREATOR="your-handle" PLATFORM="iOS,macOS"
  3. Verify generated changes include:
    • docs/wall-of-apps.json
    • README.md
  4. Review diff and confirm:
    • The JSON entry is added or updated correctly.
    • The README wall snippet is regenerated from markers.
  5. Open a focused PR with only the Wall-related generated changes.
  1. App-Store-Connect-CLI
    仓库根目录下运行命令。
  2. 运行:
    make generate app APP="Your App Name" LINK="https://apps.apple.com/app/id1234567890" CREATOR="your-handle" PLATFORM="iOS,macOS"
  3. 验证生成的变更包含以下文件:
    • docs/wall-of-apps.json
    • README.md
  4. 检查diff并确认:
    • JSON条目已正确新增或更新。
    • README中的应用墙片段已根据标记重新生成。
  5. 提交仅包含应用墙相关生成变更的聚焦PR。

Guardrails

注意事项

  • Do not hand-edit the Wall snippet in
    README.md
    .
  • Do not modify unrelated entries in
    docs/wall-of-apps.json
    .
  • If generation fails due to invalid input, fix inputs and rerun the generator.
  • Keep submission path PR-based unless maintainers define an issue-based intake flow.
  • 请勿手动编辑
    README.md
    中的应用墙片段。
  • 请勿修改
    docs/wall-of-apps.json
    中不相关的条目。
  • 若因输入无效导致生成失败,请修正输入后重新运行生成器。
  • 除非维护者定义了基于issue的录入流程,否则统一使用PR路径提交。

Examples

示例

Add new app:
make generate app APP="My App" LINK="https://apps.apple.com/app/id1234567890" CREATOR="my-handle" PLATFORM="iOS"
Update existing app (same app name updates in place):
make generate app APP="My App" LINK="https://apps.apple.com/app/id1234567890" CREATOR="my-handle" PLATFORM="iOS,macOS"
添加新应用:
make generate app APP="My App" LINK="https://apps.apple.com/app/id1234567890" CREATOR="my-handle" PLATFORM="iOS"
更新已有应用(使用相同应用名即可原地更新):
make generate app APP="My App" LINK="https://apps.apple.com/app/id1234567890" CREATOR="my-handle" PLATFORM="iOS,macOS"