external-consumers
Installation
SKILL.md
External Consumers
Other repos consume APIs from this monorepo's extensions. Some are private.
- Exported extension APIs = public contracts
- Remove/change field, method, behavior = breaking
- Add field = non-breaking
- Cannot grep this monorepo alone — must check external repos
- Consumers version-gate (
semver.satisfies) — major bump alone insufficient
On-demand validation via gh CLI
# search specific repo
gh api -X GET "search/code?q=SYMBOL+repo:forcedotcom/REPO&per_page=20" \
--jq '.items[] | "\(.path)"'
# read file from private repo
gh api repos/forcedotcom/REPO/contents/PATH --jq '.content' | base64 -d