Elementor ops and data
Skill randhoy/agent-skills-pack/skills/wp/elementor-ops-and-data
npx -y skills add randhoy/agent-skills-pack --skill elementor-ops-and-dataAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run safe Elementor content operations in live or staging environments. Use for backup-first meta changes, scoped WP-CLI edits, template cloning, cache refresh, and verification loops.
SKILL.md
2.4 KB, 551 tokens by cl100k_base, as published. Nobody here has run it
Elementor Ops And Data
Core (Universal)
Trigger Scope
Use this skill when operating on persisted Elementor content:
- bulk text/URL edits
_elementor_dataand related meta operations- template clone/apply workflows
- import/export integrity checks
Workflow
- Scope changes.
- identify target post IDs and exact keys/tables
- Create rollback artifacts.
- backup relevant meta before writes
- Run controlled mutation.
- dry-run first
- execute scoped updates
- Refresh generated state.
- flush Elementor CSS/cache artifacts
- Verify outcome.
- editor load
- frontend render
- metadata sanity
Verification Loop
Run this sequence for every non-trivial mutation:
- backup snapshot created
- dry-run reports expected blast radius
- write operation executed with scoped target
- cache/CSS regenerated
- editor and frontend parity verified
Guardrails
- Never run broad replacements without explicit scope.
- Never mutate Elementor meta without backup.
- Do not treat
_elementor_dataas unstructured text. - Keep rollback artifacts until acceptance.
- Keep data ops and structural widget refactors in separate passes.
Minimal Example
Bash / Linux / macOS:
wp post meta get <id> _elementor_data > backup-<id>.json
wp search-replace "Old" "New" wp_postmeta --include-columns=meta_value --dry-run --precise
wp search-replace "Old" "New" wp_postmeta --include-columns=meta_value --precise
wp elementor flush-css
PowerShell / Windows:
# Backup meta
$backupName = "backup-$(Get-Date -Format 'yyyyMMdd-HHmm')-$id.json"
wp post meta get $id _elementor_data | Out-File -FilePath $backupName -Encoding UTF8
# Dry-run (review what will change)
wp search-replace "Old" "New" wp_postmeta --include-columns=meta_value --dry-run --precise
# Execute (provide explicit yes flag)
wp search-replace "Old" "New" wp_postmeta --include-columns=meta_value --precise
# Refresh cache
wp elementor flush-css
Scope verification (before mutations):
# Count matching rows
$matchCount = wp db query "SELECT COUNT(*) as cnt FROM wp_postmeta WHERE meta_key='_elementor_data' AND meta_value LIKE '%Old%'" --skip-column-names
Write-Host "Will affect ~$matchCount rows. Review backup first."
What ships with it: 1 file
268 B alongside SKILL.md
agents/
- openai.yaml268 B
Gives 0 of the 12 instructions most ship operate skills give in 551 tokens
Counted across 779 of the 1,178 authors here whose files we hold, read 2026-08-07
- Document a rollback plan before deploymentin 41 of 779, across 22 files
- Update the changelogin 21 of 779, across 19 files
- Run the test suitein 20 of 779
- Create an annotated git tagin 20 of 779
- Clean up feature flags after full rolloutin 18 of 779, across 10 files
- Verify deployment health after launchin 18 of 779, across 10 files
- Test both feature flag statesin 17 of 779, across 9 files
- Verify the working tree is cleanin 17 of 779
- Make database migrations backward-compatiblein 16 of 779, across 8 files
- Set up error monitoring before launchin 15 of 779, across 7 files
- Monitor metrics at each rollout stagein 14 of 779, across 5 files
- Create a GitHub releasein 14 of 779
Said here and by no other author read
- Identify target IDs and exact keys before changes
- Back up relevant meta before writes
- Run a dry-run before executing scoped updates
- Execute scoped updates only
- Flush cache and CSS artifacts after writes
- Verify editor load after mutation
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.