mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-04 22:33:31 +08:00
Split widget-rendition.md: extract meta directives (forEach/forItem/if) into a focused references/widget-meta-directives.md so the iteration and conditional rules can grow independently. widget-rendition.md now owns workflow, layout, and styling. Layout primitives are anchored on the base-lightning-types tile/* schemas. Styling principles are anchored on the AXL playground tutorial 02 (button variants), Salesforce HIG conventions, and the schemas' own enums. Add three widget renderer examples adapted from playground tutorials 04/05/07: single-object profile (root binding), list-of-products (root forEach + nested forEach over a per-item array), and conditional-rendering (if on the meta object, including if + forEach combined). Tutorials are wired into workflow step 5 and the Reference File Index. Slim SKILL.md: collapse five overlapping widget-routing instructions into a single Step 4 fork; standardize trigger keywords on widget / mosaic / fragment; drop the structurally-wrong "STOP before step 1" header (widget needs schema.json from steps 1-2 first); add a Reference File Index pointing at widget-rendition.md. Tighten the conditional-rendering rule to require a strict lightning__booleanType schema property. Strings, numbers, and nullable fields are not supported as if expressions. gitignore: ignore .agents/, .claude/, skills-lock.json (skills CLI install artifacts) and .claude/ (per-user Claude Code state).
255 lines
2.9 KiB
Plaintext
255 lines
2.9 KiB
Plaintext
# Salesforce & SFDX
|
|
.sfdx/
|
|
.sf/
|
|
.localdevserver/
|
|
.salesforce/
|
|
deploy/
|
|
.vscode/settings.json
|
|
.vscode/extensions.json
|
|
|
|
# Salesforce DX
|
|
**/*.dup
|
|
.sfdx/
|
|
.localdevserver/
|
|
|
|
# LWC Jest
|
|
**/__tests__/**
|
|
**/.eslintrc.json
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Diagnostic reports
|
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directories
|
|
coverage/
|
|
*.lcov
|
|
.nyc_output
|
|
lib-cov
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
bower_components/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional stylelint cache
|
|
.stylelintcache
|
|
|
|
# Microbundle cache
|
|
.rpt2_cache/
|
|
.rts2_cache_cjs/
|
|
.rts2_cache_es/
|
|
.rts2_cache_umd/
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn
|
|
.yarn-integrity
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
.pnp.*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
*.mo
|
|
*.pot
|
|
*.pyc
|
|
.python-version
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# React sample templates: track internal `src/lib` utility modules
|
|
# These rules override the global `lib/` ignore in the Python section above.
|
|
!samples/**/lib/
|
|
!samples/**/lib/**
|
|
|
|
# IDEs and Editors
|
|
.vscode/
|
|
!.vscode/extensions.json
|
|
!.vscode/launch.json
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.history/
|
|
.ionide/
|
|
|
|
# OS Files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.#*
|
|
\#*#
|
|
*.bak
|
|
*.orig
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Package managers
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.back
|
|
*-backup.*
|
|
|
|
# Compiled output
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.so
|
|
|
|
# Archives
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# User-specific files
|
|
scratch.txt
|
|
notes.txt
|
|
TODO.txt
|
|
.cursor/
|
|
.copilot/
|
|
|
|
# Test output
|
|
test-results/
|
|
playwright-report/
|
|
test-output/
|
|
|
|
# Build artifacts
|
|
out/
|
|
target/
|
|
bin/
|
|
obj/
|
|
|
|
# Sync script manifest (not created by script)
|
|
skills/.synced-template-skills.json
|
|
|
|
# Local configuration
|
|
config.local.*
|
|
*.local.json
|
|
local-settings.json
|
|
|
|
# Secrets and credentials
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
*.crt
|
|
secrets.json
|
|
credentials.json
|
|
service-account.json
|
|
|
|
# Deployment artifacts
|
|
deploy-*.log
|
|
deployment_log.txt
|
|
validation_results.json
|
|
|
|
# Skills CLI install artifacts (regenerated by `npx skills add`)
|
|
.agents/
|
|
skills-lock.json
|
|
|
|
# Claude Code local state (per-user)
|
|
.claude/
|