How this skill is triggered — by the user, by Claude, or both
Slash command
/aidan-salesforce-skills:salesforce-lwcThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. **Read project config** — Get `sourceApiVersion` from `sfdx-project.json` for the component's `-meta.xml` file.
Read project config — Get sourceApiVersion from sfdx-project.json for the component's -meta.xml file.
Write the component — Create the JS, HTML, and meta.xml files following code-guidance.md.
Check IDE diagnostics — Use mcp__ide__getDiagnostics on new files. Fix errors and warnings before proceeding.
Static analysis
sf code-analyzer run --target <path-to-component> --view table
Address violations before proceeding.
Write Jest tests (if needed) — See test-guidance.md for when tests are warranted.
Run tests locally (if applicable)
npm run test:unit -- --testPathPattern=<componentName>
Deploy
sf project deploy start --source-dir <path-to-component>
The task is complete when the component works in the org.
npx claudepluginhub aquivalabs/aidan-user-claude --plugin aidan-salesforce-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.