asc-wall-submit
4
总安装量
4
周安装量
#53958
全站排名
安装命令
npx skills add https://github.com/rudrankriyam/asc-skills --skill asc-wall-submit
Agent 安装分布
claude-code
4
codex
4
opencode
3
github-copilot
3
kimi-cli
3
gemini-cli
3
Skill 文档
asc wall submit
Use this skill to add or update a Wall of Apps entry without introducing new CLI surface area.
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
Required inputs
Collect and confirm all fields before running commands:
app: app namelink: app URL (http/https, usually App Store URL)creator: GitHub handle or creator nameplatform: comma-separated labels (for example:iOS,macOS)
If any value is missing, ask for it first.
Submission workflow
- Run commands from the
App-Store-Connect-CLIrepository root. - 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.
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.
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"