claude-plugin-wordpress-manager 1.7.0 → 1.7.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wordpress-manager",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Unified WordPress management plugin for Claude Code. Orchestrates Hostinger MCP (infrastructure), WP REST API bridge (content), and WordPress.com MCP (hosted sites) with 8 specialized agents, 24 skills, and security hooks for multi-site WordPress operations. Includes local dev environment support for WordPress Studio, LocalWP, and wp-env. Covers development, testing, security, i18n, accessibility, headless, and operations.",
5
5
  "author": {
6
6
  "name": "vinmor",
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to the WordPress Manager plugin for Claude Code.
4
4
 
5
+ ## [1.7.1] - 2026-02-28
6
+
7
+ ### Changed
8
+ - README aggiornato per v1.7.0: tabella 8 agent con colonna "Paired Skill", collaboration patterns, 24 skill, version history
9
+
5
10
  ## [1.7.0] - 2026-02-28
6
11
 
7
12
  ### Added
package/README.md CHANGED
@@ -6,11 +6,11 @@ Unified WordPress management **and** development plugin that orchestrates multip
6
6
 
7
7
  ```
8
8
  wordpress-manager/
9
- ├── .claude-plugin/plugin.json # Plugin manifest (v1.5.0)
9
+ ├── .claude-plugin/plugin.json # Plugin manifest (v1.7.0)
10
10
  ├── .mcp.json # MCP server definitions
11
- ├── agents/ # 5 specialized agents
11
+ ├── agents/ # 8 specialized agents
12
12
  ├── commands/ # 5 slash commands
13
- ├── skills/ # 19 skills (5 operational + 13 development + 1 local env)
13
+ ├── skills/ # 24 skills (5 operational + 18 development + 1 local env)
14
14
  ├── hooks/hooks.json # 6 safety hooks (PreToolUse)
15
15
  └── servers/wp-rest-bridge/ # Custom MCP server (TypeScript)
16
16
  ```
@@ -36,13 +36,20 @@ wordpress-manager/
36
36
 
37
37
  ## Agents
38
38
 
39
- | Agent | Color | Role |
40
- |-------|-------|------|
41
- | `wp-site-manager` | cyan | Central orchestrator for multi-site operations, status monitoring, diagnostics |
42
- | `wp-deployment-engineer` | green | Deploy workflows: file upload, plugin updates, database migrations, DNS |
43
- | `wp-content-strategist` | magenta | Content creation, SEO optimization, taxonomy management, editorial workflow |
44
- | `wp-security-auditor` | red | Security audits: plugin vulnerabilities, user accounts, SSL, hardening |
45
- | `wp-performance-optimizer` | yellow | Performance audits: Core Web Vitals, caching, media optimization, TTFB |
39
+ | Agent | Color | Role | Paired Skill |
40
+ |-------|-------|------|-------------|
41
+ | `wp-site-manager` | cyan | Central orchestrator for multi-site operations, status monitoring, diagnostics | — |
42
+ | `wp-deployment-engineer` | green | Deploy workflows: Hostinger MCP, SSH, local env export, post-deploy verification | `wp-deploy` |
43
+ | `wp-content-strategist` | magenta | Content creation, SEO optimization, taxonomy management, multilingual content | `wp-content` |
44
+ | `wp-security-auditor` | red | Security audits: plugin vulnerabilities, user accounts, SSL, DNS (read-only) | `wp-audit` |
45
+ | `wp-security-hardener` | red | Security hardening and incident response (implements fixes from auditor) | `wp-security` |
46
+ | `wp-performance-optimizer` | yellow | Performance audits: Core Web Vitals, caching, media optimization, TTFB | `wp-performance` |
47
+ | `wp-test-engineer` | blue | Test execution: Playwright E2E, Jest unit, PHPUnit, debug failures, CI setup | `wp-e2e-testing` |
48
+ | `wp-accessibility-auditor` | purple | WCAG 2.2 AA compliance audits: axe-core, pa11y, Lighthouse, code review (read-only) | `wp-accessibility` |
49
+
50
+ **Agent collaboration patterns:**
51
+ - **Audit → Fix**: `wp-security-auditor` (finds issues) → `wp-security-hardener` (implements fixes)
52
+ - **Delegation**: `wp-site-manager` delegates to specialized agents via its Specialized Agents table
46
53
 
47
54
  ## Commands
48
55
 
@@ -72,13 +79,13 @@ wordpress-manager/
72
79
  |-------|---------|----------------|
73
80
  | `wp-local-env` | Unified local env management: Studio, LocalWP, wp-env detection, lifecycle, WP-CLI, symlinks, DB ops | studio-adapter.md, localwp-adapter.md, wpenv-adapter.md, mcp-adapter-setup.md |
74
81
 
75
- ### Development Skills (13) — building WordPress projects
82
+ ### Development Skills (18) — building WordPress projects
76
83
 
77
- Integrated from [WordPress/agent-skills](https://github.com/WordPress/agent-skills) (GPL-2.0-or-later).
84
+ 13 core skills integrated from [WordPress/agent-skills](https://github.com/WordPress/agent-skills) (GPL-2.0-or-later), plus 5 extended skills (testing, security, i18n, accessibility, headless).
78
85
 
79
86
  | Skill | Purpose | Key References |
80
87
  |-------|---------|----------------|
81
- | `wordpress-router` | Unified router v3: classifies tasks (dev vs local env vs ops) and routes to correct skill/agent | decision-tree.md |
88
+ | `wordpress-router` | Unified router v4: classifies tasks (dev vs local env vs ops) and routes to correct skill/agent | decision-tree.md |
82
89
  | `wp-project-triage` | Auto-detects project type (plugin, theme, block theme, core) | detect_wp_project.mjs, triage.schema.json |
83
90
  | `wp-block-development` | Gutenberg block creation: block.json, attributes, save, edit | 10 references, list_blocks.mjs |
84
91
  | `wp-block-themes` | Block theme development: theme.json, templates, patterns | 6 references, detect_block_themes.mjs |
@@ -91,6 +98,11 @@ Integrated from [WordPress/agent-skills](https://github.com/WordPress/agent-skil
91
98
  | `wp-performance` | Backend profiling: WP-CLI profile/doctor, query optimization | 10 references, perf_inspect.mjs |
92
99
  | `wp-playground` | WordPress Playground: disposable instances, blueprints, snapshots | 3 references |
93
100
  | `wpds` | WordPress Design System: @wordpress/components, tokens, patterns | Requires WPDS MCP server |
101
+ | `wp-e2e-testing` | Testing strategy: Playwright E2E, Jest, PHPUnit, visual regression, CI | 7 references, test_inspect.mjs |
102
+ | `wp-security` | Security hardening: filesystem, headers, auth, API restriction, incident response | 7 references, security_inspect.mjs |
103
+ | `wp-i18n` | Internationalization: PHP/JS gettext, .pot/.po/.mo workflow, RTL, WPML/Polylang | 6 references, i18n_inspect.mjs |
104
+ | `wp-accessibility` | WCAG 2.2 compliance: block a11y, theme a11y, interactive patterns, testing | 6 references |
105
+ | `wp-headless` | Headless/decoupled: REST vs WPGraphQL, JWT auth, CORS, Next.js/Nuxt/Astro | 6 references, headless_inspect.mjs |
94
106
 
95
107
  ## Safety Hooks
96
108
 
@@ -213,6 +225,8 @@ npx tsc # Compile TypeScript to build/
213
225
  | 1.3.0 | Phase 4 | E2E testing, utility scripts, command hooks, WordPress.com dual-mode support |
214
226
  | 1.4.0 | Phase 5 | +13 development skills from WordPress/agent-skills community repo (blocks, themes, plugins, REST API, Interactivity API, Abilities API, WP-CLI, PHPStan, Performance, Playground, WPDS, Router, Triage) |
215
227
  | 1.5.0 | Phase 6 | +1 local environment skill (`wp-local-env`): WordPress Studio, LocalWP, wp-env detection, unified management, router v3 |
228
+ | 1.6.0 | Phase 7 | +5 development skills (testing, security, i18n, accessibility, headless), router v4, cross-references |
229
+ | 1.7.0 | Phase 8 | +3 agents (test-engineer, security-hardener, accessibility-auditor), 5 agent upgrades, bidirectional cross-refs, audit→fix handoff chain |
216
230
 
217
231
  ## License
218
232
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-plugin-wordpress-manager",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Unified WordPress management and development plugin for Claude Code. Orchestrates Hostinger MCP, WP REST API bridge, and WordPress.com MCP with 24 skills, 8 agents, and security hooks. Includes local dev environment support for WordPress Studio, LocalWP, and wp-env. v1.7.0 adds 3 new agents (testing, security hardening, accessibility) and upgrades 5 existing agents.",
5
5
  "author": {
6
6
  "name": "vinmor",