Elementor ops and data
Skill randhoy/agent-skills-pack/.agent/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
1.6 KB, 330 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
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
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.