claude-plugin-wordpress-manager 2.9.0 → 2.9.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/docs/GUIDE.md +145 -14
- package/package.json +1 -1
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.9.0
|
|
4
4
|
**Ultimo aggiornamento:** 2026-03-01
|
|
5
5
|
**Repository:** https://github.com/morrealev/wordpress-manager
|
|
6
6
|
|
|
@@ -66,6 +66,9 @@ WordPress Manager e un plugin per **Claude Code** (la CLI ufficiale di Anthropic
|
|
|
66
66
|
- **Distribuzione social/email**: distribuire contenuti su Mailchimp, Buffer e SendGrid con workflow multi-canale
|
|
67
67
|
- **Google Search Console**: monitorare keyword, indicizzazione, performance pagine e feedback SEO da GSC
|
|
68
68
|
- **Ottimizzazione contenuti AI**: headline scoring, readability analysis, SEO scoring, meta optimization, content freshness e bulk triage
|
|
69
|
+
- **Analytics unificata**: GA4, Plausible e Core Web Vitals in un unico punto di accesso, con dashboard, trend e confronto pagine
|
|
70
|
+
- **Smart alerting**: routing alerting basato su severity (info→Slack webhook, warning→Slack Bot con thread, critical→Slack + email) via Slack e SendGrid
|
|
71
|
+
- **Workflow automatizzati**: trigger basati su schedule (cron), hook WordPress e lifecycle contenuti con azioni multi-canale (Slack, email, webhook)
|
|
69
72
|
|
|
70
73
|
### Requisiti
|
|
71
74
|
|
|
@@ -102,7 +105,7 @@ WordPress Manager e un plugin per **Claude Code** (la CLI ufficiale di Anthropic
|
|
|
102
105
|
### Componenti del Plugin
|
|
103
106
|
|
|
104
107
|
```
|
|
105
|
-
wordpress-manager/ # v2.
|
|
108
|
+
wordpress-manager/ # v2.9.0
|
|
106
109
|
+-- .claude-plugin/plugin.json # Manifest
|
|
107
110
|
+-- .mcp.json # Server MCP bundled
|
|
108
111
|
+-- LICENSE # MIT + GPL-2.0-or-later
|
|
@@ -122,7 +125,7 @@ wordpress-manager/ # v2.6.0
|
|
|
122
125
|
| +-- wp-distribution-manager.md # Multi-channel distribution (v2.4.0)
|
|
123
126
|
+-- commands/ # 5 slash commands
|
|
124
127
|
| +-- wp-status.md / wp-deploy.md / wp-audit.md / wp-backup.md / wp-setup.md
|
|
125
|
-
+-- skills/ #
|
|
128
|
+
+-- skills/ # 39 skill totali
|
|
126
129
|
| +-- [OPERATIVE - 5 skill]
|
|
127
130
|
| +-- wp-deploy/ # Procedure deploy
|
|
128
131
|
| +-- wp-audit/ # Checklist audit
|
|
@@ -132,7 +135,7 @@ wordpress-manager/ # v2.6.0
|
|
|
132
135
|
| +-- [AMBIENTE LOCALE - 1 skill]
|
|
133
136
|
| +-- wp-local-env/ # Studio/LocalWP/wp-env
|
|
134
137
|
| +-- [SVILUPPO - 13 skill da WordPress/agent-skills]
|
|
135
|
-
| +-- wordpress-router/ # Router unificato
|
|
138
|
+
| +-- wordpress-router/ # Router unificato v16 (dev + local + ops + multisite + cicd + monitoring + webhooks + repurposing + pseo + attribution + multilang + distribution + gsc + content-optimization + analytics + alerting + workflows)
|
|
136
139
|
| +-- wp-project-triage/ # Auto-detect tipo progetto
|
|
137
140
|
| +-- wp-block-development/ # Blocchi Gutenberg
|
|
138
141
|
| +-- wp-block-themes/ # Temi a blocchi
|
|
@@ -166,8 +169,12 @@ wordpress-manager/ # v2.6.0
|
|
|
166
169
|
| +-- wp-social-email/ # Distribuzione social/email multi-canale (v2.4.0)
|
|
167
170
|
| +-- wp-search-console/ # Google Search Console integration (v2.5.0)
|
|
168
171
|
| +-- wp-content-optimization/ # AI content optimization e bulk triage (v2.6.0)
|
|
169
|
-
+--
|
|
170
|
-
| +--
|
|
172
|
+
| +-- [ANALYTICS + ALERTING + AUTOMAZIONE - 3 skill]
|
|
173
|
+
| +-- wp-analytics/ # GA4, Plausible, Core Web Vitals unificati (v2.7.0)
|
|
174
|
+
| +-- wp-alerting/ # Smart alerting severity-based via Slack/SendGrid (v2.8.0)
|
|
175
|
+
| +-- wp-content-workflows/ # Workflow triggers (schedule, lifecycle, hooks) con azioni multi-canale (v2.9.0)
|
|
176
|
+
+-- hooks/ # 10 hook di sicurezza
|
|
177
|
+
| +-- hooks.json # 8 prompt + 2 command
|
|
171
178
|
| +-- scripts/ # Script per hook command-type
|
|
172
179
|
+-- scripts/ # Utility
|
|
173
180
|
+-- servers/wp-rest-bridge/ # MCP Server custom (TypeScript)
|
|
@@ -358,6 +365,9 @@ WordPress Manager comprende richieste in linguaggio naturale. Ecco come formular
|
|
|
358
365
|
| Distribuzione social/email | "Distribuisci il post" / "Mailchimp campaign" / "Buffer schedule" / "SendGrid email" |
|
|
359
366
|
| Google Search Console | "Keyword tracking" / "Search analytics" / "Indicizzazione" / "GSC performance" |
|
|
360
367
|
| Ottimizzazione contenuti | "Ottimizza titoli" / "Headline score" / "Readability" / "Content triage" / "Quick wins" |
|
|
368
|
+
| Analytics unificata | "GA4 report" / "Plausible stats" / "Core Web Vitals" / "Traffic sources" / "Page performance" |
|
|
369
|
+
| Smart alerting | "Configura alert Slack" / "Notifica critiche" / "Severity routing" / "Alert su Slack" |
|
|
370
|
+
| Workflow automatizzati | "Crea trigger" / "Workflow cron" / "Automatizza notifiche" / "Content lifecycle trigger" |
|
|
361
371
|
|
|
362
372
|
---
|
|
363
373
|
|
|
@@ -815,7 +825,7 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
815
825
|
| Ruolo | Monitoring continuo del sito (read-only, non modifica nulla) |
|
|
816
826
|
| Attivazione | "Monitora il sito", "health report", "uptime check", "performance trend", "security scan periodico", "fleet health", "monitora tutti i siti" |
|
|
817
827
|
|
|
818
|
-
**
|
|
828
|
+
**8 aree di monitoraggio + fleet**:
|
|
819
829
|
|
|
820
830
|
| Area | Cosa monitora |
|
|
821
831
|
|------|--------------|
|
|
@@ -825,6 +835,9 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
825
835
|
| Content | Modifiche non autorizzate, broken links, spam comments, media integrity |
|
|
826
836
|
| Alerting | Threshold P0-P3, notifiche email/Slack/webhook, escalation |
|
|
827
837
|
| Fleet (v2.2.0) | Cross-site health comparison, fleet-wide patterns, per-site breakdown |
|
|
838
|
+
| Analytics (v2.7.0) | GA4 report, Plausible stats, traffic sources, user demographics, conversion events |
|
|
839
|
+
| CWV Trend (v2.7.0) | Core Web Vitals trend analysis, field data, page comparison |
|
|
840
|
+
| Alert Dispatch (v2.8.0) | Severity-based routing: info→Slack webhook, warning→Slack Bot + thread, critical→Slack + email |
|
|
828
841
|
|
|
829
842
|
**Report disponibili**: Daily Health Summary, Weekly Performance, Monthly Security, Quarterly Trend, Executive Dashboard, Fleet Health Report (v2.2.0).
|
|
830
843
|
|
|
@@ -838,7 +851,7 @@ Complementa `wp-security-auditor`: l'auditor **trova** i problemi, l'hardener **
|
|
|
838
851
|
|
|
839
852
|
**Detection**: `monitoring_inspect.mjs` rileva setup monitoring esistente (uptime tools, Lighthouse CI, security plugins, logging config).
|
|
840
853
|
|
|
841
|
-
**Skill correlata**: `wp-monitoring`
|
|
854
|
+
**Skill correlata**: `wp-monitoring`, `wp-analytics`, `wp-alerting`
|
|
842
855
|
|
|
843
856
|
---
|
|
844
857
|
|
|
@@ -934,10 +947,11 @@ Le skill di sviluppo provengono da due fonti:
|
|
|
934
947
|
- **6 skill e-commerce + infrastruttura** (MIT) aggiunte in v1.8.0-v2.2.0: WooCommerce, Multisite, CI/CD, Monitoring, Content Repurposing, Webhooks.
|
|
935
948
|
- **3 skill strategia + SEO internazionale** (MIT) aggiunte in v2.3.0: Programmatic SEO, Content-Commerce Attribution, Multi-Language Network.
|
|
936
949
|
- **3 skill distribuzione + SEO avanzato** (MIT) aggiunte in v2.4.0-v2.6.0: Social/Email Distribution, Google Search Console, AI Content Optimization.
|
|
950
|
+
- **3 skill analytics + alerting + automazione** (MIT) aggiunte in v2.7.0-v2.9.0: Analytics (GA4/Plausible/CWV), Smart Alerting (Slack/SendGrid severity routing), Automated Workflows (triggers + multi-channel actions).
|
|
937
951
|
|
|
938
952
|
### Il Router Unificato
|
|
939
953
|
|
|
940
|
-
La skill `wordpress-router` (
|
|
954
|
+
La skill `wordpress-router` (v16) e il punto d'ingresso per tutti i task WordPress. Classifica automaticamente il task in **diciassette categorie**: sviluppo, ambiente locale, operativo, multisite, CI/CD, monitoring, content repurposing, webhook, programmatic SEO, content attribution, multi-language network, social/email distribution, search console, content optimization, analytics, alerting, content workflows.
|
|
941
955
|
|
|
942
956
|
```
|
|
943
957
|
Utente: "Crea un blocco custom per la gallery"
|
|
@@ -1061,6 +1075,30 @@ wordpress-router: TASK = operativo (content optimization)
|
|
|
1061
1075
|
wp-content-optimization skill + wp-content-strategist agent
|
|
1062
1076
|
```
|
|
1063
1077
|
|
|
1078
|
+
```
|
|
1079
|
+
Utente: "Mostrami il report GA4 e le Core Web Vitals del mio sito"
|
|
1080
|
+
|
|
|
1081
|
+
wordpress-router: TASK = operativo (analytics)
|
|
1082
|
+
|
|
|
1083
|
+
wp-analytics skill + wp-monitoring-agent agent
|
|
1084
|
+
```
|
|
1085
|
+
|
|
1086
|
+
```
|
|
1087
|
+
Utente: "Configura un alert Slack quando il sito va giu"
|
|
1088
|
+
|
|
|
1089
|
+
wordpress-router: TASK = operativo (alerting)
|
|
1090
|
+
|
|
|
1091
|
+
wp-alerting skill + wp-monitoring-agent agent
|
|
1092
|
+
```
|
|
1093
|
+
|
|
1094
|
+
```
|
|
1095
|
+
Utente: "Crea un trigger che invia su Slack quando un post viene pubblicato"
|
|
1096
|
+
|
|
|
1097
|
+
wordpress-router: TASK = operativo (content workflows)
|
|
1098
|
+
|
|
|
1099
|
+
wp-content-workflows skill + wp-site-manager agent
|
|
1100
|
+
```
|
|
1101
|
+
|
|
1064
1102
|
### Panoramica Skills di Sviluppo — Community (13)
|
|
1065
1103
|
|
|
1066
1104
|
| Skill | Si attiva quando... | Risorse |
|
|
@@ -1126,9 +1164,19 @@ Aggiunte in v2.4.0-v2.6.0, queste skill coprono distribuzione multi-canale, Goog
|
|
|
1126
1164
|
| `wp-search-console` | "Search Console", "keyword tracking", "indicizzazione", "GSC", "search analytics" | 5 reference files, search_console_inspect.mjs | `wp-content-strategist` |
|
|
1127
1165
|
| `wp-content-optimization` | "ottimizza titoli", "readability", "headline score", "content triage", "meta optimization" | 5 reference files, content_optimization_inspect.mjs | `wp-content-strategist` |
|
|
1128
1166
|
|
|
1167
|
+
### Panoramica Skills Analytics + Alerting + Automazione (3)
|
|
1168
|
+
|
|
1169
|
+
Aggiunte in v2.7.0-v2.9.0, queste skill completano il WCOP (WordPress Content Operations Pipeline) portando il punteggio da 8/10 a 8.8/10.
|
|
1170
|
+
|
|
1171
|
+
| Skill | Si attiva quando... | Risorse | Agent dedicato |
|
|
1172
|
+
|-------|---------------------|---------|----------------|
|
|
1173
|
+
| `wp-analytics` | "GA4 report", "Plausible stats", "Core Web Vitals", "traffic sources", "page performance", "conversion events" | 5 reference files, analytics_inspect.mjs | `wp-monitoring-agent` |
|
|
1174
|
+
| `wp-alerting` | "alert Slack", "notifica critiche", "severity routing", "escalation", "alert email" | 4 reference files, alerting_inspect.mjs | `wp-monitoring-agent` |
|
|
1175
|
+
| `wp-content-workflows` | "crea trigger", "workflow cron", "content lifecycle", "automatizza notifiche", "trigger schedule" | 5 reference files, workflow_inspect.mjs | `wp-site-manager` |
|
|
1176
|
+
|
|
1129
1177
|
### Script di Rilevamento Automatico
|
|
1130
1178
|
|
|
1131
|
-
Le skill includono
|
|
1179
|
+
Le skill includono 27 script Node.js (`.mjs`) che eseguono analisi automatica del progetto:
|
|
1132
1180
|
|
|
1133
1181
|
| Script | Cosa rileva |
|
|
1134
1182
|
|--------|-------------|
|
|
@@ -1156,6 +1204,9 @@ Le skill includono 24 script Node.js (`.mjs`) che eseguono analisi automatica de
|
|
|
1156
1204
|
| `distribution_inspect.mjs` | Mailchimp, Buffer, SendGrid config, API keys, servizi attivi (v2.4.0) |
|
|
1157
1205
|
| `search_console_inspect.mjs` | GSC service account, siti verificati, sitemap, keyword data (v2.5.0) |
|
|
1158
1206
|
| `content_optimization_inspect.mjs` | Content volume, titoli, meta description, readability readiness (v2.6.0) |
|
|
1207
|
+
| `analytics_inspect.mjs` | GA4 property ID, Plausible config, Google API key, analytics setup (v2.7.0) |
|
|
1208
|
+
| `alerting_inspect.mjs` | Slack webhook/bot token, SendGrid config, monitoring setup, alert readiness (v2.8.0) |
|
|
1209
|
+
| `workflow_inspect.mjs` | Action channel config, automation plugins, custom REST endpoints, WP-Cron, webhook config (v2.9.0) |
|
|
1159
1210
|
|
|
1160
1211
|
### WordPress Playground — Ambienti Disposable
|
|
1161
1212
|
|
|
@@ -1190,7 +1241,7 @@ Senza il server MCP, la skill usa conoscenza generale di `@wordpress/components`
|
|
|
1190
1241
|
```
|
|
1191
1242
|
1. cd mio-progetto-wordpress/
|
|
1192
1243
|
2. Claude esegue wp-project-triage → rileva "wp-block-plugin"
|
|
1193
|
-
3. wordpress-router
|
|
1244
|
+
3. wordpress-router v16 → instrada a wp-block-development
|
|
1194
1245
|
4. Claude guida la creazione con block.json, edit.js, save.js
|
|
1195
1246
|
5. wp-e2e-testing + wp-test-engineer → esegue test E2E con Playwright
|
|
1196
1247
|
6. wp-accessibility + wp-accessibility-auditor → verifica WCAG 2.2
|
|
@@ -1271,6 +1322,7 @@ Questi hook chiedono a Claude di valutare se l'operazione e stata esplicitamente
|
|
|
1271
1322
|
| 5 | Eliminazione webhook WC | `wc_delete_webhook` | Conferma prima di eliminare un webhook (le integrazioni esterne smetteranno di ricevere eventi) |
|
|
1272
1323
|
| 6 | Invio campagna Mailchimp | `mc_send_campaign` | Conferma prima di inviare una campagna email (azione irreversibile verso tutti i destinatari) |
|
|
1273
1324
|
| 7 | Invio email SendGrid | `sg_send_email` | Conferma prima di inviare email transazionali (azione irreversibile) |
|
|
1325
|
+
| 8 | Eliminazione workflow trigger | `wf_delete_trigger` | Conferma prima di eliminare un trigger di automazione (ferma tutte le notifiche e azioni associate) |
|
|
1274
1326
|
|
|
1275
1327
|
### Hook Command-Based (Validazione Script)
|
|
1276
1328
|
|
|
@@ -1327,7 +1379,7 @@ MCP (Model Context Protocol) e il protocollo che permette a Claude di comunicare
|
|
|
1327
1379
|
| Sorgente | Custom TypeScript server in `servers/wp-rest-bridge/` |
|
|
1328
1380
|
| Trasporto | stdio (JSON-RPC via stdin/stdout) |
|
|
1329
1381
|
| Autenticazione | `WP_SITES_CONFIG` JSON env var |
|
|
1330
|
-
| Tool disponibili |
|
|
1382
|
+
| Tool disponibili | 132 (41 WordPress + 34 WooCommerce + 10 Multisite + 18 Distribution + 8 GSC + 14 Analytics + 3 Alerting + 4 Workflows) |
|
|
1331
1383
|
|
|
1332
1384
|
**Categorie tool WordPress** (`wp/v2`):
|
|
1333
1385
|
|
|
@@ -1379,6 +1431,26 @@ MCP (Model Context Protocol) e il protocollo che permette a Claude di comunicare
|
|
|
1379
1431
|
| Search Analytics | 3 | `gsc_search_analytics`, `gsc_top_queries`, `gsc_page_performance` |
|
|
1380
1432
|
| Sitemaps | 3 | `gsc_list_sitemaps`, `gsc_submit_sitemap`, `gsc_delete_sitemap` |
|
|
1381
1433
|
|
|
1434
|
+
**Categorie tool Analytics** (richiede GA4 Property ID, Plausible API key, o Google API key):
|
|
1435
|
+
|
|
1436
|
+
| Categoria | Tool | Esempio |
|
|
1437
|
+
|-----------|------|---------|
|
|
1438
|
+
| GA4 | 6 | `ga4_run_report`, `ga4_get_realtime`, `ga4_top_pages`, `ga4_traffic_sources`, `ga4_user_demographics`, `ga4_conversion_events` |
|
|
1439
|
+
| Plausible | 4 | `pl_get_stats`, `pl_get_timeseries`, `pl_get_breakdown`, `pl_get_realtime` |
|
|
1440
|
+
| Core Web Vitals | 4 | `cwv_analyze_url`, `cwv_batch_analyze`, `cwv_get_field_data`, `cwv_compare_pages` |
|
|
1441
|
+
|
|
1442
|
+
**Categorie tool Alerting** (richiede Slack webhook URL o Bot Token):
|
|
1443
|
+
|
|
1444
|
+
| Categoria | Tool | Esempio |
|
|
1445
|
+
|-----------|------|---------|
|
|
1446
|
+
| Slack | 3 | `slack_send_alert` (webhook), `slack_send_message` (Bot Token + Block Kit), `slack_list_channels` |
|
|
1447
|
+
|
|
1448
|
+
**Categorie tool Workflows** (namespace `wp-manager/v1/workflows`):
|
|
1449
|
+
|
|
1450
|
+
| Categoria | Tool | Esempio |
|
|
1451
|
+
|-----------|------|---------|
|
|
1452
|
+
| Trigger Management | 4 | `wf_list_triggers`, `wf_create_trigger`, `wf_update_trigger`, `wf_delete_trigger` |
|
|
1453
|
+
|
|
1382
1454
|
**Architettura multi-sito**: Il server mantiene una `Map<siteId, AxiosInstance>` dove ogni sito ha la propria istanza HTTP autenticata. Il cambio sito e istantaneo.
|
|
1383
1455
|
|
|
1384
1456
|
#### WordPress.com MCP
|
|
@@ -1814,6 +1886,54 @@ Claude (attiva wp-content-strategist + skill wp-content-optimization):
|
|
|
1814
1886
|
-> Report: matrice triage, top 10 titoli da migliorare, 5 contenuti obsoleti, azioni immediate
|
|
1815
1887
|
```
|
|
1816
1888
|
|
|
1889
|
+
### Scenario 26: Analytics Unificata con GA4 e Plausible
|
|
1890
|
+
|
|
1891
|
+
```
|
|
1892
|
+
Tu: "Mostrami il report GA4, le top pages e le Core Web Vitals del mio sito"
|
|
1893
|
+
|
|
1894
|
+
Claude (attiva wp-monitoring-agent + skill wp-analytics):
|
|
1895
|
+
1. Detection con analytics_inspect.mjs (GA4 configurato? Plausible? Google API key?)
|
|
1896
|
+
2. GA4 report: ga4_run_report per sessioni, pageviews, bounce rate ultimi 28 giorni
|
|
1897
|
+
3. Top pages: ga4_top_pages con traffic sources breakdown
|
|
1898
|
+
4. Traffic sources: ga4_traffic_sources per organic vs direct vs referral vs social
|
|
1899
|
+
5. Core Web Vitals: cwv_analyze_url per homepage + landing pages principali
|
|
1900
|
+
6. CWV field data: cwv_get_field_data per dati reali degli utenti
|
|
1901
|
+
7. Confronto pagine: cwv_compare_pages per identificare pagine lente
|
|
1902
|
+
-> Report: dashboard analytics unificata, CWV score per pagina, raccomandazioni
|
|
1903
|
+
```
|
|
1904
|
+
|
|
1905
|
+
### Scenario 27: Smart Alerting con Slack
|
|
1906
|
+
|
|
1907
|
+
```
|
|
1908
|
+
Tu: "Configura alert Slack per quando il sito ha problemi critici"
|
|
1909
|
+
|
|
1910
|
+
Claude (attiva wp-monitoring-agent + skill wp-alerting):
|
|
1911
|
+
1. Detection con alerting_inspect.mjs (Slack webhook? Bot token? SendGrid?)
|
|
1912
|
+
2. Configura severity routing:
|
|
1913
|
+
- P3 (info): slack_send_alert via webhook (canale #wp-info)
|
|
1914
|
+
- P2 (warning): slack_send_message via Bot Token con thread per dettagli
|
|
1915
|
+
- P1/P0 (critical): Slack message + email via SendGrid ai responsabili
|
|
1916
|
+
3. Imposta threshold per metriche chiave (response time > 3s, SSL < 14 giorni, errori 5xx)
|
|
1917
|
+
4. Test alert: invia messaggio di test su canale Slack
|
|
1918
|
+
-> Report: severity routing configurato, threshold impostati, test completato
|
|
1919
|
+
```
|
|
1920
|
+
|
|
1921
|
+
### Scenario 28: Workflow Automatizzato per Content Lifecycle
|
|
1922
|
+
|
|
1923
|
+
```
|
|
1924
|
+
Tu: "Crea un workflow che notifica su Slack quando un post viene pubblicato e invia un'email di recap settimanale"
|
|
1925
|
+
|
|
1926
|
+
Claude (attiva wp-site-manager + skill wp-content-workflows):
|
|
1927
|
+
1. Detection con workflow_inspect.mjs (action channels, automation plugins, WP-Cron)
|
|
1928
|
+
2. Crea trigger "hook": wf_create_trigger con hook "transition_post_status" (publish)
|
|
1929
|
+
- Azione: Slack notification con titolo, autore, link del post
|
|
1930
|
+
3. Crea trigger "schedule": wf_create_trigger con cron "0 9 * * 1" (lunedi ore 9)
|
|
1931
|
+
- Azione: email recap settimanale con post pubblicati nell'ultima settimana
|
|
1932
|
+
4. Verifica trigger attivi: wf_list_triggers
|
|
1933
|
+
5. Test trigger manuale per verificare funzionamento
|
|
1934
|
+
-> Report: 2 trigger configurati, Slack + email, prossima esecuzione cron
|
|
1935
|
+
```
|
|
1936
|
+
|
|
1817
1937
|
---
|
|
1818
1938
|
|
|
1819
1939
|
## 14. Amministrazione Avanzata
|
|
@@ -2097,7 +2217,7 @@ bash ~/.claude/plugins/local/wordpress-manager/scripts/validate-wp-operation.sh
|
|
|
2097
2217
|
| **x-default** | Valore hreflang speciale che indica la pagina fallback per utenti senza match di lingua |
|
|
2098
2218
|
| **Content Sync** | Sincronizzazione di contenuti tra sub-site di lingua diversa in un network multilingua |
|
|
2099
2219
|
| **MultilingualPress** | Plugin WordPress nativo per multisite multilingua — connessioni tra contenuti cross-site |
|
|
2100
|
-
| **WCOP** | WordPress Content
|
|
2220
|
+
| **WCOP** | WordPress Content Operations Pipeline — framework a 5 layer per la gestione completa dei contenuti WordPress (Content Factory, Quality Assurance, Distribution, Observability, Automation). Score attuale: 8.8/10 |
|
|
2101
2221
|
| **CTR (Click-Through Rate)** | Rapporto percentuale tra impressioni e click — metrica chiave in Google Search Console e email marketing |
|
|
2102
2222
|
| **Flesch-Kincaid** | Formula di leggibilita che stima il livello scolastico necessario per comprendere un testo — usata nell'AI content optimization |
|
|
2103
2223
|
| **Content Triage** | Classificazione rapida di tutti i contenuti in categorie di azione: Quick Wins, Maintain, Deep Review, Outdated |
|
|
@@ -2107,8 +2227,19 @@ bash ~/.claude/plugins/local/wordpress-manager/scripts/validate-wp-operation.sh
|
|
|
2107
2227
|
| **Buffer** | Piattaforma di social media scheduling — integrata via API con 5 tool MCP (prefix `buf_*`) |
|
|
2108
2228
|
| **SendGrid** | Servizio di email transazionale e marketing — integrato via API con 6 tool MCP (prefix `sg_*`) |
|
|
2109
2229
|
| **GSC (Google Search Console)** | Strumento Google per monitorare presence del sito nei risultati di ricerca — integrato con 8 tool MCP (prefix `gsc_*`) |
|
|
2230
|
+
| **GA4 (Google Analytics 4)** | Piattaforma di analytics web di Google — integrata via API con 6 tool MCP (prefix `ga4_*`) per report, realtime, traffic sources e conversioni |
|
|
2231
|
+
| **Plausible Analytics** | Alternativa privacy-first a Google Analytics — integrata via API con 4 tool MCP (prefix `pl_*`) per stats, timeseries e breakdown |
|
|
2232
|
+
| **CWV (Core Web Vitals)** | Metriche Google (LCP, INP, CLS) per UX — 4 tool MCP (prefix `cwv_*`) per analisi URL, batch, field data e confronto pagine |
|
|
2233
|
+
| **Slack Webhook** | URL di callback per inviare messaggi a un canale Slack — usato per alert di severity info (P3) |
|
|
2234
|
+
| **Slack Bot Token** | Token di autenticazione per Slack Bot API — permette messaggi formattati con Block Kit, thread e interazioni avanzate |
|
|
2235
|
+
| **Severity Routing** | Pattern di alerting dove il livello di gravita (P0-P3) determina il canale di notifica (webhook, bot, email) |
|
|
2236
|
+
| **Workflow Trigger** | Regola di automazione che esegue azioni (Slack, email, webhook) in risposta a eventi (schedule, hook WordPress, lifecycle contenuto) |
|
|
2237
|
+
| **WP-Cron** | Sistema di scheduling di WordPress — usato per trigger workflow basati su cron expression (es. "ogni lunedi alle 9") |
|
|
2238
|
+
| **Content Lifecycle Hook** | Hook WordPress legato al ciclo di vita dei contenuti (publish, update, trash) — usato come trigger per workflow automatizzati |
|
|
2239
|
+
| **WCOP Score** | WordPress Content Operations Pipeline — score 0-10 su 5 layer: Content Factory, Quality Assurance, Distribution, Observability, Automation |
|
|
2110
2240
|
|
|
2111
2241
|
---
|
|
2112
2242
|
|
|
2113
|
-
*Guida v2.
|
|
2243
|
+
*Guida v2.9.0 — WordPress Manager Plugin per Claude Code*
|
|
2114
2244
|
*Ultimo aggiornamento: 2026-03-01*
|
|
2245
|
+
*WCOP Score: 8.8/10 (Tier 4+5 complete)*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-plugin-wordpress-manager",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "Unified WordPress management and development plugin for Claude Code. Orchestrates Hostinger MCP, WP REST API bridge (132 tools incl. 30 WooCommerce + 10 Multisite + 4 Webhooks + 7 Mailchimp + 5 Buffer + 6 SendGrid + 8 GSC + 6 GA4 + 4 Plausible + 4 CWV + 3 Slack + 4 Workflows), and WordPress.com MCP with 39 skills, 12 agents, and security hooks. v2.9.0 adds automated workflows (triggers, cron, content lifecycle). WCOP Tier 4+5 complete.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "vinmor",
|