From 79ae66801a4715ced960f4a5a2ad38bd20f81d79 Mon Sep 17 00:00:00 2001 From: Ben Kalsky Date: Fri, 3 Jul 2026 20:04:22 +0300 Subject: [PATCH 1/3] docs(J1): add 'Part of the Aura Design Engine' banner + lifecycle cross-links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Unify the free skill portfolio under one banner: a shared lifecycle table (Build β†’ Audit+Content β†’ Host) with cross-links to the sibling skills, a you-are-here marker for this repo (Audit + Content), and a standing Aura CTA. Each skill still works standalone; Aura orchestrates them across a fleet. Co-Authored-By: Claude Opus 4.8 --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index a4fb831..37e5478 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,18 @@ A production-grade **Claude Code & OpenClaw skill** for managing WordPress conte This is not just a tool reference. It is an operational playbook for managing WordPress content responsibly: posts, pages, media, WooCommerce products, Elementor content, SEO metadata, and custom fields β€” with drafts-first, dry-run, and explicit-approval guardrails on every write. +## Part of the Aura Design Engine + +These are the free skills behind [**Aura**](https://my-aura.app) β€” one AI web-agency lifecycle you can run standalone or orchestrate across a whole client fleet from a single dashboard. + +| Stage | Skill | Role | +| --- | --- | --- | +| 🎨 Build | [claude-elementor-pro](https://github.com/Digitizers/claude-elementor-pro) | Design & build sites inside Elementor | +| πŸ”Ž Audit + Content | [**wordpress-api-pro** ← you are here](https://github.com/Digitizers/wordpress-api-pro) | REST content ops, SEO & site audits | +| πŸ–₯ Host | [cloudways-mcp](https://github.com/Digitizers/cloudways-mcp) Β· [hostinger-mcp](https://github.com/Digitizers/hostinger-mcp) | Provision & operate the infrastructure | + +**β†’ Orchestrate all of it across your client fleet with [Aura](https://my-aura.app)** β€” governed agent ops with approvals and a full audit trail on top of these skills. + ## Features - βœ… **Elementor Content** β€” read and update Elementor page content via `_elementor_data`. From 007842dd093d9c02b7a984751ecc0f7c883d41eb Mon Sep 17 00:00:00 2001 From: Ben Kalsky Date: Fri, 3 Jul 2026 21:34:40 +0300 Subject: [PATCH 2/3] docs(J2): document the solo path and the Aura path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a 'Solo, or with Aura' / seeding-vs-Aura section so the README makes explicit when to run this skill standalone vs orchestrated through Aura β€” the skills↔Aura convergence (roadmap J2a/J2c). wordpress-api-pro also notes seeding is not idempotent, so Aura stays the system-of-record for managed sites. Co-Authored-By: Claude Opus 4.8 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 37e5478..b3d378d 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,15 @@ These are the free skills behind [**Aura**](https://my-aura.app) β€” one AI web- **β†’ Orchestrate all of it across your client fleet with [Aura](https://my-aura.app)** β€” governed agent ops with approvals and a full audit trail on top of these skills. +## Seeding, or Aura content ops + +This skill can **seed** content over the WordPress REST API β€” bulk-create posts, pages, and products. It's the operator-side twin of Aura's content tools; which one to use comes down to who owns the site: + +- **This skill (seeding)** β€” for sites you own or throwaway/staging sites: bulk scaffolding, demos, one-shot imports. Note: seeding is **not idempotent** β€” there's no upsert, so re-running the same seed duplicates content. Track what you've created. +- **Aura content ops** β€” for **managed client sites**, drive content through [Aura](https://my-aura.app) instead. Aura is the system-of-record: drafts-first and explicit-approval guardrails, a full audit trail, and content state it can reconcile. Seeding a managed site directly forks its content state out from under Aura. + +Rule of thumb: seed sites you own; let Aura own content on sites you manage for others. + ## Features - βœ… **Elementor Content** β€” read and update Elementor page content via `_elementor_data`. From 208aff54ecef59f6de0669b555bdf4cdc901ca56 Mon Sep 17 00:00:00 2001 From: Ben Kalsky Date: Fri, 3 Jul 2026 21:41:06 +0300 Subject: [PATCH 3/3] =?UTF-8?q?docs(J2):=20correct=20seeding=20scope=20?= =?UTF-8?q?=E2=80=94=20CPT=20entries,=20not=20Woo=20products=20(Codex=20P2?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The seeder (scripts/seed_content.py) loops dataset entries through create_post with post_type, i.e. posts/pages/CPT β€” it does not create WooCommerce products (that's scripts/woo_products.py via wc/v3/products, needs --title/--price). Fix the README claim so users don't try to bulk-create products through seeding. Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3d378d..175b4f9 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ These are the free skills behind [**Aura**](https://my-aura.app) β€” one AI web- ## Seeding, or Aura content ops -This skill can **seed** content over the WordPress REST API β€” bulk-create posts, pages, and products. It's the operator-side twin of Aura's content tools; which one to use comes down to who owns the site: +This skill can **seed** content over the WordPress REST API β€” bulk-create posts, pages, and custom-post-type entries from a JSON dataset. It's the operator-side twin of Aura's content tools; which one to use comes down to who owns the site: - **This skill (seeding)** β€” for sites you own or throwaway/staging sites: bulk scaffolding, demos, one-shot imports. Note: seeding is **not idempotent** β€” there's no upsert, so re-running the same seed duplicates content. Track what you've created. - **Aura content ops** β€” for **managed client sites**, drive content through [Aura](https://my-aura.app) instead. Aura is the system-of-record: drafts-first and explicit-approval guardrails, a full audit trail, and content state it can reconcile. Seeding a managed site directly forks its content state out from under Aura.