Add App Store Connect domain skill#391
Open
gorikfr wants to merge 1 commit into
Open
Conversation
Documents how to drive appstoreconnect.apple.com via browser-harness: - _architecture.md: the two-eras UI (modern SPA with shadow-DOM nav vs. legacy WebObjects iframe), shadow-root deep-walk, and the multi-tab targeting pattern (Target.getTargets -> js(target_id=...)). - promo-codes.md: minting promo codes through the legacy iframe — the optimistic remaining-counter vs. authoritative History tab, the 100/version quota clamp, the styled span.itc-checkbox agreement, and scraping codes from the View-Codes modal DOM. - pricing-and-availability.md: reading per-storefront prices, Apple's auto-equalized outliers, and verifying the 174/175 "availability never set up" trap after release. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a domain skill for
appstoreconnect.apple.comunderagent-workspace/domain-skills/, capturing how to drive ASC reliably via browser-harness. Three files:_architecture.md— the durable gotchas that apply across ASC pages:cdp("Target.getTargets")→js(..., target_id=...)/Target.activateTarget.promo-codes.md— minting one-time-purchase promo codes (no API exists; iframe-only):span.itc-checkboxwhose hidden input may not trip the enable logic.[A-Z0-9]{12}) — no file download needed.pricing-and-availability.md— reading per-storefront prices (Apple's auto-equalized non-base outliers are normal), and verifying the 174/175 "availability never affirmatively set up" trap after release.Notes
BH_DOMAIN_SKILLS=1.Summary by cubic
Adds a new domain skill for
appstoreconnect.apple.comthat documents reliable browser-harness control across modern SPA pages and legacy WebObjects iframes. Clarifies multi-tab targeting, shadow DOM navigation, and DOM-based actions to reduce flaky coordinate clicks.agent-workspace/domain-skills/appstoreconnect.apple.com/with_architecture.md,promo-codes.md, andpricing-and-availability.md._architecture.md: explains SPA vs. iframe pages, shadow DOM deep-walk, and pinning the correct tab viaTarget.getTargets+js(..., target_id=...).promo-codes.md: end-to-end minting in the legacy iframe; warns about the optimistic counter; uses History tab as source of truth; shows DOM scraping of codes.pricing-and-availability.md: reading per-storefront prices (auto-equalization is normal) and verifying availability is set for all 175 regions post-release.BH_DOMAIN_SKILLS=1; assumes a pre-auth session and stops at Apple ID/2FA prompts.Written for commit a9e5bc8. Summary will update on new commits. Review in cubic