commerce-b2b-open-code…
Integrate Salesforce B2B Commerce open source components from GitHub into B2B Commerce stores. Use when users mention \"integrate open code components\",…
Use when running Salesforce Lightning Preview for an app or a single LWC component to extract the runtime DOM for inspection. TRIGGER when the user says \"preview an LWC locally\", \"run sf lightning dev\", \"launch Local Dev\", \"inspect a component's shadow DOM at runtime\",
$ npx -y skills add forcedotcom/afv-library --skill experience-lwc-runtime-observe --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/experience-lwc-runtime-observeContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when running Salesforce Lightning Preview for an app or a single LWC component to extract the runtime DOM for inspection. TRIGGER when the user says \"preview an LWC locally\", \"run sf lightning dev\", \"launch Local Dev\", \"inspect a component's shadow DOM at runtime\",
name: experience-lwc-runtime-observe
description: "Use when running Salesforce Lightning Preview for an app or a single LWC component to extract the runtime DOM for inspection. TRIGGER when the user says \"preview an LWC locally\", \"run sf lightning dev\", \"launch Local Dev\", \"inspect a component's shadow DOM at runtime\", \"grab rendered HTML from a live preview\", \"troubleshoot what actually renders versus the template\", \"set up Salesforce Live Preview plugin\", \"lightning preview\", \"local dev server\", or \"extract runtime DOM\". DO NOT TRIGGER when the user is authoring or editing LWC source code (use experience-lwc-generate) or reviewing component code statically without running it."
metadata:
version: "1.0"
domains: ["Experience", "Developer Experience"]
cliTools:
- tool: ["python3"]
semver: ">=3.0.0"
- tool: ["sf"]
semver: ">=2.0.0"
relatedSkills:
- experience-lwc-generate<!-- adk-managed-skill -->
Guides the agent through two sequential jobs that typically run together:
1. **Start a Lightning Preview session** with the Salesforce CLI so an LWC app or component renders in a local dev environment. 2. **Navigate to that preview URL and extract the runtime DOM subtree** so the agent (or user) can reason about what actually rendered.
Preview is the prerequisite for DOM inspection. Keep them in this order.
(`sf lightning dev app` / `sf lightning dev component`).
— for a diff, a screenshot pipeline, or to reason about shadow DOM.
a shadow-DOM misunderstanding handled in Step 2.
(Playwright, Puppeteer, Chrome DevTools Protocol — whatever is wired up).
---
Ask the user (or infer from the request) whether the scope is **app** or **component**.
Ask the user for (or infer from the request) the org alias the preview should target. Run the bundled verification script with that alias and surface any error it emits — do not re-invoke `sf version` / `sf plugins` / `sf org display` in prose. The script checks CLI presence, `@salesforce/plugin-lightning-dev` installation, and that the specific target alias is authenticated and Connected, and exits nonzero with an actionable message on failure:
"<skill_dir>/scripts/verify-toolchain.sh" <orgAlias>
If it reports that the target alias is not authenticated or not Connected, direct the user to [Enable Local Dev](https://developer.salesforce.com/docs/platform/lwc/guide/get-started-test-components.html#enable-local-dev) and have them run `sf org login web --alias <orgAlias>`, then re-run the verification script before proceeding.
# For app scope sf lightning dev app --help # For component scope sf lightning dev component --help
Note required vs optional flags. If a required flag is ambiguous, ask the user before running.
Prefix every preview command with `OPEN_BROWSER=false` — the CLI opens a browser window by default, which we do **not** want when an agent is driving. (This env var is undocumented in `--help`; rely on it unless the user explicitly asks for a browser window.)
| Scope | Command | |-------------|---------------------------------------------------------------------------------------| | `app` | `OPEN_BROWSER=false sf lightning dev app -o <orgAlias> -n <appName> -t desktop` | | `component` | `OPEN_BROWSER=false sf lightning dev component -o <orgAlias> -n <componentName>` |
When the preview is up, capture the URL and log it in exactly this format:
Lightning Preview running at URL: <URL>
If any sub-step fails, stop and surface the error to the user — don't try to paper over auth or plugin-install problems.
---
Only run this step once Step 1 has produced a live preview URL.
The front-door URL returned by `sf org open --url-only --json` contains a short-lived OTP that authenticates the session. **Never run `sf org open` directly — its output would land in the agent tool-output stream and leak an auth token into the transcript, violating agent-safety standard S1.** The bundled helper is the *only* supported way to obtain the URL: it runs `sf org open` internally with stdout redirected into a `chmod 600` tempfile and stderr suppressed, so no URL fragment or token substring ever reaches agent context.
Instead, use the bundled helper script, which writes the URL to a `chmod 600` tempfile and prints only `export` assignments (no token material). Capture the helper output first so a nonzero exit status aborts the caller — `eval "$(...)"` alone masks failures, letting the agent proceed with an unset `$FRONTDOOR_URL_FILE`:
frontdoor_env="$("<skill_dir>/scripts/open-frontdoor.sh" <orgAlias> <previewUrl>)" || exit 1
eval "$frontdoor_env"The helper suppresses `sf` and `python3` stderr as well as stdout, so partial URLs and progress noise never reach the agent transcript.
The browser driver must: 1. Read the URL from `$FRONTDOOR_URL_FILE`. 2. Navigate to it to establish a session. 3. Delete the tempfile immediately after use. 4. **Never `cat` or otherwise echo th
This repository provides a curated collection of Salesforce agent skills for building applications.
Repo: forcedotcom/afv-library
Integrate Salesforce B2B Commerce open source components from GitHub into B2B Commerce stores. Use when users mention \"integrate open code components\",…
Replace OOTB (out-of-the-box) B2B Commerce components with open source equivalents in site metadata content.json files, or look up the equivalent open code…
Use this skill to diagnose and resolve what blocks a DevOps Center promotion of a work item's feature branch: Git merge conflicts and deployment failures.…
Use this skill to manage the full lifecycle of a DevOps Center pipeline — list all pipelines, get a single pipeline's details, create a new pipeline linked to…
Analyzes DevOps Center test failures and Code Analyzer violations in plain language — failure category, offending file/class/method/line, rule violated, fix…
Configures DevOps Center pipeline testing infrastructure: enables a test provider so its suites become available, re-syncs a configured provider to pull in new…