Agent skill · Security

asc-apple-ads

Use when managing Apple Ads with asc, including auth, org lookup, campaigns, ad groups, ads, keywords, reports, raw API calls, and safe live testing.

rorkaigithub.com/rorkaiGitHub ↗
claude-codeMIT
Install
npx skills add rorkai/app-store-connect-cli-skills --skill asc-apple-ads --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/asc-apple-ads/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 948
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# asc Apple Ads Use this skill when a task involves Apple Ads or `asc ads`. ## Ground Rules - Run `asc ads --help` or the specific subgroup help before scripting a command. - Apple Ads auth is separate from App Store Connect auth. `asc auth login` does not configure `asc ads`. - Use JSON output for automation: `--output json`. - Most commands need an org ID. Prefer `--org` for one-off commands and `ASC_ADS_ORG_ID` for a scoped session. - Never guess payload fields. Use Apple Ads request JSON in a file and pass it with `--file`. - Do not mutate a live account until the user has named the org and approved the resource type. Prefer read-only checks first. ## Auth Stored profile: ```bash asc ads auth login \ --name "Marketing" \ --client-id "$ASC_ADS_CLIENT_ID" \ --team-id "$ASC_ADS_TEAM_ID" \ --key-id "$ASC_ADS_KEY_ID" \ --private-key "$ASC_ADS_PRIVATE_KEY_PATH" \ --org "$ASC_ADS_ORG_ID" \ --network ``` Environment auth: ```bash export ASC_ADS_CLIENT_ID="SEARCHADS_CLIENT_ID" export ASC_ADS_TEAM_ID="SEARCHADS_TEAM_ID" export ASC_ADS_KEY_ID="KEY_ID" export ASC_ADS_PRIVATE_KEY_PATH="$HOME/.asc/apple-ads-private-key.pem" export ASC_ADS_ORG_ID="123456" ``` Short-lived token auth: ```bash e

What's inside
Steps it walks through
  1. Ground Rules
  2. Auth
  3. Org Resolution
  4. Read Workflows
  5. Mutating Workflows
  6. Raw API
  7. Live Test Checklist
Commands it runs
asc ads auth login \
export ASC_ADS_CLIENT_ID="SEARCHADS_CLIENT_ID"
export ASC_ADS_TEAM_ID="SEARCHADS_TEAM_ID"
export ASC_ADS_KEY_ID="KEY_ID"
export ASC_ADS_PRIVATE_KEY_PATH="$HOME/.asc/apple-ads-private-key.pem"
export ASC_ADS_ORG_ID="123456"
export ASC_ADS_ACCESS_TOKEN="ACCESS_TOKEN"
asc ads auth status --validate --output json
asc ads auth doctor --output json
asc ads me view --output json
More from app-store-connect-cli-skills
All skills →
About this skill
What does the asc-apple-ads skill do?

Use when managing Apple Ads with asc, including auth, org lookup, campaigns, ad groups, ads, keywords, reports, raw API calls, and safe live testing.

How do I install it?

Run `npx skills add rorkai/app-store-connect-cli-skills --skill asc-apple-ads --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From rorkai/app-store-connect-cli-skills, a repository with 948 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going