claude-plugin-wordpress-manager 2.1.1 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +2 -2
- package/CHANGELOG.md +30 -0
- package/agents/wp-content-strategist.md +30 -0
- package/agents/wp-monitoring-agent.md +50 -0
- package/docs/GUIDE.md +116 -28
- package/docs/plans/2026-02-28-wcop-strategic-assessment.md +220 -0
- package/hooks/hooks.json +9 -0
- package/package.json +6 -3
- package/servers/wp-rest-bridge/build/tools/index.d.ts +119 -0
- package/servers/wp-rest-bridge/build/tools/index.js +3 -0
- package/servers/wp-rest-bridge/build/tools/wc-webhooks.d.ts +129 -0
- package/servers/wp-rest-bridge/build/tools/wc-webhooks.js +142 -0
- package/servers/wp-rest-bridge/build/types.d.ts +12 -0
- package/skills/wordpress-router/references/decision-tree.md +7 -3
- package/skills/wp-content/SKILL.md +3 -0
- package/skills/wp-content-repurposing/SKILL.md +96 -0
- package/skills/wp-content-repurposing/references/content-atomization.md +117 -0
- package/skills/wp-content-repurposing/references/email-newsletter.md +136 -0
- package/skills/wp-content-repurposing/references/platform-specs.md +80 -0
- package/skills/wp-content-repurposing/references/social-formats.md +169 -0
- package/skills/wp-content-repurposing/scripts/repurposing_inspect.mjs +140 -0
- package/skills/wp-headless/SKILL.md +1 -0
- package/skills/wp-monitoring/SKILL.md +12 -2
- package/skills/wp-monitoring/references/fleet-monitoring.md +160 -0
- package/skills/wp-monitoring/scripts/monitoring_inspect.mjs +54 -1
- package/skills/wp-webhooks/SKILL.md +107 -0
- package/skills/wp-webhooks/references/integration-recipes.md +176 -0
- package/skills/wp-webhooks/references/payload-formats.md +134 -0
- package/skills/wp-webhooks/references/webhook-security.md +147 -0
- package/skills/wp-webhooks/references/woocommerce-webhooks.md +129 -0
- package/skills/wp-webhooks/references/wordpress-core-webhooks.md +162 -0
- package/skills/wp-webhooks/scripts/webhook_inspect.mjs +157 -0
- package/skills/wp-woocommerce/SKILL.md +1 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wordpress-manager",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Unified WordPress management plugin for Claude Code. Orchestrates Hostinger MCP (infrastructure), WP REST API bridge (
|
|
3
|
+
"version": "2.2.1",
|
|
4
|
+
"description": "Unified WordPress management plugin for Claude Code. Orchestrates Hostinger MCP (infrastructure), WP REST API bridge (85 tools incl. WooCommerce + Multisite + Webhooks), and WordPress.com MCP (hosted sites) with 11 specialized agents, 30 skills, and security hooks. Includes fleet monitoring, content repurposing, webhook propagation, site monitoring (uptime, performance baseline, security scanning, content integrity, alerting), CI/CD pipeline automation (GitHub Actions, GitLab CI, Bitbucket), WordPress Multisite network management, WooCommerce store management, local dev environment support, development, testing, security, i18n, accessibility, headless, and operations.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "vinmor",
|
|
7
7
|
"email": "morreale.v@gmail.com"
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the WordPress Manager plugin for Claude Code.
|
|
4
4
|
|
|
5
|
+
## [2.2.1] - 2026-02-28
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **GUIDE.md**: aggiornamento completo da v2.1.0 a v2.2.0 — documenta fleet monitoring, content repurposing, webhook propagation (19 scenari, 30 skill, 85 tool, router v9, +6 termini glossario)
|
|
9
|
+
|
|
10
|
+
## [2.2.0] - 2026-02-28
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Fleet monitoring** — cross-site health assessment for all configured WordPress sites
|
|
14
|
+
- New reference file: `skills/wp-monitoring/references/fleet-monitoring.md` (fleet iteration, cross-site patterns, fleet baselines, site grouping, scheduling, P0 escalation)
|
|
15
|
+
- Detection script updated: `detectFleetConfiguration()` checks WP_SITES_CONFIG and sites.json for multi-site fleet
|
|
16
|
+
- Agent updated: Procedure 7 (Fleet Monitoring) + Fleet Report Template in `wp-monitoring-agent`
|
|
17
|
+
|
|
18
|
+
- **Content repurposing skill** (`wp-content-repurposing`) — transform WordPress content into multi-channel outputs
|
|
19
|
+
- 4 reference files: social-formats (Twitter/LinkedIn/Instagram/Facebook templates), email-newsletter (digest/drip/subject lines), content-atomization (pillar→atoms workflow, repurposing matrix), platform-specs (character limits, image dimensions, posting frequency)
|
|
20
|
+
- Detection script: `repurposing_inspect.mjs` — detects social plugins, email plugins, content volume
|
|
21
|
+
- Agent updated: `wp-content-strategist` now includes Content Repurposing Workflow and repurposing example
|
|
22
|
+
|
|
23
|
+
- **Webhook propagation skill** (`wp-webhooks`) — WordPress outbound webhook configuration and management
|
|
24
|
+
- 5 reference files: woocommerce-webhooks (API, topics, MCP tools), wordpress-core-webhooks (mu-plugin, action hooks), integration-recipes (Zapier/Make/n8n/Slack/CDN), payload-formats (JSON payloads, WC examples), webhook-security (HMAC-SHA256, signatures, rate limiting)
|
|
25
|
+
- Detection script: `webhook_inspect.mjs` — detects WC webhooks, mu-plugin webhooks, webhook plugins, wp-config constants
|
|
26
|
+
- 4 new MCP tools via WP REST Bridge: `wc_list_webhooks`, `wc_create_webhook`, `wc_update_webhook`, `wc_delete_webhook`
|
|
27
|
+
- `WCWebhook` TypeScript interface added to types.ts
|
|
28
|
+
- Safety hook for `wc_delete_webhook` (PreToolUse prompt confirmation)
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- Router decision-tree.md upgraded to v9 with fleet, webhook, and content repurposing keywords and routing
|
|
32
|
+
- Cross-references added: `wp-content` → wp-content-repurposing, `wp-headless` → wp-webhooks, `wp-woocommerce` → wp-webhooks
|
|
33
|
+
- Plugin now has 30 skills, 11 agents, and 85 MCP tools
|
|
34
|
+
|
|
5
35
|
## [2.1.1] - 2026-02-28
|
|
6
36
|
|
|
7
37
|
### Changed
|
|
@@ -24,6 +24,13 @@ description: |
|
|
|
24
24
|
assistant: "I'll use the wp-content-strategist agent to set up the taxonomy structure."
|
|
25
25
|
<commentary>Taxonomy design impacts content architecture and SEO.</commentary>
|
|
26
26
|
</example>
|
|
27
|
+
|
|
28
|
+
<example>
|
|
29
|
+
Context: User wants to repurpose blog content for social media.
|
|
30
|
+
user: "Turn my latest blog posts into social media content"
|
|
31
|
+
assistant: "I'll use the wp-content-strategist agent to extract key insights from your posts and generate platform-specific social content."
|
|
32
|
+
<commentary>Content repurposing requires selecting source content and applying platform templates.</commentary>
|
|
33
|
+
</example>
|
|
27
34
|
model: inherit
|
|
28
35
|
tools: Read, Grep, Glob, Bash, WebFetch, WebSearch
|
|
29
36
|
---
|
|
@@ -147,6 +154,28 @@ Excerpt: [Meta description with keyword, under 160 chars]
|
|
|
147
154
|
- ALWAYS preserve existing SEO-optimized slugs when updating content
|
|
148
155
|
- ALWAYS check for duplicate slugs before creating new content
|
|
149
156
|
|
|
157
|
+
## Content Repurposing Workflow
|
|
158
|
+
|
|
159
|
+
When repurposing existing WordPress content into multi-channel formats:
|
|
160
|
+
|
|
161
|
+
1. **Select source content**: Use `list_content` to find recent/popular posts
|
|
162
|
+
- Filter by `orderby: "date"` for recent or by popularity metrics
|
|
163
|
+
- Prioritize evergreen content with broad appeal
|
|
164
|
+
2. **Extract key elements** from source post:
|
|
165
|
+
- Headline and hook
|
|
166
|
+
- 3-5 key insights or data points
|
|
167
|
+
- Quotable passages
|
|
168
|
+
- Statistics or results
|
|
169
|
+
- Call to action
|
|
170
|
+
3. **Apply platform templates** from `wp-content-repurposing` skill:
|
|
171
|
+
- Social formats: `references/social-formats.md`
|
|
172
|
+
- Email newsletter: `references/email-newsletter.md`
|
|
173
|
+
- Atomization: `references/content-atomization.md`
|
|
174
|
+
4. **Generate formatted outputs** per target channel
|
|
175
|
+
5. **Present all variants** to user for review before distribution
|
|
176
|
+
|
|
177
|
+
See the `wp-content-repurposing` skill for detailed templates and platform specifications.
|
|
178
|
+
|
|
150
179
|
## Multilingual Content
|
|
151
180
|
|
|
152
181
|
When creating content for multilingual sites:
|
|
@@ -164,3 +193,4 @@ When creating content for multilingual sites:
|
|
|
164
193
|
|
|
165
194
|
- **`wp-content` skill** — content lifecycle management, editorial workflows
|
|
166
195
|
- **`wp-i18n` skill** — internationalization and localization procedures
|
|
196
|
+
- **`wp-content-repurposing` skill** — content transformation for multi-channel distribution
|
|
@@ -24,6 +24,13 @@ description: |
|
|
|
24
24
|
assistant: "I'll use the wp-monitoring-agent to analyze performance metrics and compare with the baseline."
|
|
25
25
|
<commentary>Performance trend analysis requires collecting current metrics and comparing with historical data.</commentary>
|
|
26
26
|
</example>
|
|
27
|
+
|
|
28
|
+
<example>
|
|
29
|
+
Context: User wants to check all their WordPress sites at once.
|
|
30
|
+
user: "Run a health check across all my sites"
|
|
31
|
+
assistant: "I'll use the wp-monitoring-agent to perform a fleet-wide health assessment across all configured sites."
|
|
32
|
+
<commentary>Fleet monitoring requires iterating over all configured sites and aggregating findings.</commentary>
|
|
33
|
+
</example>
|
|
27
34
|
model: inherit
|
|
28
35
|
tools: Read, Grep, Glob, Bash, WebFetch, WebSearch
|
|
29
36
|
---
|
|
@@ -109,6 +116,23 @@ Run a full assessment to create a monitoring baseline:
|
|
|
109
116
|
4. Check robots.txt via WebFetch: verify no unexpected rules
|
|
110
117
|
5. Report content changes, spam levels, and SEO health
|
|
111
118
|
|
|
119
|
+
### Procedure 7: Fleet Monitoring
|
|
120
|
+
|
|
121
|
+
Run health assessments across all configured sites and generate a fleet-wide comparison:
|
|
122
|
+
|
|
123
|
+
1. **Enumerate sites**: Use `list_sites` to get all configured sites
|
|
124
|
+
2. **Iterate**: For each site:
|
|
125
|
+
a. `switch_site` to target the site
|
|
126
|
+
b. Run Procedures 3-6 (uptime, performance, security, content)
|
|
127
|
+
c. Record per-site metrics and findings
|
|
128
|
+
3. **Aggregate**: Combine per-site results into a fleet comparison table
|
|
129
|
+
4. **Cross-site pattern detection**:
|
|
130
|
+
- Same plugin vulnerability across multiple sites
|
|
131
|
+
- Correlated performance degradation (shared hosting, CDN issue)
|
|
132
|
+
- Identical outdated WordPress core versions
|
|
133
|
+
- Common configuration drift from baselines
|
|
134
|
+
5. **Generate fleet report** (see Fleet Report template below)
|
|
135
|
+
|
|
112
136
|
## Report Generation
|
|
113
137
|
|
|
114
138
|
After completing relevant procedures, generate a report following the templates in `references/reporting-templates.md`:
|
|
@@ -155,6 +179,31 @@ After completing relevant procedures, generate a report following the templates
|
|
|
155
179
|
3. [Third priority]
|
|
156
180
|
```
|
|
157
181
|
|
|
182
|
+
### Fleet Report Template
|
|
183
|
+
|
|
184
|
+
```
|
|
185
|
+
## Fleet Health Report
|
|
186
|
+
**Date:** [date] | **Sites:** [count] | **Scope:** [full / quick]
|
|
187
|
+
|
|
188
|
+
### Fleet Overview
|
|
189
|
+
| Site | Uptime | Performance | Security | Content | Overall |
|
|
190
|
+
|------|--------|-------------|----------|---------|---------|
|
|
191
|
+
| [site-1] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] |
|
|
192
|
+
| [site-2] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] | [✅/⚠️/❌] |
|
|
193
|
+
|
|
194
|
+
### Fleet Summary
|
|
195
|
+
- **Healthy sites:** X/N
|
|
196
|
+
- **Degraded sites:** X/N (list)
|
|
197
|
+
- **Critical sites:** X/N (list)
|
|
198
|
+
|
|
199
|
+
### Cross-Site Patterns
|
|
200
|
+
[findings or "No cross-site patterns detected"]
|
|
201
|
+
|
|
202
|
+
### Fleet Recommendations (Priority Order)
|
|
203
|
+
1. [Fleet-wide action]
|
|
204
|
+
2. [Site-specific action]
|
|
205
|
+
```
|
|
206
|
+
|
|
158
207
|
## Safety Rules
|
|
159
208
|
|
|
160
209
|
- **NEVER modify any site data** — this agent is strictly read-only
|
|
@@ -175,6 +224,7 @@ For issues found during monitoring:
|
|
|
175
224
|
| Content or SEO issues | `wp-content-strategist` agent |
|
|
176
225
|
| Plugin/deployment issues | `wp-deployment-engineer` agent |
|
|
177
226
|
| Infrastructure/hosting issues | `wp-site-manager` agent |
|
|
227
|
+
| Fleet-wide infrastructure issue | `wp-site-manager` agent (multi-site coordination) |
|
|
178
228
|
|
|
179
229
|
## Related Skills
|
|
180
230
|
|
package/docs/GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# WordPress Manager - Guida Completa per Utenti e Amministratori
|
|
2
2
|
|
|
3
|
-
**Versione:** 2.
|
|
3
|
+
**Versione:** 2.2.0
|
|
4
4
|
**Ultimo aggiornamento:** 2026-02-28
|
|
5
5
|
**Repository:** https://github.com/morrealev/wordpress-manager
|
|
6
6
|
|
|
@@ -57,6 +57,9 @@ WordPress Manager e un plugin per **Claude Code** (la CLI ufficiale di Anthropic
|
|
|
57
57
|
- **Amministrare Multisite**: sub-site, network plugin, Super Admin, domain mapping
|
|
58
58
|
- **Configurare CI/CD**: GitHub Actions, GitLab CI, Bitbucket Pipelines, quality gates, deploy automatico
|
|
59
59
|
- **Monitorare siti**: uptime, performance baseline, security scanning, content integrity, alerting
|
|
60
|
+
- **Fleet monitoring**: monitorare tutti i siti configurati con report comparativi cross-site
|
|
61
|
+
- **Riproporre contenuti**: trasformare post WordPress in social media, email, newsletter multi-canale
|
|
62
|
+
- **Gestire webhook**: configurare notifiche outbound WordPress verso servizi esterni (Zapier, Slack, CDN)
|
|
60
63
|
|
|
61
64
|
### Requisiti
|
|
62
65
|
|
|
@@ -80,7 +83,7 @@ WordPress Manager e un plugin per **Claude Code** (la CLI ufficiale di Anthropic
|
|
|
80
83
|
wordpress-manager plugin
|
|
81
84
|
/ | \
|
|
82
85
|
Hostinger MCP WP REST Bridge WordPress.com MCP
|
|
83
|
-
(119 tool) (
|
|
86
|
+
(119 tool) (85 tool) (~15 tool)
|
|
84
87
|
| | |
|
|
85
88
|
Infrastruttura Contenuti + Siti hosted
|
|
86
89
|
DNS, SSL, VPS Plugin, Utenti su WordPress.com
|
|
@@ -93,7 +96,7 @@ WordPress Manager e un plugin per **Claude Code** (la CLI ufficiale di Anthropic
|
|
|
93
96
|
### Componenti del Plugin
|
|
94
97
|
|
|
95
98
|
```
|
|
96
|
-
wordpress-manager/ # v2.
|
|
99
|
+
wordpress-manager/ # v2.2.0
|
|
97
100
|
+-- .claude-plugin/plugin.json # Manifest
|
|
98
101
|
+-- .mcp.json # Server MCP bundled
|
|
99
102
|
+-- LICENSE # MIT + GPL-2.0-or-later
|
|
@@ -112,7 +115,7 @@ wordpress-manager/ # v2.1.0
|
|
|
112
115
|
| +-- wp-monitoring-agent.md # Site monitoring read-only (v2.1.0)
|
|
113
116
|
+-- commands/ # 5 slash commands
|
|
114
117
|
| +-- wp-status.md / wp-deploy.md / wp-audit.md / wp-backup.md / wp-setup.md
|
|
115
|
-
+-- skills/ #
|
|
118
|
+
+-- skills/ # 30 skill totali
|
|
116
119
|
| +-- [OPERATIVE - 5 skill]
|
|
117
120
|
| +-- wp-deploy/ # Procedure deploy
|
|
118
121
|
| +-- wp-audit/ # Checklist audit
|
|
@@ -122,7 +125,7 @@ wordpress-manager/ # v2.1.0
|
|
|
122
125
|
| +-- [AMBIENTE LOCALE - 1 skill]
|
|
123
126
|
| +-- wp-local-env/ # Studio/LocalWP/wp-env
|
|
124
127
|
| +-- [SVILUPPO - 13 skill da WordPress/agent-skills]
|
|
125
|
-
| +-- wordpress-router/ # Router unificato
|
|
128
|
+
| +-- wordpress-router/ # Router unificato v9 (dev + local + ops + multisite + cicd + monitoring + webhooks + repurposing)
|
|
126
129
|
| +-- wp-project-triage/ # Auto-detect tipo progetto
|
|
127
130
|
| +-- wp-block-development/ # Blocchi Gutenberg
|
|
128
131
|
| +-- wp-block-themes/ # Temi a blocchi
|
|
@@ -141,13 +144,15 @@ wordpress-manager/ # v2.1.0
|
|
|
141
144
|
| +-- wp-i18n/ # Internazionalizzazione
|
|
142
145
|
| +-- wp-accessibility/ # WCAG 2.2 accessibilita
|
|
143
146
|
| +-- wp-headless/ # Architettura headless/decoupled
|
|
144
|
-
| +-- [E-COMMERCE + INFRASTRUTTURA -
|
|
147
|
+
| +-- [E-COMMERCE + INFRASTRUTTURA - 6 skill]
|
|
145
148
|
| +-- wp-woocommerce/ # WooCommerce store management (v1.8.0)
|
|
146
149
|
| +-- wp-multisite/ # Multisite network management (v1.9.0)
|
|
147
150
|
| +-- wp-cicd/ # CI/CD pipeline automation (v2.0.0)
|
|
148
|
-
| +-- wp-monitoring/ # Site monitoring e observability (v2.1.0)
|
|
149
|
-
+--
|
|
150
|
-
| +--
|
|
151
|
+
| +-- wp-monitoring/ # Site monitoring, fleet monitoring e observability (v2.1.0-v2.2.0)
|
|
152
|
+
| +-- wp-content-repurposing/ # Content repurposing multi-canale (v2.2.0)
|
|
153
|
+
| +-- wp-webhooks/ # Webhook propagation e integrazioni (v2.2.0)
|
|
154
|
+
+-- hooks/ # 7 hook di sicurezza
|
|
155
|
+
| +-- hooks.json # 5 prompt + 2 command
|
|
151
156
|
| +-- scripts/ # Script per hook command-type
|
|
152
157
|
+-- scripts/ # Utility
|
|
153
158
|
+-- servers/wp-rest-bridge/ # MCP Server custom (TypeScript)
|
|
@@ -329,6 +334,9 @@ WordPress Manager comprende richieste in linguaggio naturale. Ecco come formular
|
|
|
329
334
|
| Amministrare Multisite | "Crea un sub-site" / "Network activate plugin" / "Super Admin" |
|
|
330
335
|
| Configurare CI/CD | "Setup GitHub Actions" / "CI per il mio plugin" / "Deploy automatico" |
|
|
331
336
|
| Monitorare il sito | "Monitora il sito" / "Health report" / "Setup uptime check" |
|
|
337
|
+
| Fleet monitoring | "Monitora tutti i siti" / "Fleet health" / "Cross-site comparison" |
|
|
338
|
+
| Riproporre contenuti | "Riproponi il post per social" / "Newsletter dal blog" / "Atomizza contenuto" |
|
|
339
|
+
| Gestire webhook | "Configura webhook" / "Notifica Zapier" / "WooCommerce webhook" |
|
|
332
340
|
|
|
333
341
|
---
|
|
334
342
|
|
|
@@ -562,7 +570,9 @@ IDEAZIONE -> BOZZA -> REVISIONE -> OTTIMIZZAZIONE -> PUBBLICAZIONE -> MONITORAGG
|
|
|
562
570
|
|
|
563
571
|
**6 template disponibili**: Blog standard, Listicle, How-To Guide, Landing Page, About Page, Product Page
|
|
564
572
|
|
|
565
|
-
**
|
|
573
|
+
**Content repurposing** (v2.2.0): Trasforma contenuti WordPress in output multi-canale — social media post (Twitter/LinkedIn/Instagram/Facebook), email newsletter, drip sequence. Usa la skill `wp-content-repurposing` per template e regole per piattaforma.
|
|
574
|
+
|
|
575
|
+
**Skill correlata**: `wp-content`, `wp-i18n`, `wp-content-repurposing`
|
|
566
576
|
|
|
567
577
|
---
|
|
568
578
|
|
|
@@ -721,7 +731,7 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
721
731
|
| Ruolo | Gestione completa store WooCommerce |
|
|
722
732
|
| Attivazione | "Mostra gli ordini", "crea un prodotto", "report vendite", "coupon", "WooCommerce" |
|
|
723
733
|
|
|
724
|
-
**Capacita** (
|
|
734
|
+
**Capacita** (34 tool MCP via WP REST Bridge, namespace `wc/v3`):
|
|
725
735
|
|
|
726
736
|
| Area | Tool | Operazioni |
|
|
727
737
|
|------|------|-----------|
|
|
@@ -731,10 +741,11 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
731
741
|
| Coupons | 4 | Creazione coupon, marketing promozioni |
|
|
732
742
|
| Reports | 5 | Vendite, top seller, totali ordini/prodotti/clienti |
|
|
733
743
|
| Settings | 4 | Gateway pagamento, zone spedizione, tasse, system status |
|
|
744
|
+
| Webhooks | 4 | Lista, crea, aggiorna, elimina webhook WooCommerce (v2.2.0) |
|
|
734
745
|
|
|
735
746
|
**Prerequisiti**: WooCommerce attivo + Consumer Key/Secret configurati in `WP_SITES_CONFIG` (generare da WooCommerce > Settings > Advanced > REST API).
|
|
736
747
|
|
|
737
|
-
**Skill correlata**: `wp-woocommerce`
|
|
748
|
+
**Skill correlata**: `wp-woocommerce`, `wp-webhooks`
|
|
738
749
|
|
|
739
750
|
---
|
|
740
751
|
|
|
@@ -773,9 +784,9 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
773
784
|
|-----------|--------|
|
|
774
785
|
| Colore | Teal |
|
|
775
786
|
| Ruolo | Monitoring continuo del sito (read-only, non modifica nulla) |
|
|
776
|
-
| Attivazione | "Monitora il sito", "health report", "uptime check", "performance trend", "security scan periodico" |
|
|
787
|
+
| Attivazione | "Monitora il sito", "health report", "uptime check", "performance trend", "security scan periodico", "fleet health", "monitora tutti i siti" |
|
|
777
788
|
|
|
778
|
-
**5 aree di monitoraggio**:
|
|
789
|
+
**5 aree di monitoraggio + fleet**:
|
|
779
790
|
|
|
780
791
|
| Area | Cosa monitora |
|
|
781
792
|
|------|--------------|
|
|
@@ -784,8 +795,11 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
784
795
|
| Security | Plugin vulnerabilita, file integrity, utenti anomali, malware patterns |
|
|
785
796
|
| Content | Modifiche non autorizzate, broken links, spam comments, media integrity |
|
|
786
797
|
| Alerting | Threshold P0-P3, notifiche email/Slack/webhook, escalation |
|
|
798
|
+
| Fleet (v2.2.0) | Cross-site health comparison, fleet-wide patterns, per-site breakdown |
|
|
799
|
+
|
|
800
|
+
**Report disponibili**: Daily Health Summary, Weekly Performance, Monthly Security, Quarterly Trend, Executive Dashboard, Fleet Health Report (v2.2.0).
|
|
787
801
|
|
|
788
|
-
**
|
|
802
|
+
**Fleet monitoring** (v2.2.0): Itera su tutti i siti configurati (`list_sites` + `switch_site`), esegue le procedure di monitoring per ciascuno, aggrega i risultati in un report comparativo fleet con pattern cross-site (stessa vulnerabilita su piu siti, performance regression fleet-wide).
|
|
789
803
|
|
|
790
804
|
**Delegazione**: Quando rileva problemi, delega a agent specializzati:
|
|
791
805
|
- Sicurezza → `wp-security-auditor` + `wp-security-hardener`
|
|
@@ -858,11 +872,11 @@ Le skill di sviluppo provengono da due fonti:
|
|
|
858
872
|
|
|
859
873
|
- **13 skill community** integrate dal repository [WordPress/agent-skills](https://github.com/WordPress/agent-skills) (licenza GPL-2.0-or-later). Coprono blocchi, temi, plugin, endpoint REST, analisi statica, profiling e altro.
|
|
860
874
|
- **5 skill estese** (MIT) aggiunte in v1.6.0: testing, security, internazionalizzazione, accessibilita, headless.
|
|
861
|
-
- **
|
|
875
|
+
- **6 skill e-commerce + infrastruttura** (MIT) aggiunte in v1.8.0-v2.2.0: WooCommerce, Multisite, CI/CD, Monitoring, Content Repurposing, Webhooks.
|
|
862
876
|
|
|
863
877
|
### Il Router Unificato
|
|
864
878
|
|
|
865
|
-
La skill `wordpress-router` (
|
|
879
|
+
La skill `wordpress-router` (v9) e il punto d'ingresso per tutti i task WordPress. Classifica automaticamente il task in **otto categorie**: sviluppo, ambiente locale, operativo, multisite, CI/CD, monitoring, content repurposing, webhook.
|
|
866
880
|
|
|
867
881
|
```
|
|
868
882
|
Utente: "Crea un blocco custom per la gallery"
|
|
@@ -922,6 +936,22 @@ wordpress-router: TASK = operativo (monitoring)
|
|
|
922
936
|
wp-monitoring skill + wp-monitoring-agent agent
|
|
923
937
|
```
|
|
924
938
|
|
|
939
|
+
```
|
|
940
|
+
Utente: "Riproponi l'ultimo post del blog per i social media"
|
|
941
|
+
|
|
|
942
|
+
wordpress-router: TASK = operativo (content repurposing)
|
|
943
|
+
|
|
|
944
|
+
wp-content-repurposing skill + wp-content-strategist agent
|
|
945
|
+
```
|
|
946
|
+
|
|
947
|
+
```
|
|
948
|
+
Utente: "Configura un webhook WooCommerce per Zapier"
|
|
949
|
+
|
|
|
950
|
+
wordpress-router: TASK = operativo (webhook)
|
|
951
|
+
|
|
|
952
|
+
wp-webhooks skill + wp-site-manager agent
|
|
953
|
+
```
|
|
954
|
+
|
|
925
955
|
### Panoramica Skills di Sviluppo — Community (13)
|
|
926
956
|
|
|
927
957
|
| Skill | Si attiva quando... | Risorse |
|
|
@@ -954,20 +984,22 @@ Aggiunte in v1.6.0, queste skill coprono aree avanzate dello sviluppo WordPress.
|
|
|
954
984
|
|
|
955
985
|
**Cross-reference bidirezionali**: Le skill con agent dedicato contengono una sezione "Recommended Agent", e gli agent contengono "Related Skills". Questo garantisce che Claude attivi sia la conoscenza (skill) che l'esecutore (agent) appropriati.
|
|
956
986
|
|
|
957
|
-
### Panoramica Skills E-Commerce + Infrastruttura (
|
|
987
|
+
### Panoramica Skills E-Commerce + Infrastruttura (6)
|
|
958
988
|
|
|
959
|
-
Aggiunte in v1.8.0-v2.
|
|
989
|
+
Aggiunte in v1.8.0-v2.2.0, queste skill coprono e-commerce, multisite, CI/CD, monitoring, content repurposing e webhook.
|
|
960
990
|
|
|
961
991
|
| Skill | Si attiva quando... | Risorse | Agent dedicato |
|
|
962
992
|
|-------|---------------------|---------|----------------|
|
|
963
|
-
| `wp-woocommerce` | "prodotti", "ordini", "WooCommerce", "coupon", "report vendite" |
|
|
993
|
+
| `wp-woocommerce` | "prodotti", "ordini", "WooCommerce", "coupon", "report vendite" | 8 reference files, woocommerce_inspect.mjs | `wp-ecommerce-manager` |
|
|
964
994
|
| `wp-multisite` | "multisite", "sub-site", "network admin", "domain mapping" | 6 reference files, multisite_inspect.mjs | — |
|
|
965
|
-
| `wp-cicd` | "CI/CD", "GitHub Actions", "pipeline", "deploy automatico" |
|
|
966
|
-
| `wp-monitoring` | "monitora", "uptime", "health report", "alerting", "
|
|
995
|
+
| `wp-cicd` | "CI/CD", "GitHub Actions", "pipeline", "deploy automatico" | 7 reference files, cicd_inspect.mjs | `wp-cicd-engineer` |
|
|
996
|
+
| `wp-monitoring` | "monitora", "uptime", "health report", "alerting", "fleet health" | 7 reference files, monitoring_inspect.mjs | `wp-monitoring-agent` |
|
|
997
|
+
| `wp-content-repurposing` | "riproponi contenuto", "social dal blog", "newsletter dai post", "atomizza" | 4 reference files, repurposing_inspect.mjs | `wp-content-strategist` |
|
|
998
|
+
| `wp-webhooks` | "webhook", "notifica esterna", "Zapier", "WooCommerce webhook" | 5 reference files, webhook_inspect.mjs | `wp-site-manager` |
|
|
967
999
|
|
|
968
1000
|
### Script di Rilevamento Automatico
|
|
969
1001
|
|
|
970
|
-
Le skill includono
|
|
1002
|
+
Le skill includono 18 script Node.js (`.mjs`) che eseguono analisi automatica del progetto:
|
|
971
1003
|
|
|
972
1004
|
| Script | Cosa rileva |
|
|
973
1005
|
|--------|-------------|
|
|
@@ -986,7 +1018,9 @@ Le skill includono 16 script Node.js (`.mjs`) che eseguono analisi automatica de
|
|
|
986
1018
|
| `woocommerce_inspect.mjs` | WooCommerce attivo, API keys, prodotti, ordini, gateway (v1.8.0) |
|
|
987
1019
|
| `multisite_inspect.mjs` | Multisite abilitato, sub-sites, network plugins, Super Admin (v1.9.0) |
|
|
988
1020
|
| `cicd_inspect.mjs` | Piattaforme CI, quality tools, wp-env, deploy config (v2.0.0) |
|
|
989
|
-
| `monitoring_inspect.mjs` | Uptime tools, Lighthouse CI, security plugins, logging config (v2.1.0) |
|
|
1021
|
+
| `monitoring_inspect.mjs` | Uptime tools, Lighthouse CI, security plugins, logging config, fleet config (v2.1.0-v2.2.0) |
|
|
1022
|
+
| `repurposing_inspect.mjs` | Social plugins, email plugins, content volume, repurposing readiness (v2.2.0) |
|
|
1023
|
+
| `webhook_inspect.mjs` | WC webhooks, mu-plugin webhooks, webhook plugins, wp-config constants (v2.2.0) |
|
|
990
1024
|
|
|
991
1025
|
### WordPress Playground — Ambienti Disposable
|
|
992
1026
|
|
|
@@ -1021,7 +1055,7 @@ Senza il server MCP, la skill usa conoscenza generale di `@wordpress/components`
|
|
|
1021
1055
|
```
|
|
1022
1056
|
1. cd mio-progetto-wordpress/
|
|
1023
1057
|
2. Claude esegue wp-project-triage → rileva "wp-block-plugin"
|
|
1024
|
-
3. wordpress-router
|
|
1058
|
+
3. wordpress-router v9 → instrada a wp-block-development
|
|
1025
1059
|
4. Claude guida la creazione con block.json, edit.js, save.js
|
|
1026
1060
|
5. wp-e2e-testing + wp-test-engineer → esegue test E2E con Playwright
|
|
1027
1061
|
6. wp-accessibility + wp-accessibility-auditor → verifica WCAG 2.2
|
|
@@ -1099,6 +1133,7 @@ Questi hook chiedono a Claude di valutare se l'operazione e stata esplicitamente
|
|
|
1099
1133
|
| 2 | Disattivazione plugin | `deactivate_plugin` | Conferma prima di disattivare (potrebbe rompere dipendenze) |
|
|
1100
1134
|
| 3 | Import WordPress | `hosting_importWordpressWebsite` | Conferma prima di SOVRASCRIVERE l'installazione esistente |
|
|
1101
1135
|
| 4 | Modifica DNS | `DNS_updateDNSRecordsV1`, `DNS_resetDNSRecordsV1` | Conferma prima di modificare i record DNS |
|
|
1136
|
+
| 5 | Eliminazione webhook WC | `wc_delete_webhook` | Conferma prima di eliminare un webhook (le integrazioni esterne smetteranno di ricevere eventi) |
|
|
1102
1137
|
|
|
1103
1138
|
### Hook Command-Based (Validazione Script)
|
|
1104
1139
|
|
|
@@ -1155,7 +1190,7 @@ MCP (Model Context Protocol) e il protocollo che permette a Claude di comunicare
|
|
|
1155
1190
|
| Sorgente | Custom TypeScript server in `servers/wp-rest-bridge/` |
|
|
1156
1191
|
| Trasporto | stdio (JSON-RPC via stdin/stdout) |
|
|
1157
1192
|
| Autenticazione | `WP_SITES_CONFIG` JSON env var |
|
|
1158
|
-
| Tool disponibili |
|
|
1193
|
+
| Tool disponibili | 85 (41 WordPress + 34 WooCommerce + 10 Multisite) |
|
|
1159
1194
|
|
|
1160
1195
|
**Categorie tool WordPress** (`wp/v2`):
|
|
1161
1196
|
|
|
@@ -1180,6 +1215,7 @@ MCP (Model Context Protocol) e il protocollo che permette a Claude di comunicare
|
|
|
1180
1215
|
| Coupons | 4 | `wc_list_coupons`, `wc_create_coupon`, `wc_delete_coupon` |
|
|
1181
1216
|
| Reports | 5 | `wc_get_sales_report`, `wc_get_top_sellers`, `wc_get_orders_totals` |
|
|
1182
1217
|
| Settings | 4 | `wc_list_payment_gateways`, `wc_list_shipping_zones`, `wc_get_system_status` |
|
|
1218
|
+
| Webhooks | 4 | `wc_list_webhooks`, `wc_create_webhook`, `wc_update_webhook`, `wc_delete_webhook` |
|
|
1183
1219
|
|
|
1184
1220
|
**Categorie tool Multisite** (`ms_` prefix, richiede `is_multisite: true` + SSH/WP-CLI):
|
|
1185
1221
|
|
|
@@ -1467,7 +1503,53 @@ Claude (attiva skill wp-headless):
|
|
|
1467
1503
|
6. Configura webhook per invalidazione cache
|
|
1468
1504
|
```
|
|
1469
1505
|
|
|
1470
|
-
### Scenario 16:
|
|
1506
|
+
### Scenario 16: Fleet Monitoring Cross-Site
|
|
1507
|
+
|
|
1508
|
+
```
|
|
1509
|
+
Tu: "Controlla la salute di tutti i miei siti WordPress"
|
|
1510
|
+
|
|
1511
|
+
Claude (attiva wp-monitoring-agent + skill wp-monitoring, Procedura 7):
|
|
1512
|
+
1. list_sites per enumerare tutti i siti configurati
|
|
1513
|
+
2. Per ogni sito: switch_site, poi uptime + performance + security + content check
|
|
1514
|
+
3. Aggrega i risultati in tabella comparativa fleet
|
|
1515
|
+
4. Identifica pattern cross-site (stessa vulnerabilita su piu siti, regressione simultanea)
|
|
1516
|
+
5. Genera Fleet Health Report con breakdown per sito + summary fleet
|
|
1517
|
+
-> Report: fleet health, anomalie, raccomandazioni prioritizzate
|
|
1518
|
+
```
|
|
1519
|
+
|
|
1520
|
+
### Scenario 17: Content Repurposing Multi-Canale
|
|
1521
|
+
|
|
1522
|
+
```
|
|
1523
|
+
Tu: "Trasforma l'ultimo post del blog in contenuti per social media e newsletter"
|
|
1524
|
+
|
|
1525
|
+
Claude (attiva wp-content-strategist + skill wp-content-repurposing):
|
|
1526
|
+
1. Seleziona post piu recente via list_content
|
|
1527
|
+
2. Estrae elementi chiave: headline, punti principali, quote, statistiche, CTA
|
|
1528
|
+
3. Genera Twitter/X thread (280 char per tweet, hook + 3-5 punti + CTA)
|
|
1529
|
+
4. Genera LinkedIn summary (angolo professionale, 1000 char)
|
|
1530
|
+
5. Genera Instagram carousel (5-7 slide con takeaway visivi)
|
|
1531
|
+
6. Genera newsletter digest (excerpt + CTA, subject line ottimizzata)
|
|
1532
|
+
7. Presenta tutte le varianti per revisione
|
|
1533
|
+
-> Output: 4+ formati pronti per distribuzione
|
|
1534
|
+
```
|
|
1535
|
+
|
|
1536
|
+
### Scenario 18: Webhook WooCommerce per Zapier
|
|
1537
|
+
|
|
1538
|
+
```
|
|
1539
|
+
Tu: "Configura un webhook WooCommerce per notificare Zapier quando arriva un nuovo ordine"
|
|
1540
|
+
|
|
1541
|
+
Claude (attiva skill wp-webhooks):
|
|
1542
|
+
1. Verifica WooCommerce attivo con webhook_inspect.mjs
|
|
1543
|
+
2. Crea webhook con wc_create_webhook:
|
|
1544
|
+
- topic: "order.created"
|
|
1545
|
+
- delivery_url: URL webhook Zapier dell'utente
|
|
1546
|
+
- secret: genera shared secret per HMAC-SHA256
|
|
1547
|
+
3. Verifica webhook attivo con wc_list_webhooks
|
|
1548
|
+
4. Spiega come verificare la signature nel receiver
|
|
1549
|
+
-> Report: webhook configurato, URL delivery, istruzioni test
|
|
1550
|
+
```
|
|
1551
|
+
|
|
1552
|
+
### Scenario 19: WordPress Multisite Network
|
|
1471
1553
|
|
|
1472
1554
|
```
|
|
1473
1555
|
Tu: "Crea un network multisite con 3 sub-site per i nostri brand"
|
|
@@ -1743,8 +1825,14 @@ bash ~/.claude/plugins/local/wordpress-manager/scripts/validate-wp-operation.sh
|
|
|
1743
1825
|
| **Baseline** | Snapshot iniziale delle metriche (CWV, TTFB, plugin count) usato come riferimento per trend analysis |
|
|
1744
1826
|
| **P0-P3** | Livelli di severity per alerting: P0 critico (sito down), P1 alto, P2 medio, P3 informativo |
|
|
1745
1827
|
| **TTFB** | Time To First Byte — tempo tra la richiesta HTTP e il primo byte di risposta dal server |
|
|
1828
|
+
| **Fleet Monitoring** | Monitoraggio simultaneo di tutti i siti WordPress configurati con report comparativo cross-site |
|
|
1829
|
+
| **Content Repurposing** | Trasformazione sistematica di contenuti WordPress in formati multi-canale (social, email, newsletter) |
|
|
1830
|
+
| **Content Atomization** | Scomposizione di contenuti pillar in unita atomiche autonome (quote, statistiche, tip) per distribuzione |
|
|
1831
|
+
| **Webhook** | Notifica HTTP outbound inviata automaticamente da WordPress quando si verifica un evento (es. ordine creato) |
|
|
1832
|
+
| **HMAC-SHA256** | Algoritmo di firma usato per autenticare webhook — il receiver verifica l'integrita del payload |
|
|
1833
|
+
| **mu-plugin** | Must-Use Plugin WordPress — plugin caricato automaticamente senza attivazione, usato per webhook core |
|
|
1746
1834
|
|
|
1747
1835
|
---
|
|
1748
1836
|
|
|
1749
|
-
*Guida v2.
|
|
1837
|
+
*Guida v2.2.0 - WordPress Manager Plugin per Claude Code*
|
|
1750
1838
|
*Ultimo aggiornamento: 2026-02-28*
|