asc-wall-submit
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chineseasc 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 name
app - : app URL (
link/http, usually App Store URL)https - : GitHub handle or creator name
creator - : comma-separated labels (for example:
platform)iOS,macOS
If any value is missing, ask for it first.
运行命令前请收集并确认所有字段:
- : 应用名称
app - : 应用URL(
link/http协议,通常为App Store链接)https - : GitHub账号名或创作者名称
creator - : 英文逗号分隔的标签(例如:
platform)iOS,macOS
如有任何值缺失,请先向用户询问。
Submission workflow
提交流程
- Run commands from the repository root.
App-Store-Connect-CLI - Run:
make generate app APP="Your App Name" LINK="https://apps.apple.com/app/id1234567890" CREATOR="your-handle" PLATFORM="iOS,macOS" - Verify generated changes include:
docs/wall-of-apps.jsonREADME.md
- Review diff and confirm:
- The JSON entry is added or updated correctly.
- The README wall snippet is regenerated from markers.
- Open a focused PR with only the Wall-related generated changes.
- 在仓库根目录下运行命令。
App-Store-Connect-CLI - 运行:
make generate app APP="Your App Name" LINK="https://apps.apple.com/app/id1234567890" CREATOR="your-handle" PLATFORM="iOS,macOS" - 验证生成的变更包含以下文件:
docs/wall-of-apps.jsonREADME.md
- 检查diff并确认:
- JSON条目已正确新增或更新。
- README中的应用墙片段已根据标记重新生成。
- 提交仅包含应用墙相关生成变更的聚焦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"